-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
72 lines (59 loc) · 1.08 KB
/
styles.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
/*
* The deep work colors are intentionally soothing, to provide a subtle sense of relief when a checking session
* ends and a deep work session begins.
*/
body {
max-width: 600px;
margin: 0 auto;
padding: 25px;
}
body.active-checking {
background-color: #FFE39A;
transition: background-color 1.5s ease;
}
body.active-deep-work {
background-color: #7ea3b5;
transition: background-color 1.5s ease;
}
h1 {
margin-bottom: 0;
}
#subtitle {
margin-top: 0;
font-style: italic;
}
#instructions ol {
padding-left: 1em;
}
#instructions li {
padding-bottom: 5px;
}
#timers-container {
display: flex;
justify-content: center;
}
.container {
margin: 20px;
margin-top: 5%;
padding: 20px;
text-align: center;
color: white;
border-radius: .5em;
}
#deep-work-container {
background-color: #103F53;
}
#shallow-work-container {
background-color: #b5730d;
}
.start-timer {
font-size: 1em;
padding: .5em 1em;
border-radius: .5em;
border: 1px solid gray;
}
code {
background-color: #e6e6e6;
padding: 2px 5px;
/* todo round corners, or just copy gutenberg editor styles */
}