-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
51 lines (43 loc) · 645 Bytes
/
Copy pathbase.css
File metadata and controls
51 lines (43 loc) · 645 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
html {
color: #fef800;
font-family: Menlo;
}
body {
background-image: url("https://picsum.photos/2000");
width: 100%;
max-width: 100%;
height: auto;
max-height: auto;
background-position: center;
}
.controls {
position: fixed;
text-align: center;
top: 1em;
width: 100%;
}
.button {
color: #4a4a4a;
font-size: 2vw;
margin: 0 0.5em;
text-decoration: none;
}
.button:first-child {
margin-left: 0;
}
.button:last-child {
margin-right: 0;
}
.button:hover {
color: red;
}
.stopwatch {
font-size: 10vw;
text-align: center;
}
.footer {
position: fixed;
height: 40px;
bottom: 90%;
width: 100%;
}