-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
98 lines (87 loc) · 1.32 KB
/
index.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
div.input, legend{
margin-left: 150px;
padding: 5px;
}
div.form{
clear: both;
}
#lists-container{
float: left;
border: 1px solid black;
}
label{
text-align: right;
width: auto;
}
legend{
padding: 5px;
}
thead button{
background-color: transparent;
}
h2{
font-size: 1.2em;
}
/* Table formatting */
table, table tr, table tr td{
vertical-align: middle;
}
tbody tr{
background-color: #EFEFFF;
font-size: 1.2em;
}
tbody tr.addnew{
background-color: white;
}
/* Zebra striping */
.odd{
background-color: #E0E0FF;
}
/* Turn lists into columns */
div.list{
width: 40em;
float: left;
padding: 10px;
}
/* Buttons */
button.open-form, button.close-form{
float: left;
}
button{
margin-left: 5px;
margin-right: 5px;
}
/* Clearfix */
.clearfix{
clear: both;
}
/* Infocolumn */
section#infoColumn{
width: 40em;
float: left;
padding: 10px;
}
/* Link colours. */
.link a:link,
.link a:visited,
.link a:active{
color: #19962d;
text-decoration: none;
font-weight: bold;
}
.link a:hover,
.link a:visited:hover,
.link a:active:hover{
color: #19962d;
}
/* Unavailable link colors */
.unavailable .link a:link,
.unavailable .link a:hover,
.unavailable .link a:active,
.unavailable .link a:visited,
.unavailable .link a:visited:hover,
.unavailable .link a:active:hover{
color: red;
text-decoration: none;
font-weight: normal;
}