-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
executable file
·74 lines (62 loc) · 1.2 KB
/
style.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
/* CSS Document */
body {
min-height: 400px;
margin-bottom: 100px;
clear: both;
}
td, th {
border: 1px solid #ddd;
padding: 8px;
}
tr:nth-child(even){background-color: #f2f2f2;}
tr:hover {background-color: #ddd;}
th {
padding-top: 12px;
padding-bottom: 12px;
text-align: center;
background-color: rgb(105, 85, 25);
color: blanchedalmond;
}
header {
font-size: medium;
background-color: #E8E8E8;
text-align: center;
padding: 1px;
}
a, .btn {
padding: 0px 20px 5px 20px;
background-color: lightslategrey;
text-decoration: none;
color: blanchedalmond;
line-height: 1;
vertical-align: middle;
border-right: 2px solid blanchedalmond;
font-size: 1.1em;
font-weight: bold;
border-radius: 3px;
text-align: center;
display: inline-block;
margin-top: 0.8%;
}
.btn {
border: none
}
a:hover {
color: black;
background-color: rgb(195, 143, 11);
}
.btn:hover {
color: black;
background-color: rgb(195, 143, 11);
}
footer {
position:fixed;
left: 0;
bottom: 0;
width: 100%;
color: black;
text-align: center;
font-size: small;
font-weight: bold;
background-color: #E8E8E8;
}