blob: 92adbf8a2dd67aa7de8f25a9b3decf19288d19d6 (
plain)
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
|
:root {
--https-blue: #0a84ff;
--darker-blue: #0060df;
--text-main: #000;
--text-secondary: #464646;
--light-grey: #ececec;
--space: 5px;
--font: 'Lucida Grande', 'Segoe UI', Tahoma, 'DejaVu Sans', Arial, sans-serif;
--code-font: 'VeraMono';
}
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
row-gap: 16px;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.font {
font-family: var(--font);
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
.button {
border: var(--https-blue) solid 1px;
color: var(--text-main);
display: block;
font-size: 12px;
font-weight: bold;
margin: var(--space) auto;
padding: 10px;
text-align: center;
text-decoration: none;
}
.button:hover {
background-color: var(--darker-blue);
color: #fff;
}
|