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