-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout5.css
More file actions
83 lines (83 loc) · 1.51 KB
/
layout5.css
File metadata and controls
83 lines (83 loc) · 1.51 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
81
82
83
*{
padding: 0px;
margin: 0px;
font-family: Arial;
box-sizing: border-box ;
}
#logo-nav-div{
width: 100%;
min-height: 50px;
background-color: lightgray;
margin-bottom: 10px;
}
#logo-div{
width: 50%;
min-height: 50px;
/* background-color:gray; */
float: left;
line-height: 50px;
padding-left: 2%;
}
#nav-div{
width: 50%;
min-height: 50px;
/* background-color:gray; */
float: right;
line-height: 50px;
}
.clearfix::after{
content: '';
display: block;
clear: both;
}
#header-banner-div{
width: 100%;
min-height: 100px;
background-color: lightgray;
text-align: center;
line-height: 100px;
margin-bottom: 10px;
}
#introtxt-div{
width: 100%;
min-height: 80px;
background-color: lightgray;
text-align: center;
line-height: 80px;
margin-bottom: 10px;
}
#main-div{
width: 100%;
/* background-color:gray; */
min-height: 400px;
margin-bottom: 10px;
}
#box{
width: 20%;
min-height: 400px;
text-align: center;
line-height: 400px;
float: left;
background-color: lightgray;
}
#main-div #box:nth-child(2){
margin-left: 6%;
margin-right: 6%;
}
#main-div #box:nth-child(3){
margin-right: 8%;
}
#footer-div{
width: 100%;
min-height: 50px;
background-color: lightgray;
text-align: center;
line-height: 50px;
}
#wrapper-div{
margin: auto;
width: 80%;
}
body{
background-color: chartreuse;
}