54 lines
705 B
CSS
54 lines
705 B
CSS
html {
|
|
background: #eee;
|
|
font-family: "Gentium Plus", "Source Sans Pro", sans-serif;
|
|
}
|
|
body {
|
|
max-width: 30em;
|
|
margin: auto;
|
|
padding: 2em;
|
|
font-size: 20px;
|
|
color: #444;
|
|
}
|
|
h1, p {
|
|
margin: 0;
|
|
}
|
|
header {
|
|
margin: 0 0 1em;
|
|
}
|
|
h1 {
|
|
font-weight: normal;
|
|
}
|
|
h1, .ipa {
|
|
display: inline-block;
|
|
}
|
|
.ipa {
|
|
color: #666;
|
|
margin: 0 0 0 1em;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.contact {
|
|
list-style-type: none;
|
|
margin: 0.5em 0;
|
|
padding: 0;
|
|
}
|
|
.contact li {
|
|
list-style-type: none;
|
|
display: inline;
|
|
margin: 0;
|
|
}
|
|
.contact a {
|
|
width: 1em;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
font-size: 1.8em;
|
|
margin: 0 0.25em;
|
|
color: inherit;
|
|
}
|
|
.contact a:before {
|
|
margin-right: 1em;
|
|
}
|
|
.contact a:hover {
|
|
color: #08f;
|
|
}
|