-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (64 loc) · 993 Bytes
/
styles.css
File metadata and controls
76 lines (64 loc) · 993 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@font-face {
font-family: Seven Segment;
src: url(./assets/Seven\ Segment.ttf);
}
* {
margin: 0;
padding: 0;
}
html {
min-height: 100vh;
}
h1.heading {
text-align: center;
font-family: "Courier New", Courier, monospace;
font-size: 10vh;
padding-top: 10vh;
padding-bottom: 0;
}
div.overflow {
overflow: hidden;
width: 100vw;
height: 100vh;
}
div#timer {
position: relative;
margin: 5vh 5vw 5vh 5vw;
width: 90vw;
height: 70vh;
padding-top: auto;
padding-bottom: auto;
}
img {
position: absolute;
max-width: 100%;
height: auto;
}
h1.time {
position: absolute;
color: orangered;
text-shadow: 0px 0px 10px red;
font-family: Seven Segment;
font-size: calc(90vw / 22);
padding-left: 46.75%;
padding-top: 15%;
}
div#explosion {
display: none;
}
video {
height: auto;
width: 100%;
}
p {
position: fixed;
bottom: 0;
font-family: monospace;
font-size: 1rem;
}
p.bottom-left {
left: 0;
}
p.bottom-right {
right: 0;
}