-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
211 lines (183 loc) · 3.39 KB
/
app.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap');
html {
height: 100%;
/*width: 100vw;*/
}
body{
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
#container {
position: relative;
width: 90%;
max-width: 300px;
margin: 0 auto;
text-align: center;
}
#counterr {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
/*font-color: '#ffffff';*/
font-weight: 800;
font-size: 120px;
/*color: #F7958E;*/
color: #ccc;
-webkit-transition: color 1s;
-moz-transition: color 1s;
-ms-transition: color 1s;
-o-transition: color 1s;
transition: color 1s;
}
#minutes {
font-size: 32px;
font-weight: 400;
}
#status{
height: 10vh;
font-size: 16px;
font-weight: 400;
color: #9298A1;
}
#tess {
color: #F9F9FA;
}
.clear:after, ul li:after {
content: ".";
display: block;
height: 0;
font-size: 0;
clear: both;
visibility: hidden;
line-height: 0;
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body {
height: auto;
width: auto;
font-family: 'Open Sans';
color: #F9F9FA;
background: #354051;
}
#button_block{
position: relative;
top: 3vh;
}
.button1 input {
position: relative;
padding: 16px 24px 16px 24px;
border-radius: 37px;
border: none;
background-color: #1ECB8D;
color: #ffffff;
font-size: 16px;
font-weight: 400;
letter-spacing: 1px;
-webkit-transition: .4s;
transition: .4s;
}
/*
#switch_block{
position: relative;
display: inline-block;
width: 100px;
height: 70px;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}*/
/* Hide default HTML checkbox *//*
.switch input {
opacity: 0;
width: 0;
height: 0;
}*/
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
/* Style the header with a grey background and some padding */
.header {
min-height: 10%;
overflow: hidden;
background-color: transparent;
padding: 10px 10px;
}
/* Style the header links */
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 5px;
border-radius: 4px;
}
/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
font-size: 25px;
font-weight: bold;
}
/* Change the background color on mouse-over */
.header a:hover {
background-color: #ddd;
color: black;
}
/* Style the active/current link*/
.header a.active {
background-color: dodgerblue;
color: white;
}
/* Float the link section to the right */
.header-right {
float: right;
}
.header img {
width: auto;
height: 12vw;
max-height: 100px;
}