-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
81 lines (75 loc) · 1.32 KB
/
style.scss
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
* {
box-sizing: border-box;
border-radius: 5px;
}
.App {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 0;
background: #e9e9e9;
}
#clock {
display: flex;
width: 500px;
background: #333;
padding: 20px;
color: #fff;
font-weight: bold;
font-family: sans-serif;
& div > div {
display: flex;
align-items: center;
&:nth-child(3) {
background: #000;
padding: 0.25rem;
}
> div {
margin: 0.5rem;
}
i {
cursor: pointer;
transition: transform 0.3s ease-in;
&:hover {
transform: scale(1.05);
}
&:active {
transform: scale(0.75);
}
}
}
#session-length,
#break-length {
width: 25.8px;
display: flex;
justify-content: center;
}
.second-column {
margin-left: 1.1rem;
#display {
align-self: center;
background: #000;
display: flex;
flex-direction: column;
width: 180px;
div:first-child {
align-self: flex-start;
}
div:last-child {
align-self: center;
font-size: 1.5rem;
margin-top: 0.5rem;
}
}
#start_stop {
margin-top: 0.5rem;
}
#buttons {
background: #939393;
display: flex;
justify-content: space-around;
}
}
}