-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (49 loc) · 1.22 KB
/
styles.css
File metadata and controls
58 lines (49 loc) · 1.22 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
color: #434040;
background: linear-gradient(to top, #96fbc4 0%, #f9f586 100%);
}
.countdown-clock {
height: 100%;
display: flex;
flex-direction: column;
}
.countdown-clock-controls {
width: 750px;
justify-self: flex-start;
display: flex;
justify-content: space-between;
margin-top: 30px;
}
.countdown-clock-controls > * {
padding: 20px;
background: rgba(255, 255, 255, 0.5);
border-radius: 10px;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
outline: none;
border: none;
}
.countdown-clock-controls input {
border: 2px solid transparent;
}
.countdown-clock-controls button:hover { background: rgba(255, 255, 255, 0.8); }
.countdown-clock-controls button:active { transform: scale(1.1); }
.countdown-clock-controls input:focus { border: 2px solid #1e89e4; }
.countdown-clock-wrapper {
margin: auto;
text-align: center;
}
.clock {
font-size: 180px;
}
.back-at {
font-size: 23px;
}