-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathstyle.css
103 lines (86 loc) · 1.5 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
* {
padding: 0;
margin: 0;
}
.main {
background-color: aqua;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.outer-box {
border: 2px solid black;
width: 70vw;
height: 59%;
overflow: hidden;
border-radius: 10px;
}
.navbar {
background-color: #55a555;
width: 100%;
height: 15%;
display: flex;
justify-content: space-evenly;
}
.value-box {
background-color: white;
width: 30px;
text-align: center;
font-weight: 700;
}
.mr-2 h3,
p {
margin-top: 20px;
display: inline-block;
}
.content {
background-color: white;
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
}
.bubble {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 30px;
width: 30px;
border: 1.5px solid black;
border-radius: 50%;
background-color: #55a555;
margin: 5px 5px;
}
.bubble:hover {
background-color: #40a140;
cursor: pointer;
}
.gameOver {
text-align: center;
/* display: flex; */
/* justify-content: center; */
/* border: 2p x solid; */
/* align-items: center; */
position: absolute;
top: 50%;
left: 0;
width: 100%;
/* height: 80%; */
}
.gameOver button {
width: 16%;
height: 40px;
}
.Starting {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.starting-text {
width: 16%;
height: 40px;
}