-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgiftweb.css
More file actions
180 lines (146 loc) · 2.23 KB
/
giftweb.css
File metadata and controls
180 lines (146 loc) · 2.23 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
html {
background: #e7e7e7;
}
#footer,
#info {
font-size: .8em;
}
#footer {
padding-top: 50px;
}
#info {
margin-top: -50px;
}
/* powered is nested inside of footer, so it starts out at .8em, we just want it
* a little bit smaller, hence the .9em. Since it's nested it ends up at
* .8 * .9 = .72em
*/
#powered {
font-size: .9em;
}
#footer p,
#info p {
padding: 0;
margin: 0;
}
ul.options {
list-style-type: none;
padding-left: 5px;
}
.options li {
margin: 10px 0px;
}
#header,
#footer {
text-align: center;
clear: left;
}
#info {
text-align: right;
margin-top: -30;
}
#mainContent {
margin-left: 15px;
float: left;
}
#mainContent h1 {
font-size: 1.4em;
font-weight: bold;
margin-bottom: 5px;
}
form .formLabel {
width: 170px;
float: left;
clear: left;
text-align: right;
margin-right: 10px;
}
form p {
margin: 0px;
padding: 5px;
}
#UserInfo .textInput {
width: 175px;
}
.note {
font-size: .7em;
margin: 0 0 0 180px;
padding-bottom: 0;
}
input#submit {
margin-left: 180px;
}
/* Navigation Bars */
#adminNav,
#mainNav {
margin: 0;
padding: 0;
list-style: none;
border-bottom: 1px dashed #999;
width: 170px;
float: left;
clear: both;
}
#mainNav {
margin-top: -30px;
}
#adminNav a,
#mainNav a {
color: #000;
font-size: .85em;
text-decoration: none;
border: 1px dashed #999;
border-bottom: none;
padding: 7px 5px 7px 30px;
display: block;
height: 1.25em;
line-height: 1.25em;
background: #e7e7e7 url(images/link.png) no-repeat left center;
}
#adminNav a:hover,
#mainNav a:hover {
font-weight: bold;
background: #82f511 url(images/go.png) no-repeat 5px 50%;
}
#adminNav {
margin-top: 10px;
}
#adminNav a {
background-color: #e0e0e0;
height: 2.5em;
}
body#myPurchases a#myPurchasesLink,
body#otherUsers a#otherUsersLink,
body#prefs a#prefsLink,
body#myList a#myListLink {
background: #f4f4f4 url(images/bg_here.png) no-repeat 5px 50%;
padding-right: 15px;
padding-lefT: 30px;
font-weight: bold;
}
/* End Navigation Bars */
a:link {
color: blue;
}
a:visited {
color: blue;
}
a:hover {
color: red;
}
a:active {
color: black;
}
a {
text-decoration: none;
}
/* fix IE */
#adminNav li,
#mainNav li {
display: inline;
}
* html ul#adminNav a,
* html ul#mainNav a {
height: 1px;
}
/* end IE Fixes */