-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
177 lines (151 loc) · 2.43 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
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
body
{
margin:0;
padding:0;
background:url(gravel.png);
font-family: reef,arial,sans-serif;
font-size:14px;
}
#header
{
background: #D3D3D3;
font-size:110%;
height:75px;
margin:10px;
border-radius: 5px;
}
#nav ul
{
border-radius: 5px;
margin:10px;
padding:4px;
text-align: center;
list-style-type: none;
background: #D3D3D3;
}
#nav ul li
{
display: inline;
}
#nav ul li a
{
text-decoration: none;
margin:5px;
padding:.2em 1em;
vertical-align: middle;
}
#nav ul li a:hover
{
background-color: #000;
color:#f3f3f3;
border-radius:5px;
}
.active
{
background-color: #FFA500;
color:#000;
border-radius:5px;
}
.main
{
border-radius: 5px;
margin:10px;
padding: 20px;
background:#fff;
font-size: 120%;
margin-right:350px;
}
.sidebar
{
border-radius: 5px;
margin: 0px 10px 10px 10px;
padding: 20px;
background: url(vv.jpg);
font-size: 120%;
float:right;
width:290px;
clear:right;
}
#footer
{
border-radius: 5px;
padding:10px;
margin:10px;
font-size: 90%;
text-align: center;
background: #FFA500;
clear:both;
}
#footer ul
{
margin:10px;
padding:4px;
text-align: center;
list-style-type: none;
}
#footer ul li
{
display: inline;
}
#footer ul li a
{
text-decoration: none;
margin:5px;
padding:.2em .1em;
vertical-align: middle;
color:#fff;
}
#footer ul li a:hover
{
text-decoration: underline;
}
#header h3
{
margin-top: 0px;
text-align: center;
font-size: 140%;
padding: 0 .1em ;
}
#header img
{
width:64px;;
height:64px;
border-radius: 50%;
margin-left: 45px;
margin-top: -44px;
}
.sidebar h3
{
font-size: 130%;
padding:0px .2em;
color:brown;
margin:10px 5px 10px 88px;
}
.sidebar form
{
margin: 10px;
padding:.1em;
}
.sidebar form input
{
border-radius: 5px;
margin:10px;
border: transparent;
font-size: 75%;
margin-left: 52px;
height:23px;
}
.sidebar form button
{
border-radius: 5px;
margin:10px;
border: transparent;
font-size: 75%;
margin-left: 82px;
height:29px;
}
.sidebar form button:hover
{
background-color: green;
color:black;
}