-
Notifications
You must be signed in to change notification settings - Fork 6
/
timerAdd.css
75 lines (64 loc) · 1.06 KB
/
timerAdd.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
body {
background-color: black;
color: white;
font-family: 'Lato', sans-serif;
font-weight: bold;
font-size: 10px
}
a:link {
color: white;
text-decoration: none
}
/* visited link */
a:visited {
color: white;
text-decoration: none
}
/* mouse over link */
a:hover {
color: #567fa0;
text-decoration: none
}
select {
border: 1px solid #444;
padding:.75em 1em .5em 1em;
box-shadow: 0 0px 0px 0 rgba(0,0,0,1);
background-color:#000;
color:white;
height: 20px;
margin: 0px 20px 0px 20px;
}
#addTimerArea {
width: 100%;
height: 120px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
option {
background:#000;
border-top:1px solid #444;
padding:.1em 1em .1m 1em;
}
input[type=button] {
float: right;
border: 1px solid #444;
padding: .5em 1em .5em 1em;
box-shadow: 0 0px 0px 0 rgba(0,0,0,1);
background-color:#000;
color:white;
height: 25px;
margin: 0px 20px 0px 20px;
}
table {
border-collapse: collapse;
width: 350px;
border: 1px solid white;
}
th, td {
text-align: left;
padding: 8px;
}