-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
140 lines (120 loc) · 2.56 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
Document : main
Created on : Jan 6, 2011, 6:46:23 PM
Author : jvolkmar
Description:
Purpose of the stylesheet follows.
*/
/*
TODO customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
root {
display: block;
}
body {
background: #abd;
/* background-image: url('http://t3.gstatic.com/images?q=tbn:ANd9GcQM75kCq3bzsjarOrmfX-_yus70HehIXdpPUm_Gww0y-WhbeU707w');*/
background-image: url('img/bg/basn0g02.png');
margin:0;
background-attachment: fixed;
}
a {
text-decoration: none;
}
a:hover {
color: darkorchid;
}
.main {
width: 700px;
margin: 0 auto 20px auto;
/* padding: 0;*/
/* background:black;*/
/* min-height: 500px;*/
}
.topMenu {
font-family: Georgia,'Times New Roman',times,serif;
font-size: 16px;
text-align: center;
margin-left:auto;
margin-right:auto;
font-style: normal;
padding:5px;
background:black;
}
a.topMenuItem {
width: 100px;
color: black;
text-decoration: none;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border: 2px solid white;
position:relative;
display:inline-block;
background: white;
margin:4px; padding:2px;
}
a.topMenuItem:hover{
color: white;
background: black;
}
a.topMenuItemSel {
color: white;
background:black;
cursor:default;
border-color:#fff;
}
a.topMenuItemSel:hover {
color: white;
}
.mainTitle {
background: #fff;
margin: 40px 0 40px 0;
font-family: Georgia,'Times New Roman',times,serif;
font-style: normal;
font-size: 20px;
text-align:center;
font-weight: bold;
color:black;
padding:10px;
border:2px solid #88a;
}
.mainBlock {
background: #aac;
color:black;
margin: 10px;
padding:2px;
font-family: Arial,Helvetica,sans-serif;
margin-bottom:2em;
font-size:14px;
}
/*.mainBlockTitle {
color:#660099;
font-family: Georgia,'Times New Roman',times,serif;
font-size: 25px;
padding-top:10px;
padding-left:10px;
}*/
.mainBlockTitle {
background:none repeat scroll 0 0 white;
color:black;
font-family:Georgia,'Times New Roman',times,serif;
font-size:19px;
padding:2px 10px;
margin-bottom: 5px;
}
.mainFooter {
text-align:center;
color:gray;
font-size: 12px;
font-family: Arial,Helvetica,sans-serif;
}
.mainBlock p {
background:white;color:black;
padding:5px;
margin:5px;
margin-bottom: 10px;
border-bottom:2px solid #222255;
border-right:2px solid #222255;
line-height: 1.6em;
}