-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
101 lines (83 loc) · 1.58 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.me-auto {
margin-right: 0;
}
.me-auto {
margin-right: 0;
}
* {
margin: 0;
padding: 0;
}
body {
background-color: rgb(239, 163, 0);
}
#title {
background-color: rgba(123, 191, 255, 0.975);
display: flex;
width: 87vw;
justify-content: center;
align-items: center;
margin-left: 6.5vw;
border: solid black;
}
.boxes {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 10vh 10vw 0 10vw;
}
.box1,
.box2,
.box3 {
background-color: rgba(123, 191, 255, 0.975);
height: fit-content;
text-align: center;
width: 20vw;
padding: 10px;
border: inset black;
border-radius: 10px;
}
.box1:hover,
.box2:hover,
.box3:hover {
background-color: rgba(123, 191, 255, 0.829);
text-shadow: 3px 3px 3px gray;
}
@media screen and (max-width:1060px) {
.boxes {
margin: 0 10vw;
justify-content: space-between;
}
.box1,
.box2 {
width: 35vw;
}
.box3 {
margin-top: 20px;
width: 74vw;
}
}
@media screen and (max-width:758px) {
.boxes {
margin: 0 10vw;
justify-content: space-between;
}
.box1,
.box2,
.box3 {
width: 80vw;
margin-bottom: 20px;
}
}
.flex-all-center {
height: 10vh;
background-color: rgb(67, 66, 66);
color: white;
font-family: 'Lato', sans-serif;
margin-top: 41vh;
}
.foot {
display: flex;
justify-content: center;
align-items: center;
}