-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout1.css
More file actions
73 lines (71 loc) · 1.17 KB
/
layout1.css
File metadata and controls
73 lines (71 loc) · 1.17 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
body {
font-family: "Times New Roman", Georgia, Serif;
}
.continer{
max-width: 960px;
width: 96%;
max-height: auto;
margin-left: auto;
margin-right: auto;
margin-top: -19px;
margin-bottom: 0px;
background-color: #F4F2E8;
display: block;
}
.header{
height: 100px;
background-color: #000;
text-align: center;
margin-bottom: 10px;
}
.nav{
background-color: #9FB672;
line-height: 50px;
margin-bottom: 10px;
}
.nav li {
display: inline-block;
padding: 5px 20px;
margin-left: 10px;
margin-right: 10px;
}
.nav li:hover {
background-color: #F4F2E8;
}
.nav li a{
text-decoration: none;
color: #262D5E;
font-size: 18px;
}
.sidebar{
width: 15%;
background-color: #CEC6BA;
float: left;
text-align: left;
overflow: hidden;
margin-bottom: 10px;
}
.sidebar li {
display: block;
}
.sidebar li:hover {
background-color: #F4F2E8;
}
.sidebar li a{
text-decoration: none;
color: #262D5E;
}
.main {
float: right;
background-color: #E1DBD0;
width: 81%;
color: #262D5E;
text-align: center;
overflow: hidden;
margin-bottom: 10px;
}
.footer {
height: 50px;
background-color: #E1566E;
margin-top: 150px;
}