-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.css
executable file
·78 lines (59 loc) · 1.5 KB
/
base.css
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
@charset "UTF-8";
/* base.css
--------------------------------------------------------------
:: CSS Index
1 : Global Reset
2 : body
: link
3 : general
4 : usual classes
--------------------------------------------------------------
2010.08.04 : designed by Sig.
-------------------------------------------------------------- */
@import "reset.css";
@import "layout.css";
/* contents
-------------------------------------------------------------- */
@media screen and (max-width: 1024px){
#contents {
width: 735px;
}
#GoogleMaps {
width: 720px;
}
}
@media screen and (max-width: 800px){
#contents {
width: 490px;
}
#GoogleMaps {
width: 485px;
}
}
@media screen and (max-width: 640px),
screen and (-webkit-min-device-pixel-ratio: 2),
screen and (-webkit-min-device-pixel-ratio: 1.5){
header hgroup {
text-align: center;
margin: 0 0 0 40px;
padding: 20px 0px;
}
#mapSwitch:after {
content: none;
width: 0;
}
#mapSwitch li:nth-child(1) {
width: 70px;
}
#mapSwitch li a {
width: 70px;
}
#contents {
width:240px;
margin: 0 0 0 80px;
}
#GoogleMaps {
width: 230px;
height: 230px;
}
}