-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
115 lines (107 loc) · 1.92 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
}
.panel{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: rgb(153, 218, 143);
}
#Score_space{
height: 95%;
width: 90%;
background-color: white;
overflow: hidden;
border-radius: 15px;
}
#bar{
height: 100px;
width: 100%;
background-color: rgb(11, 93, 11);
display: flex;
padding: 10px;
justify-content: space-evenly;
align-items: center;
flex-wrap: nowrap;
}
.elem{
display: flex;
align-items: center;
gap: 20px;
}
.box{
background-color: rgb(210, 240, 213);
padding: 10px;
border-radius: 5px;
color: black;
font-weight: 900;
font-size: 25px;
border-radius: 8px;
}
h3{
font-size: 30px;
color: white;
}
#clicks{
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
width: 100%;
height: calc(100%-100px);
gap: 10px;
flex-wrap: wrap;
}
.bubble{
background-color:rgb(37, 150, 37);
border-radius: 50%;
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
font-size: 25px;
margin: 10px;
}
.bubble:hover{
background-color: rgb(3, 80, 3);
cursor: pointer;
color: white;
}
#startButton {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: rgb(11, 93, 11);
color: white;
font-size: 20px;
border-radius: 5px;
cursor: pointer;
}
#str-box{
display: flex;
justify-content: center;
align-items: center;
}
.btn {
margin: 18vh auto;
padding: 20px;
background-color: rgb(11, 93, 11);
color: white;
font-size: 20px;
border-radius: 5px;
cursor: pointer;
display: none;
text-align: center;
}