-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
131 lines (100 loc) · 1.66 KB
/
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Set all margin and padding to 0 */
* {
margin: 0;
padding: 0;
}
/* ---------- Parental Styles BEGIN ---------- */
body {
background-color: #f4f4f4;
font-family: "Open Sans", Arial sans-serif;
}
#container {
padding: 40px;
height: auto;
}
#page_body {
display: none;
height: auto;
position: relative;
}
#header {
height: auto;
position: relative;
font-size: 150%;
margin-bottom: 40px;
display: none;
}
.italicise {
font-style: italic;
}
/* ---------- Navbar Styles BEGIN ---------- */
.navbar {
text-align: center;
overflow: auto;
}
.menu_home {
float: left;
}
.menu_info {
float: right;
margin-left: 20px;
}
.menu_archive {
float: right;
margin-left: 20px;
}
.navbar li {
display: inline-block;
}
a:link {
color: #000000;
text-decoration: none;
}
a:hover {
color: #000000;
text-decoration: underline;
cursor: pointer;
}
a:visited {
color: #000000;
}
/* ---------- Body Styles BEGIN ---------*/
/* ---------- Working Styles BEGIN ---------- */
/* ---------- Archive Styles BEGIN -----------*/
#archiveTable th {
text-align: left;
vertical-align: top;
font-weight: 600;
padding-right: 10px;
}
#archiveTable td {
text-align: left;
padding-right: 10px;
padding-top: 10px;
vertical-align: top;
}
#itemTable th {
text-align: left;
font-weight: 600;
padding-right: 10px;
padding-top: 10px;
}
#itemTable td {
padding-top: 10px;
}
/* ---------- Home Page Styles BEGIN ---------- */
#homeImg1 {
width: 100%;
}
/* ---------- Footer Styles BEGIN ---------- */
#footer {
display: none;
position: relative;
height: auto;
z-index: 10;
margin-top: 40px;
}
#footer p {
font-style: italic;
text-align: right;
}