CSL-site/style.css

61 lines
739 B
CSS

body {
font-family: sans-serif;
color: #333;
background-color: #eee;
font-size: 1.1em;
}
a {
color: #777;
text-decoration-style: dotted;
}
a:hover {
text-decoration-style: solid;
}
article, footer {
width: 66%;
text-align: justify;
max-width: 1000px;
min-width: 500px;
margin: 0 auto;
line-height: 1.4em;
}
footer {
color: #777;
font-size: 0.75em;
}
h1, h2 {
font-weight: 200;
font-family: serif;
}
h1 {
text-align: center;
font-size: 3em;
}
ul {
list-style-type: none;
}
ul.compact {
padding: 0;
}
ul li {
margin-top: 5px;
}
ol.letters {
list-style-type: lower-alpha;
}
ol.roman {
list-style-type: lower-roman;
}
@media only screen and (max-width:550px){
article, footer {
min-width:0;
width:100%;
}
}