CSL-site/style.css

36 lines
460 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
}
a {
color: #777;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
article, footer {
2019-05-01 18:06:46 +00:00
width: 50%;
max-width: 1000px;
2019-05-01 20:32:33 +00:00
min-width: 400px;
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
}
h1 {
text-align: center;
font-size: 3em;
font-weight: 200;
2019-05-02 07:31:57 +00:00
font-family: serif;
}
ul {
list-style-type: none;
}
ul.compact {
padding: 0;
}
ul li {
2019-05-02 07:31:57 +00:00
margin-top: 5px;
}