-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (81 loc) · 1.58 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (81 loc) · 1.58 KB
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
html,body{
width: 100%;
height: 100%;
}
#main{
height: 100vh;
width: 100%;
/* background-color: rgb(196, 233, 233); */
background-color: #ddcce2;
display: flex;
align-items: center;
justify-content: center;
}
.container{
height: 90%;
width: 65%;
background-color: #fff;
border-radius: 10px;
overflow: hidden;
}
.container .top{
width: 100%;
height: 70px;
/* background-color: rgb(11, 206, 206); */
background-color: #1E3231;
display: flex;
align-items: center;
justify-content: space-around;
}
.top .elem{
/* background-color: red; */
/* width: 20%; */
display: flex;
align-items: center;
gap: 15px;
}
.elem h2{
color: #fff;
}
.elem .box{
background-color: #ddcce2;
padding: 15px 30px;
border-radius: 50px;
font-size: 20px;
font-weight: 700;
}
.container .bottom{
width: 100%;
height: calc(100% - 70px);
background-color: #8E7C93;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
}
.bottom .bubble{
height: 60px;
width: 60px;
background-color: #ddcce2;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #000;
font-weight: 700;
}
.bottom .bubble:hover{
background-color: #cbb9d1;
cursor: pointer;
}
h1#over{
font-size: 50px;
color: #000;
}