-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (45 loc) · 842 Bytes
/
styles.css
File metadata and controls
54 lines (45 loc) · 842 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
html, body {
height: 100%;
}
body {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin: 2rem;
background-image: url(timer-bg.jpg);
background-size: cover;
}
h1 {
color: whitesmoke;
}
.container {
display: flex;
gap: 2rem;
box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.2);
padding: 1rem;
border-radius: .5rem;
background-color: whitesmoke;
}
.inputs {
display: flex;
flex-direction: column;
gap: .5rem;
width: 100px;
}
.inputs input {
padding: .5rem;
}
.inputs button {
border: 0;
padding: .5rem 1rem;
background-color: lightgrey;
cursor: pointer;
}
.inputs button:hover {
background-color: white;
}
.timer {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
}