-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.scss
95 lines (79 loc) · 1.66 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
.clearfix:after {
content: " "; /* Older browser do not support empty content */
visibility: hidden;
display: block;
height: 0;
clear: both;
}
body {
margin:0;
font-family: 'Raleway', sans-serif;
background:#3498db;
-webkit-transition:all 0.2s;
}
.countdown {
text-align: center;
}
.seconds {
font-size: 350px;
color:white;
text-shadow:5px 5px 0 rgba(0,0,0,0.05);
-webkit-transition:all 0.3s;
}
.buttons div {
width:75px;
height:75px;
cursor: pointer;
float: left;
margin: 20px;
border-radius: 50%;
box-shadow: 1px 7px 15px rgba(0, 0, 0, 0.35), inset 3px 0 2px rgba(255,255,255,0.4), inset 0 3px 0px rgba(255,255,255,0.5), inset -2px -3px 0px rgba(24, 23, 22, 0.6);
text-align: center;
padding: 25px;
color: white;
}
input {
border: none;
width: 400px;
height: 50px;
margin: 40px;
display: block;
clear: both;
margin: 0 auto;
background: #bdc3c7;
color: black;
font-size: 20px;
}
label {
clear:both;
}
.clearClock {
background: #c0392b;
color: white;
}
.mirrorClock {
background: #f1c40f;
color: white;
}
h1 {
text-align: center;
color: white;
}
.buttons {
width: 58%;
margin: 0 auto;
text-align: center;
}
.fifteen {
background: #2ecc71;
}
.lunchBreak{
background: #9b59b6;
}
.afternoonBreak {
background: #e67e22;
}
.flipscreen {
-webkit-transform: rotateY(180deg);
transform:rotateY(180deg);
}