-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (65 loc) · 1.22 KB
/
style.css
File metadata and controls
77 lines (65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
button, input[type="submit"], input[type="reset"] {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}
html, body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
* {
box-sizing: border-box;
}
main {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
}
.timer {
display: flex;
align-items: center;
flex-direction: column;
padding: 60px;
width: 400px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.timer > div {
margin-top: 40px;
}
.timer-clock {
font-size: 50px;
font-weight: 600;
color: rgb(90, 90, 90);
}
.timer-control {
display: flex;
justify-content: space-between;
width: 100%;
}
.toDo {
display: flex;
flex-direction: column;
margin-top: 20px;
width: 400px;
}
.toDo > input {
width: 400px;
padding: 10px;
border: none;
background-color: rgb(245, 245, 245);
}
#toDo-items {
margin-top: 20px;
}
#toDo-items > div {
margin-top: 5px;
background-color: rgb(241, 241, 241);
padding: 10px;
}