-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (68 loc) · 1.25 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
body {
background-color: rgb(194, 80, 80);
}
.container_overall {
display: flex;
padding-top: 3%;
flex-direction: row;
width: 100%;
height: 100%;
}
.menu_block {
position: fixed;
padding-left: 1%;
height: 60%;
width: 78%;
display: flex;
flex-direction: column;
justify-content: left;
background-color: rgb(233, 180, 20);
z-index: 0;
}
.menu_item {
height: 40px;
width: fit-content;
padding: 10px;
}
.container_tiles {
display: flex;
flex-wrap: wrap;
justify-content: left;
padding-top: 2%;
padding-left: 2%;
width: 1200px;
margin: 0 auto;
}
.tile0 {
width: 190px;
height: 190px;
margin: 10px;
background-color: azure;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
z-index: 1;
}
.tile1 {
width: 400px;
height: 400px;
margin: 10px;
background-color: azure;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
z-index: 1;
}
.tile2 {
width: 610px;
height: 610px;
margin: 10px;
background-color: azure;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
z-index: 1;
}