-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (43 loc) · 831 Bytes
/
style.css
File metadata and controls
50 lines (43 loc) · 831 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
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: lightcoral;
font-family: 'Anonymous Pro', monospace;
}
.text {
display: flex;
align-items: center;
justify-content: center;
height: 85vh;
}
.content {
max-width: 75vw;
text-align: center;
font-size: 25px;
font-weight: bolder;
}
.speed {
display: flex;
align-items: center;
justify-content: center;
}
.control {
display: inline-block;
padding: 15px 20px;
background-color: rgba(145, 126, 126, 0.541);
font-size: 30px;
}
#speed {
font-size: 25px;
text-align: center;
border-radius: 5px;
border: none;
margin: 0px 5px;
}
#speed:focus {
outline: none;
}