CSL-site/style.css

42 lines
565 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;
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
}
article, footer {
2019-05-01 18:06:46 +00:00
width: 50%;
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
}
2019-05-02 07:54:53 +00:00
@media only screen and (max-width:550px){
article, footer {
min-width:0;
width:100%;
}
}
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;
}