-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery_css.css
56 lines (52 loc) · 991 Bytes
/
jquery_css.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
.container{
width: 100%;
height: 800px;
box-sizing: border-box;
position: absolute;
/* background-color: cornflowerblue; */
}
.header{
width: 100%;
height: 150px;
/* position: relative; */
box-sizing: border-box;
background-color: darkslateblue;
float: left;
}
.menu-bar{
width: 100%;
height: 50px;
box-sizing: border-box;
background-color: rgb(162, 170, 243);
float: left;
}
.menu-bar li{
}
.left-nav{
width: 12%;
height: 740px;
background-color: steelblue;
box-sizing: border-box;
float: left;
}
.content-area{
width:75% ;
height: 740px;
/* background-color: cadetblue; */
box-sizing: border-box;
float: left;
}
.right-nav{
width: 13%;
height: 740px;
background-color: steelblue;
box-sizing: border-box;
/* float: left; */
}
.footer{
width: 100%;
height: 50px;
background-color: darkslateblue;
box-sizing: border-box;
float: left;
}