-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (68 loc) · 1.41 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');
body {
background-color: black;
margin: none;
padding: none;
font-family: 'Inter', sans-serif;
}
.container {
width: 100vw;
height: 100vh;
display: grid;
grid-template-columns: 2fr 1fr 2fr;
grid-template-rows: 1.5fr 1fr 1.5fr;
gap: 1vh 1vh;
grid-auto-flow: row;
grid-template-areas:
"topleft topleft topright"
"bottomleft logo topright"
"bottomleft bottomright bottomright";
transition: grid-template-columns 1s, grid-template-rows 1s;
}
.logo {
grid-area: logo;
background-color: #fada5e;
display: flex;
align-items: center;
justify-content: center;
}
.topleft {
grid-area: topleft;
background-color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
}
.topleft:hover {
background-color: #fada5e;
}
.topright {
grid-area: topright;
background-color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
}
.topright:hover {
background-color: #fada5e;
}
.bottomleft {
grid-area: bottomleft;
background-color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
}
.bottomleft:hover {
background-color: #fada5e;
}
.bottomright {
grid-area: bottomright;
background-color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
}
.bottomright:hover {
background-color: #fada5e;
}