-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubble.css
91 lines (80 loc) · 1.46 KB
/
bubble.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: serif;
}
html,body {
width: 100%;
height: 100%;
}
#main{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: rgb(158, 186, 166);
}
#panel {
overflow: hidden;
width: 85%;
height: 85%;
border-radius: 5px;
background-color: #ffffff
}
#ptop {
justify-content: space-between;
padding: 0px 30%;
align-items: center;
display: flex;
color: #ffffff;
width: 100%;
height: 100px;
background-color: rgb(49, 97, 62);
}
.elem {
display: flex;
align-items: center;
gap: 20px;
border-radius: 5px;
}
.elem h2{
font-size: 22px;
font-weight: 600;
}
.box {
padding: 10px 20px;
color: rgb(6, 117, 148);
font-size: 25px;
font-weight: 700;
background-color: #ffffff;
border-radius: 5px;
}
#pbtm {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 10px;
padding: 20px;
width: 100%;
height: calc(100% - 100px);
}
.bubble{
width: 55px;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(98, 219, 253);
border-radius: 50px;
color: rgb(52, 6, 94);
font-weight: 600;
font-size: 25px;
}
.bubble:hover{
background-color: rgb(27, 109, 132);
cursor: pointer;
color: #ffffff;
}