forked from not-an-aardvark/rng-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (72 loc) · 1005 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
78
79
80
81
82
83
84
85
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #333;
font-family: sans-serif;
color: #f6f6f6;
}
input {
background-color: #444;
color: #f6f6f6;
}
#highlight {
background-color: #f00;
}
#wrapper {
margin: 0 auto;
width: 820px;
}
.head {
margin-bottom: 10px;
text-align: center;
}
.genfive,
.genfour,
.options {
margin: 20px 0;
padding: 20px;
background-color: #333;
box-shadow: 0 1px 3px 1px #1c1c1c;
}
.genfive,
.genfour {
width: 400px;
height: 370px;
}
.genfive {
float: left;
}
.genfour {
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 #1c1c1c;
cursor: pointer;
}
.start {
width: 83px;
}
#gen-5-time-remaining,
#gen-4-time-remaining-1,
#gen-4-time-remaining-2 {
padding: 10px 0;
color: #f00;
}