70 lines
907 B
CSS
70 lines
907 B
CSS
body {
|
|
background-color: #f1faee;
|
|
margin: 20px auto;
|
|
max-width: 600px;
|
|
line-height: 1.6;
|
|
font-size: 18px;
|
|
color: #444;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
p {
|
|
font-family: 'Playfair', serif;
|
|
margin: 0px 0px -30px 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
span {
|
|
font-family: 'Playfair', serif;
|
|
}
|
|
|
|
#content {
|
|
background-color: #fff;
|
|
padding: 24px;
|
|
}
|
|
|
|
hr {
|
|
color: #777;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: #457b9d;
|
|
line-height: 1.6;
|
|
margin-top: 40px;
|
|
margin-bottom: 10px;
|
|
font-family: 'Playfair', serif;
|
|
}
|
|
|
|
a.svg-icon {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.svg-icon:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
svg:hover {
|
|
fill: #000;
|
|
}
|
|
|
|
a {
|
|
color: #333;
|
|
text-decoration: none;
|
|
font-family: 'Playfair', sans-serif;
|
|
margin: 0px 0px 50px 0px;
|
|
}
|
|
|
|
a:hover {
|
|
color: #1d3557;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
color: #55;
|
|
}
|
|
|
|
a:visited {
|
|
color: #666;
|
|
}
|
|
|