-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
71 lines (57 loc) · 1.04 KB
/
index.css
File metadata and controls
71 lines (57 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
font-size: calc(1rem + 1vw);
background: #D6EADF;
}
header {
display: flex;
justify-content: center;
align-items: center;
background: #EAC4DF;
height: 8%;
}
#play, #timer {
padding: 0.5rem 5rem;
margin: 0.5rem;
border-radius: 5px;
border: none;
background: #0358c2;
opacity: 0.6;
transition: 0.3s;
color: #EAC4DF;
font-size: 1.5rem;
text-align: center;
box-shadow: 2px 2px 2px 1px rgb(0 0 255 / 20%)
}
#play:hover {
opacity: 1;
}
#timer {
opacity: 1;
}
#board {
height: 92%;
overflow: hidden;
position: relative;
}
.bubble {
display: flex;
justify-content: center;
align-items: center;
width: 10vw;
height: 10vw;
max-width: 100px;
max-height: 100px;
position: absolute;
text-align: center;
border-radius: 50%;
user-select: none;
}