-
Notifications
You must be signed in to change notification settings - Fork 0
/
uhlmann.css
54 lines (53 loc) · 949 Bytes
/
uhlmann.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
body{
margin: 0;
padding: 0;
}
.grid {
display: grid;
height: 100vh;
width: 600px;
grid-template-areas:
"a a b"
"c . b"
"e d d"
". h j";
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
color:white;
}
.grid_item {
display: flex;
align-items: center;
justify-content: left;
}
.item1 {
grid-area: a;
background-color: #E95E4B;
}
.item2 {
grid-area: b;
background-color: #2EB5AF;
}
.item3 {
grid-area: c;
background-color: #38383A;
}
.item4 {
grid-area: d;
font-size: 2.5rem;
justify-content: center;
background-color: #38383A;
}
.item5 {
grid-area: e;
background-color: #E95E4B;
}
.item6 {
grid-area: h;
padding-left: 15px;
background-color: #2EB5AF;
}
.item7 {
grid-area: j;
background-color: #E95E4B;
}