-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.css
142 lines (124 loc) · 2.38 KB
/
test.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
background-color: #9f2b68;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: 0;
}
#container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
#clock {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 450px;
min-height: 650px;
border-radius: 16px;
border-radius: 26px;
background: linear-gradient(145deg, #bf40bf, #aa336a);
box-shadow: 5px 5px 10px #bf40bf, -5px -5px 10px #aa336a;
}
#container h4 {
color: #bf40bf;
margin-bottom: 20px;
font-weight: 600;
}
#buttons {
display: flex;
flex-direction: row;
color: #f3e5f5;
}
#timer-label {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #f3e5f5;
width: 350px;
height: 350px;
border-radius: 50%;
background: linear-gradient(-145deg, #c41e1e, #a51919);
box-shadow: 5px 5px 9px #a71919, -5px -5px 9px #c71f1f;
}
#break-label {
display: flex;
flex-direction: column;
margin: 20px;
}
#break {
display: flex;
flex-direction: row;
justify-content: space-around;
font-size: 30px;
font-weight: 600;
align-items: center;
}
#session-label {
display: flex;
flex-direction: column;
margin: 20px;
}
#session {
display: flex;
flex-direction: row;
justify-content: space-around;
font-size: 30px;
align-items: center;
font-weight: 600;
}
#time-left {
font-size: 90px;
font-weight: 700;
}
#start_stop {
font-size: 50px;
cursor: pointer;
border-radius: 50%;
background: linear-gradient(-145deg, #bf40bf, #9f2b68);
box-shadow: 6px 6px 11px #bf40bf, -6px -6px 11px #9f2b68;
margin-right: 10px;
}
#reset {
font-size: 50px;
cursor: pointer;
border-radius: 50%;
background: linear-gradient(-145deg, #bf40bf, #9f2b68);
box-shadow: 6px 6px 11px #bf40bf, -6px -6px 11px #9f2b68;
margin-left: 10px;
}
#break-increment {
cursor: pointer;
}
#break-decrement {
cursor: pointer;
}
#session-increment {
cursor: pointer;
}
#session-decrement {
cursor: pointer;
}
#title {
margin: 40px;
min-width: 85%;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 6px;
background-color: #9f2b68;
}