-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (46 loc) · 801 Bytes
/
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
*,
*::before,
*::after {
box-sizing: border-box;
font-family: Gotham Rounded, sans-serif;
font-weight: normal;
}
body {
padding: 0;
margin: 0;
background: #00AA;
}
.grid-main {
display: grid;
place-content: center;
min-height: 100vh;
grid-template-areas:
"fruits transports";
grid-template-columns: 300px 100px;
grid-template-rows: 400px;
gap: 5px;
}
.grid-fruits {
grid-area: fruits;
}
.grid-fruits {
display: grid;
grid-template-columns: repeat(3, 100px);
}
.grid-transports {
grid-area: transports
}
.grid-transports {
display: grid;
}
.grid-main div {
display: grid;
place-items: center;
width: 100%;
height: 100%;
cursor: pointer;
font-size: 3rem;
border: 1px solid white;
outline: none;
background-color: rgba(0, 0, 0, .75);
}