muse/static/style.css

113 lines
1.5 KiB
CSS

body {
font-family : Open Sans, Arial;
font-size : 1.2em;
color : #eee;
background-color: #222;
padding : 0em 1em;
margin : 1em auto;
max-width : 40em;
line-height : 1.4;
}
blockquote {
font-size: 0.75em;
}
q {
font-style: italic;
}
a {
color: #7af;
align-items: center;
text-decoration: none;
}
a:visited {
color: #77f;
}
a:hover {
color: #88f;
}
img.icon {
margin-right: 5px;
vertical-align: middle;
height: 20px;
}
input,
button,
.button {
display: inline-block;
background-color: #333;
border-radius: 5px;
border: none;
outline: none;
padding: 0.25em 0.5em;
}
input, button {
color: inherit;
}
input[type=button],
input[type=submit],
button,
.button {
cursor: pointer;
}
input[type=checkbox].button:hover ~ button,
input[type=button]:hover,
input[type=submit]:hover,
button:hover,
.button:hover {
background-color: #444;
}
input[type=checkbox].button:active ~ button,
input[type=button]:active,
input[type=submit]:active,
button:active,
.button:active {
box-shadow: inset 0px 0px 0.15em #777;
}
hr {
border: 0.5px solid #333;
}
@media (prefers-color-scheme: light) {
body {
background: #fff;
color: #222;
}
hr {
border-color: #ddd;
}
a {
color: #33f;
}
a:visited,
a:hover {
color: #51e;
}
input,
button,
.button {
background-color: #eee;
}
input[type=checkbox].button:hover ~ button,
input[type=button]:hover,
input[type=submit]:hover,
button:hover,
.button:hover {
background-color: #ddd;
}
}