-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout7.css
More file actions
80 lines (80 loc) · 1.46 KB
/
layout7.css
File metadata and controls
80 lines (80 loc) · 1.46 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
74
75
76
77
78
79
80
*{
padding: 0px;
margin: 0px;
font-family: Arial;
box-sizing: border-box ;
}
#wrapper-div{
background-color: orange;
width: 60%;
min-height: 100px;
margin: auto;
}
#logo-nav-div{
width: 100%;
min-height: 50px;
background-color: lightgray;
}
#logo-div{
width: 50%;
min-height: 50px;
/* background-color: red; */
float: left;
padding-left: 2%;
line-height: 50px;
}
#nav-div{
width: 50%;
min-height: 50px;
/* background-color:green; */
float: right;
text-align: center;
line-height: 50px;
}
.clearfix::after{
content: '';
display: block;
clear: both;
}
.row{
width: 100%;
min-height: 100px;
/* background-color: red; */
margin-top: 10px;
}
.col{
width: 20%;
min-height: 100px;
background-color: lightgray;
float: left;
}
.col:nth-child(2), .col:nth-child(3){
margin-left: 5%;
margin-right: 5%;
}
#boxes{
width: 100%;
min-height: 150px;
/* background-color: red; */
margin-top: 10px;
}
#boxes .box{
width: 30%;
float: left;
min-height: 150px;
background-color: lightgray;
text-align: center;
line-height: 150px;
}
#boxes .box:nth-child(2){
margin-left: 5%;
margin-right: 5%;
}
#footer-div{
width: 100%;
min-height: 50px;
background-color: lightgray;
margin-top: 10px;
text-align: center;
line-height: 50px;
}