-
Notifications
You must be signed in to change notification settings - Fork 0
/
pomodoroTimer.css
93 lines (74 loc) · 1.24 KB
/
pomodoroTimer.css
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
html {
background-color: #000000;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: rgb(0, 0, 0);
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
#container {
height: 200px;
width: 700px;
background-color: #cfcac0;
margin: 0 auto;
border: 5px solid #FF4400;;;
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(3, 1fr);
}
/*timers*/
.label {
align-self: center;
justify-self: center;
font-size: 30px;
font-weight: bold;
}
#work {
grid-area: 1 / 2 / 1 / 2;
}
#break {
grid-area: 1 / 4 / 1 / 4;
}
#cycles {
grid-area: 1 / 3 / 1 / 3;
}
.timer {
display: flex;
align-self: center;
justify-self: center;
font-size: 30px;
font-weight: bold;
}
p {
margin: 0;
padding: 0;
}
#counter {
grid-area: 2 / 3 / 2 / 3;
color: red;
}
#work-timer {
grid-area: 2 / 2 / 2 / 2;
}
#break-timer {
grid-area: 2 / 4 / 2 / 4;
}
/*buttons*/
.btn {
align-self: center;
justify-self: center;
width: 100px;
height: 30px;
font-size: 20px;
}
#start {
grid-area: 3 / 2 / 3 / 2;
}
#reset {
grid-area: 3 / 3 / 3 / 3;
}
#stop {
grid-area: 3 / 4 / 3 / 4;
}