-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (68 loc) · 1.17 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
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
/* color-scheme: light dark; */
/* color: rgba(255, 255, 255, 0.87); */
background-color: white;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
body {
margin: 0;
min-width: 320px;
min-height: 100vh;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
#app {
max-width: 1280px;
padding: 2rem;
}
header {
background-color: #242424;
}
main {
max-width: 1280px;
margin: 0 auto;
}
section {
border: solid black;
}
.name {
grid-area: name;
text-align: center;
color: white;
}
.navigation {
display: grid;
grid-template-columns: 0.25fr 0.25fr 0.25fr 0.25fr;
grid-template-rows: auto;
grid-template-areas:
"name . navitems ."
;
}
.navigation-items {
display: flex;
align-items: center;
grid-area: navitems;
}
.under-construction {
font-size: 60px;
max-width: 1280px;
margin: 0 auto;
text-align: center;
color: white;
}