-
Notifications
You must be signed in to change notification settings - Fork 3
/
base.css
101 lines (87 loc) · 1.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
html, body {
margin: 0;
background: #ffebb8;
font-family: "Yu Gothic Medium","YuGothic Medium", YuGothic, "Yu Gothic","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
body {
min-width: 900px;
}
#header {
width: 100%;
height: 60px;
background-color: #FFF;
position: fixed;
}
.row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
.col, .col-auto {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.l-header_logo {
margin-left: 30px;
display: inline-block;
margin-left: 10px;
padding: 5px 0;
width: 160px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.l-header_nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.l-header_links {
display: block;
padding: 16px 0;
height: 60px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 24px;
font-size: 1.5rem;
font-weight: 700;
}
.l-header_links a {
display: inline-block;
margin-right: 2em;
text-decoration: none;
color: inherit;
}
#footer {
background: #73533b;
color: white;
padding: 3rem;
text-align: center;
}
#footer .old {
margin: 1rem 0;
}
#footer .old a {
color: white;
margin: 0 1rem;
}