-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (45 loc) · 788 Bytes
/
style.css
File metadata and controls
45 lines (45 loc) · 788 Bytes
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
/*CSS reset settings here*/
*{
margin: 0px;
padding: 0px;
}
#wrapper{
width: 950px;
background-color: silver;
margin: 0px auto;
padding: 25px;
}
#header{
height: 150px;
background-color: green;
}
#navigation{
height: 300px;
width: 200px;
background-color: blue;
margin-top: 25px;
margin-right: 25px;
display: inline-block;
}
#main_content{
height: 400px;
width: 700px;
background-color: red;
margin-top: 25px;
padding: 10px;
display: inline-block;
vertical-align: top;
}
.subcontents{
height: 200px;
width: 210px;
background-color: yellow;
display: inline-block;
margin: 5px;
}
#advertisement{
height: 120px;
width: 660px;
background-color: purple;
margin: 15px 5px;
}