-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (82 loc) · 1.49 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
75
76
77
78
79
80
81
82
*{
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif;
box-sizing: border-box;
}
html,body{
height: 100vh;
width: 100vw;
}
.main{
height: 100%;
width: 100%;
background-color: #9BB89C;
display: flex;
align-items: center;
justify-content: center;
}
.container{
width: 80%;
height: 80%;
background-color: white;
border-radius: 10px;
overflow: hidden;
}
.containerTop{
padding: 0 30%;
width: 100%;
height: 100px;
background-color: #2c772e;
display: flex;
justify-content: space-between;
align-items: center;
color: antiquewhite;
}
.element{
display: flex;
align-items: center;
gap: 15px;
}
.element h2{
font-weight: 500;
font-size: 22px;
}
.box{
padding: 10px 10px;
background-color: white;
border-radius: 5px;
color: rgb(3, 53, 8);
font-size: 20px;
font-weight: 800;
}
.containerBottom{
width: 100%;
height: calc(100%-100px);
padding: 20px;
gap: 10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.bubble{
height: 50px;
width: 50px;
border-radius: 50%;
background-color: #2C772E;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-weight: 500;
cursor: pointer;
}
.bubble:hover{
background-color: #1e4f20;
}
.bubble:active {
/*background-color: #3e8e41;
*//*box-shadow: 0 5px #666;
*/transform: translateX(4px);
}