-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (111 loc) · 2.66 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* asdasdasd */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Main CSS Code */
html {
font-family: var(--ff-sans);
line-height: 1.90em;
color: var(--html-color);
letter-spacing: -0.75px;
text-rendering: optimizeLegibility; }
body {
background-color: var(--body-bg-color); }
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
}
main {
max-width: 1280px;
margin: auto;
padding-left: 40px;
padding-right: 40px; }
@media screen and (min-width: 768px) {
html {
font-size: 16pt; }
main {
margin-top: 75px; } }
@media screen and (max-width: 768px) {
html {
font-size: 12pt; } }
@media only screen and (hover: none) and (pointer: coarse) {
html {
font-size: 12pt; }
main {
padding: none; } }
p.notice {
display: var(--dark-display); }
header {
text-align: center;
padding: 10px;
margin-bottom: 25px; }
header h1 {
font-weight: var(--weight-light);
font-size: 2.25em;
letter-spacing: -3px;
padding: 30px 0 0 0;
border: none; }
a {
text-decoration: none;
color: var(--link-color);
font-weight: var(--weight-light);
display: inline-block;
border-bottom: 2px solid var(--primary-color);
padding-bottom: 0;
line-height: 1em; }
a:hover {
border-bottom: 6px solid var(--primary-color);
font-weight: var(--weight-medium); }
h2 {
font-size: 1.5rem;
font-weight: var(--h2-weight);
letter-spacing: var(--h2-spacing);
padding: 0;
margin: 15px 0 15px 0; }
.uppercase {
text-transform: uppercase; }
main {
max-width: 1280px;
display: flex; }
section.nz {
display: flex;
flex: 1;
flex-direction: column;
text-align: left;
vertical-align: middle; }
section.world {
display: flex;
flex: 1;
flex-direction: column;
text-align: right; }
footer {
max-width: 1280px;
margin: auto;
flex: none;
border-top: 1px gray solid;
padding: 10px 0px 75px 50px;
line-height: 1.7em;
letter-spacing: -0.5px;
font-weight: var(--weight-light);
font-size: 12pt;
opacity: 0.7; }
time {
opacity: 0.6; }
/*# sourceMappingURL=style.css.map */