forked from guyellis/toastmaster-timer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
toastmaster.css
94 lines (77 loc) · 1.16 KB
/
toastmaster.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
body
{
font-family: 'Segoe UI', sans-serif
}
.label {
font-size: 100%;
}
#body {
background-color: #efeeef;
clear: both;
padding-bottom: 35px;
}
span {
font-style: italic
}
#trafficlight
{
height: 600px;
line-height: 600px;
width: 100%;
margin-top: 10px;
text-align: center;
vertical-align: middle;
}
#green-light, #yellow-light, #red-light
{
font-size: xx-large;
text-align: right;
height: 46px;
line-height: 30px;
}
#red-light
{
background-color:#FF4040;
color:white;
}
#yellow-light
{
background-color:#FCDC3B;
}
#green-light
{
background-color:#A7DA7E;
}
.speech-type
{
padding:10px;
margin: 5px;
background-color: #E0EAF1;
color: #3E6D8E;
margin-bottom: 15px;
border-radius: 3px;
box-shadow: 3px 3px 5px #535353;
}
.speech-type:hover
{
background-color: #3E6D8E;
color: #E0EAF1;
cursor: pointer;
}
.active-speech
{
background-color: #acf;
}
footer {
clear: both;
background-color: #e2e2e2;
font-size: .8em;
height: 100px;
}
.content-wrapper {
margin: 0 auto;
max-width: 960px;
}
.float-left {
float: left;
}