-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsite.scss
96 lines (83 loc) · 2.16 KB
/
site.scss
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
---
@charset "utf-8";
body {
max-width: 70ch;
margin: 5em auto;
font-size: 14pt;
line-height: 1.5714;
font-family: "Lato", sans-serif;
font-variant-ligatures: none;
@media screen and (max-width: 767px) {
margin: 1em;
font-size: 12pt;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: "Rubik", sans-serif;
font-weight: 400;
}
a {
text-decoration: underline;
color: rgb(0, 98, 155);
}
header {
h1 a img {
display: block;
width: 232px;
height: 39px;
}
.slogan {
font-family: "Rubik", sans-serif;
font-size: larger;
}
}
dl {
dt {
font-weight: bold;
display: inline-block;
min-width: 10ch;
}
dd {
display: inline;
margin: 0;
&:after {
display: block;
content: '';
margin-bottom: .75em;
}
}
}
footer {
font-size: smaller;
margin-top: 2rem;
}
@mixin font($path, $family, $weight, $style) {
@font-face {
font-family: $family;
font-weight: $weight;
font-style: $style;
src: url($path + ".woff2") format("woff2"),
url($path + ".woff") format("woff");
}
}
/*!
* Rubik
* Copyright 2015 The Rubik Project Authors (https://github.com/googlefonts/rubik),
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license can be found at: fonts/rubik/OFL.txt or http://scripts.sil.org/OFL
*/
@include font("fonts/rubik/rubik-v7-latin-ext_latin-regular", "Rubik", 400, normal);
/*!
* Lato
* Copyright (c) 2010-2015, Łukasz Dziedzic ([email protected]),
* with Reserved Font Name Lato.
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license can be found at: fonts/lato/OFL.txt or http://scripts.sil.org/OFL
*/
@include font("fonts/lato/lato-v14-latin-ext_latin-regular", "Lato", 400, normal);
@include font("fonts/lato/lato-v14-latin-ext_latin-italic", "Lato", 400, italic);
@include font("fonts/lato/lato-v14-latin-ext_latin-700", "Lato", 700, normal);
@include font("fonts/lato/lato-v14-latin-ext_latin-700italic", "Lato", 700, italic);