forked from not-an-aardvark/rng-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (65 loc) · 937 Bytes
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #f6f6f6;
font-family: sans-serif;
color: #222;
}
#wrapper {
margin: 0 auto;
width: 820px;
}
.head {
margin-bottom: 10px;
text-align: center;
}
#one-timer,
#two-timers,
.options {
margin: 20px 0;
padding: 20px;
background-color: #fff;
box-shadow: 0 1px 3px 1px #ccc;
}
.alert {
background-color: #ff7f7f !important;
}
#one-timer{
width: 400px;
height: 350px;
float: left;
}
#two-timers{
width: 400px;
height: 350px;
float: right;
}
.options {
clear: both;
}
.start,
.update {
margin-top: 10px;
padding: 10px 20px;
border: 0;
border-radius: 3px;
text-transform: uppercase;
color: #fff;
background-color: #0077ff;
}
.start:hover,
.update:hover {
background-color: #000;
box-shadow: 0 1px 3px 1px #ccc;
cursor: pointer;
}
.start {
width: 83px;
}
#one-timer-time-remaining,
#two-timers-time-remaining {
color: #f00;
}