1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
@import url(https://fonts.googleapis.com/css?family=Cabin+Sketch);
@import url(https://fonts.googleapis.com/css?family=Alegreya);
body {
font-family: "Alegreya";
margin: 40px auto;
width: 700px;
}
.content {
position: relative;
}
footer {
padding: 2em 0 1em 0;
font-size: 12px;
}
h1 {
font-size: 80px;
margin-top: .3em;
margin-bottom: 0;
}
h1 + h2 {
margin-top: 0;
}
h2 {
font-weight: 400;
font-size: 20px;
}
h1, h2 {
font-family: "Cabin Sketch";
text-rendering: optimizeLegibility;
}
.content > p {
line-height: 1.5em;
text-rendering: optimizeLegibility;
}
.logo {
height: 60px;
padding-left: 0px;
padding-right: 40px;
}
pre.highlight {
border: 1px solid #ccc;
background-color: #eee;
padding: 0.5em;
}
|