-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 1.14 KB
/
style.css
File metadata and controls
62 lines (53 loc) · 1.14 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
body {
font-family: "Lucida Console", "Courier New", monospace;
text-align: center;
padding: 1em 0 0 0;
color: #ce2960;
}
div {
text-align: center;
}
button {
border: none;
padding: 2em 2em 2em 2em;
border-radius: 1em;
background-color:#6ee2d9;
transition: 0.5s;
font-family: "Lucida Console", "Courier New", monospace;
text-align: center;
}
button:hover{
background-color:#0f4b55;
}
.sound-overlay {
background: #fff;
z-index: 20;
line-height: 20px;
border-radius: 6px;
position:fixed;
width: 320px;
height: 150px;
top: 50%;
left: 50%;
margin-left: -180px; /* Negative half of width. */
margin-top: -180px; /* Negative half of height. */
font-size: 16px;
line-height: 24px;
padding: 20px 20px 20px 20px;
box-shadow: 0 0 0 1500px rgba(0, 0, 0, .5);
.accept-sound {
cursor: pointer;
}
}
.d-none {
display: none;
}
#stopButton {
display: none;
}
#settings {
position: absolute;
right: 1em;
bottom: 1em;
cursor: pointer;
}