-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles copy.css
55 lines (46 loc) · 1 KB
/
styles copy.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
/* Sets all the text color to red! */
.pomodoro-timer {
text-align: center;
}
.pomodoro-timer .mode-switchers-container {
text-align: center;
margin-right: auto;
margin-left: auto;
display: flex;
color: white;
}
.pomodoro-timer .mode-switchers-container div {
background-color: rosybrown;
margin-left: 20px;
padding: 8px;
border-radius: 5px;
border: darkred 1px dashed;
}
.pomodoro-timer .mode-switchers-container div.enabled {
background-color: brown;
}
.pomodoro-timer .mode-switchers-container:after {
content: "";
display: block;
clear: both;
}
.pomodoro-timer .time {
font-size: 180%;
text-align: center;
padding: 10px;
}
.pomodoro-timer .time.over {
color: red;
}
.theme-dark .calendar-year-label {
fill: white;
}
.theme-light .calendar-year-label {
fill: black;
}
.theme-dark .calendar-month-label {
fill: white;
}
.theme-light .calendar-month-label {
fill: black;
}