-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (77 loc) · 1.45 KB
/
style.css
File metadata and controls
78 lines (77 loc) · 1.45 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Georgia, 'Times New Roman', Times, serif;
}
html, body{
width: 100%;
height: 100%;
}
#main{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: aquamarine;
}
#panel{
overflow: hidden;
width: 90%;
height: 80%;
border-radius: 10px;
background-color: #ffff;
}
#ptop{
padding: 0px 30%;
align-items: center;
justify-content: space-between;
display: flex;
color: #ffff;
width: 100%;
height: 100px;
background-color: rgb(5, 77, 53);
}
.elem{
display: flex;
align-items: center;
gap: 20px;
}
.elem h2{
font-weight: 500;
}
.box{
padding: 10px 15px;
background-color: #ffff;
border-radius: 5px;
color: #000;
text-align: center;
font-weight: 700;
font-size: 30px;
}
#pbtm{
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
flex-wrap: wrap;
padding: 15px;
width: 100%;
height:100%;
background-color: rgb(121, 216, 165);
}
.bubble{
display: flex;
align-items: center;
justify-content: center;
width: 35px;
height: 35px;
border-radius: 50%;
background-color: #4807c1;
font-weight: 500;
}
.bubble:hover{
background-color: rgb(8, 101, 45);
cursor: pointer;
}