-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 924 Bytes
/
style.css
File metadata and controls
62 lines (54 loc) · 924 Bytes
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 {
margin: 0;
overflow: hidden;
overscroll-behavior: none;
}
#menuItems {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: rgba(255, 255, 255, 0.6);
padding: 5vmin;
font-size: 7vmin;
}
#start {
margin: 1em 0 0 0;
font-size: 5vmin;
color: white;
background-color: rgba(123, 146, 196, 1);
transition: 0.3s;
border: none;
border-radius: 4px;
}
#start:hover {
background-color: orange;
color: #000;
cursor: pointer;
}
#time{
position:absolute;
bottom:0px;
right:0%;
font-size:25px;
padding:0.2vw;
}
select{
font-size: 6vmin;
padding: 5px;
border-radius: 10px;
border:none;
background:rgba(250,250,250,0.9);
cursor:pointer;
outline: none !important;
}
#congrats {
display: none;
text-transform: capitalize;
}
video {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}