-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
119 lines (99 loc) · 1.48 KB
/
main.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
/* CSS Document */
a{
text-decoration:none;
color:#000;
font-weight:bold;
font-style:italic;
}
body{
width:102%;
}
h2{
margin:auto auto;
text-align:center;
padding: 5px;
}
.error{
color:#F00;
text-align:center;
}
input, select{
max-width : 400px;
}
#header{
background:url(images/header_bg.jpg) repeat-x;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size:24px;
line-height:100px;
vertical-align:middle;
padding: 10px 0px 0 10px;
height:100px;
width:100%;
margin: -10px -10px 0px -10px;
border-bottom:#000 solid 10px;
overflow:hidden;
}
#header img{
float: left;
}
#header form{
float: right;
margin-right: 50px;
height:30px;
}
#menu{
color:#999;
background-color:#000;
height:35px;
border-radius: 10px;
width:800px;
margin:-10px auto 0 auto;
overflow:hidden;
text-align:center;
}
#menu ul{
width:800px;
margin:auto auto;
list-style-type:none;
padding :0;
}
#currLi{
color:#FFF !important;
}
#menu ul li{
padding-top:10px;
padding-right:25px;
padding-left:25px;
display:inline-block;
text-align:center;
font-weight:bold;
}
#menu ul li a{
color:#999;
}
#wrapper{
padding-top:10px;
width:800px;
margin: auto auto;
}
#wrapper table{
margin:auto auto;
width:80%;
}
#wrapper table th{
background:#999;
padding: 5px;
border:#FFF 3px solid;
}
#wrapper table td{
background: #CCC;
padding: 5px;
border:#FFF 3px solid;
}
#wrapper table .alt{
background:#CCC;
}
.npPages a{
padding-right:10px;
padding-left:10px;
}