-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (68 loc) · 1.48 KB
/
style.css
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
:root {
--brand-gold: #e6ce9a;
--brand-gold-light: #faf0df;
--brand-gold-lighter: #fcfaf4;
--brand-gold-dark: #9a6700;
}
@font-face {
font-family: "DomD Reg";
font-display: swap;
src: local("DomaineDisplay-Regular"), local("Domaine Display"),
url("fonts/DomDWeb-Regular.eot?#iefix") format("embedded-opentype"),
url("fonts/DomDWeb-Regular.woff2") format("woff2"),
url("fonts/DomDWeb-Regular.woff") format("woff");
}
@font-face {
font-family: "Roboto Condensed";
font-display: swap;
font-style: normal;
font-weight: 700;
src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"),
url("fonts/roboto-condensed-v19-latin-700.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("fonts/roboto-condensed-v19-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
body,
html,
h1,
h2,
h3,
h4,
h5,
h6 p {
margin: 0;
padding: 0;
}
body {
display: grid;
grid-template-columns: 1fr;
gap: 64px;
place-items: center;
padding: 64px;
font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Roboto Condensed", "Trebuchet MS", sans-serif;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.header-alt {
font-family: "DomD Reg", Georgia, serif;
font-weight: 400;
text-transform: none;
letter-spacing: 0;
}
a {
color: var(--brand-gold-dark);
}
iframe {
width: 100%;
max-width: 900px;
}