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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
body {
padding: 50px 0 200px 0;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Bitter", serif;
font-weight: 400;
}
nav#links {
margin-top: 149px;
}
/* nav#links > a { float: left; } */
/* nav#links > a + a:before { display: block; float: left; content: ' | '; } */
.constant {
color: #25536D;
}
a, a:visited {
color: #25536D;
text-decoration: none;
border-bottom: 1px solid;
}
a:hover, a:focus {
color: black;
}
a.anchor {
text-decoration: none;
border-bottom: unset;
}
p {
text-align: justify;
-webkit-hyphens: auto;
-moz-hyphens: auto;
}
p#pitch {
text-align: left;
}
pre, tt, kbd, code {
font-family: 'Inconsolata', 'Consolas', monospace;
}
#sample-project {
font-size: 16px;
}
hr {
margin: 35px 0;
}
h3 {
margin: 21px 0;
}
#footer p {
text-align: center;
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: normal;
src: url(/inconsolata.ttf) format('truetype');
}
@font-face {
font-family: 'Bitter';
font-style: normal;
font-weight: 400;
src: url(/bitter.ttf) format('truetype');
}
|