programmingfonts/index.css

169 lines
2.6 KiB
CSS
Raw Normal View History

2017-01-20 17:59:59 +01:00
html {
height: 100%;
min-height: 100%;
2017-02-08 23:30:59 +01:00
background: #f5f0e6;
2017-01-20 17:59:59 +01:00
}
body {
color: #fff;
background: #222;
font-family: "Input Mono", sans-serif;
font-size: 12px;
2017-01-20 17:59:59 +01:00
line-height: 1.6;
height: 100%;
min-height: 100%;
font-weight: 300;
}
h1 {
text-align: center;
font-weight: 700;
font-size: 1.618em;
2017-01-20 17:59:59 +01:00
margin: 0;
2017-01-20 20:31:15 +01:00
padding: .25em 0 0 0;
2017-01-20 17:59:59 +01:00
}
p {
padding: 0 0 .5em 0;
}
article {
float: left;
margin: 1em;
border-radius: 1ex;
border: 1px solid rgba(0,0,0,.2);
min-height: calc(100% - 3em);
2017-07-28 21:27:31 +02:00
width: 34em;
background: rgba(255,255,255,.05);
display: flex;
flex-direction: column;
}
section {
flex: 1;
padding: 0.5em 1em;
2017-07-28 21:27:31 +02:00
border-bottom: 1px solid rgba(0,0,0,.05);
}
section.config {
border-top: 1px solid rgba(255,255,255,.05);
flex: 0;
padding: 0.5em 1em;
display: flex;
flex-direction: row;
}
section.config > * {
flex: 1;
text-align: center;
padding: 0;
2017-01-20 17:59:59 +01:00
}
footer {
flex: 0;
padding: 0.5em 1em 1em 1em;
text-align: center;
2017-01-20 17:59:59 +01:00
font-size: .8em;
border-top: 1px solid rgba(255,255,255,.05);
2017-07-28 21:27:31 +02:00
opacity: .6;
2017-01-20 17:59:59 +01:00
}
#font-info p {
display: none;
line-height: 1;
padding: 0 0 2em 0;
}
a,
a:link,
a:visited {
color: inherit;
}
a:hover,
a:active {
opacity: 1;
}
label {
margin-right: .5ex;
2017-07-28 21:27:31 +02:00
font-style: italic;
opacity: .6;
}
2017-01-20 17:59:59 +01:00
select {
all: unset;
width: 9em;
padding: 0 .5ex;
2017-07-28 21:27:31 +02:00
border: 1px solid transparent;
2017-01-20 17:59:59 +01:00
border-radius: 3px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
}
select option {
background: #fff;
color: #000;
}
2017-07-28 21:27:31 +02:00
input[type="number"] {
2017-01-20 17:59:59 +01:00
all: unset;
width: 4em;
margin-left: .5ex;
padding: 0 .5ex;
2017-07-28 21:27:31 +02:00
border: 1px solid transparent;
2017-01-20 17:59:59 +01:00
border-radius: 3px;
text-align: left;
}
2017-07-28 21:27:31 +02:00
input[type="number"]:hover,
input[type="number"]:focus,
select:hover,
select:focus {
border-color: rgba(100,100,100,.5);
}
2017-01-20 17:59:59 +01:00
pre,
textarea,
.CodeMirror {
font-family: "Input Mono", monospace;
height: auto;
}
form {
height: 100%;
min-height: 100%;
}
.nav-button {
all: unset;
font-family: inherit;
cursor: pointer;
}
label + .nav-button {
margin-left: .5ex;
}
label[for="select-font"],
label[for="select-language"],
label[for="select-theme"] {
display: none;
}
2017-01-20 17:59:59 +01:00
.CodeMirror {
border: none;
font-size: 100%;
background: transparent;
box-shadow: none !important;
height: 100%;
min-height: 100%;
text-rendering: optimizeLegibility;
}
.CodeMirror.no-smooth {
font-smooth: never;
2017-02-08 23:30:59 +01:00
-webkit-font-smoothing: none;
}
.CodeMirror .cm-atom {
font-style: italic;
2017-01-20 17:59:59 +01:00
}
.CodeMirror-gutters {
background: transparent;
}
@media (max-width: 560px) {
2017-02-08 23:30:59 +01:00
article,
form,
.CodeMirror {
height: auto;
min-height: 0;
}
article {
float: none;
text-align: left;
}
2017-01-20 17:59:59 +01:00
h1 + p,
2017-02-08 23:30:59 +01:00
footer {
display: none;
}
2017-01-20 17:59:59 +01:00
}