-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (83 loc) · 1.31 KB
/
style.css
File metadata and controls
91 lines (83 loc) · 1.31 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
84
85
86
87
88
89
90
*{
margin: 0px;
padding: 0px;
}
#wrapper{
width:100%;
height:100%;
max-width:1000px;
}
#header{
vertical-align:top;
margin:0px 0px 20px 0px;
min-height: 125px;
width:860px;
background-color: green;
}
#navigation{
display:inline-block;
vertical-align:top;
min-height: 300px;
width: 200px;
background-color: blue;
margin:0px 19px 0px 0px;
}
#main_content{
min-height: 400px;
width: 700px;
background-color: red;
}
#subcontents{
display:inline-block;
vertical-align:right;
height:350px;
width:640px;
margin-right:20px;
background-color: red;
}
.subcontents{
display:inline-block;
margin: 12px 12px 12px 12px;
height: 180px;
width: 180px;
background-color: yellow
}
.advertisement{
min-height: 100px;
width: 600px;
margin:0px 0px 0px 12px;
background-color: purple;
}
@media only screen and (max-width: 480px){
#navigation{
display:none;
}
.subcontents{
width:65%;
}
#subcontents{
height:85%;
}
}
@media only screen and (min-width:481px) and (max-width:1023px){
#navigation{
display:none;
}
#header{
width:100%
}
#subcontents{
width:100%;
height:75%;
min-width:580px;
}
.subcontents{
width:45.5%;
}
.advertisement{
width:97.5%;
/* margin:10px 10px 10px 10px; */
}
}
/* @media only screen and (min-width:1024px){
} */