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