-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (95 loc) · 1.85 KB
/
style.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
@import url('https://fonts.googleapis.com/css?family=Bangers');
@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
@import url('https://fonts.googleapis.com/css?family=Raleway:200');
* {
margin: 0;
padding: 0;
border: none;
}
body {
background: #f9f9f9;
font-family: 'Bangers', cursive;
}
#container {
width: 960px;
margin: 0 auto;
}
.top {
width: 100%;
height: 50px;
background: #fff;
border-bottom: 1px solid #d4d8d9;
}
.top #container h1 {
text-transform: uppercase;
color: #00aeef;
text-align: center;
font-weight: 600;
line-height: 50px;
letter-spacing: 2px;
}
.top #container h1 span {
font-size: 12px;
color: #d4d8d9;
text-transform: none;
font-family: 'Indie Flower', cursive;
letter-spacing: 1px;
}
p.total {
display: inline-block;
padding: 5px;
font-family: 'Raleway', sans-serif;
}
input.free{
background: #fff;
outline: none;
border: 1px solid #ccc;
padding: 5px 10px;
margin-top: 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
display: block;
}
input[type=time]::-webkit-clear-button {
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
-ms-appearance:none;
appearance: none;
margin: -10px;
}
.without_ampm::-webkit-datetime-edit-ampm-field {
display: none;
}
input.time {
background: #ccc;
border: 1px solid #ccc;
color: #000;
padding: 5px 10px;
outline: none;
margin-top: 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.controlBtn {
outline: none;
padding: 10px;
border-radius: 10px;
background-color: green;
color: white;
font-family: arial;
}
.controlBtn.started {
background-color: red;
}
.timeBtn {
outline: none;
padding: 10px;
border-radius: 10px;
background-color: yellow;
}
.timeBtn.hide {
display: none;
}