CSL-site/style.css

61 lines
739 B
CSS
Raw Normal View History

2019-05-01 18:06:46 +00:00
body {
font-family: sans-serif;
color: #333;
2019-05-02 07:31:57 +00:00
background-color: #eee;
font-size: 1.1em;
2019-05-01 18:06:46 +00:00
}
2019-05-02 13:11:30 +00:00
2019-05-01 18:06:46 +00:00
a {
color: #777;
2019-05-02 07:54:53 +00:00
text-decoration-style: dotted;
2019-05-01 18:06:46 +00:00
}
a:hover {
2019-05-02 07:54:53 +00:00
text-decoration-style: solid;
2019-05-01 18:06:46 +00:00
}
2019-05-02 13:11:30 +00:00
article, footer {
2019-05-02 13:29:38 +00:00
width: 66%;
2019-05-02 13:32:31 +00:00
text-align: justify;
2019-05-01 18:06:46 +00:00
max-width: 1000px;
2019-05-02 07:54:53 +00:00
min-width: 500px;
2019-05-01 18:06:46 +00:00
margin: 0 auto;
2019-05-02 07:31:57 +00:00
line-height: 1.4em;
2019-05-01 18:06:46 +00:00
}
footer {
color: #777;
2019-05-14 23:49:02 +00:00
font-size: 0.75em;
}
2019-05-02 13:11:30 +00:00
h1, h2 {
font-weight: 200;
font-family: serif;
}
2019-05-01 18:06:46 +00:00
h1 {
text-align: center;
font-size: 3em;
}
2019-05-02 13:11:30 +00:00
ul {
list-style-type: none;
}
ul.compact {
padding: 0;
}
ul li {
2019-05-02 07:31:57 +00:00
margin-top: 5px;
}
2019-05-02 13:11:30 +00:00
2019-05-22 01:03:33 +00:00
ol.letters {
list-style-type: lower-alpha;
}
ol.roman {
list-style-type: lower-roman;
}
2019-05-02 13:11:30 +00:00
@media only screen and (max-width:550px){
article, footer {
min-width:0;
width:100%;
}
}