40 lines
596 B
CSS
40 lines
596 B
CSS
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
|
|
|
|
html {
|
|
color: #1d1d1d;
|
|
background-color: #c7bcad;
|
|
font-size: 16pt;
|
|
font-family: 'Open Sans', sans-serif;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
blockquote {
|
|
color: #777;
|
|
border: solid 0px #777;
|
|
padding-left: 12px;
|
|
border-left-width: 5px;
|
|
font-size: 14pt;
|
|
}
|
|
|
|
p {
|
|
margin: 8px;
|
|
}
|
|
|
|
a, a:visited {
|
|
text-decoration: none;
|
|
color: #DB1A41;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
a:hover {
|
|
color: #E94769;
|
|
}
|
|
|
|
body {
|
|
max-width: 820px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 45px;
|
|
}
|
|
|