-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
204 lines (200 loc) · 3.11 KB
/
Copy pathindex.css
File metadata and controls
204 lines (200 loc) · 3.11 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
@charset "UTF-8";
body {
margin: 0;
padding: 0;
font-family: "游ゴシック Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
line-height: 1.6;
font-size: 18px;
}
#header-container {
margin: 0 auto;
width: 960px;
}
header {
background-color: #000;
}
#head-inner {
padding: 25px 0;
}
h1 {
font-size: 26px;
font-weight: bold;
padding: 10px 0 0 0;
margin: 0;
color: #f3e6d2;
}
h1 a {
font-weight: bold;
color: #f3e6d2;
text-decoration: none;
}
h1 a:hover {
color: #e8f3f9;
text-decoration: none;
}
.description {
line-height: 1.2;
color: #f3f2eb;
margin: 0.5em 0 1em 0;
}
h2 {
font-size: 22px;
margin: 0;
padding: 4px 0;
border-bottom: 1px solid #999;
}
#content-wrapper {margin: 0 auto;
width: 960px;}
main {
color: #333;
float: left; width: 70%;}
#inner {
padding: 20px 0 0 0;
}
ul {
margin: 0 0 0 1em;
padding: 0;
}
li {
list-style: disc;
}
p {
margin: 1em 0;
}
img {
max-width: 100%;
height: auto;
border: 0;
}
hr {
border-width: 1px 0 0 0;
border-style: solid;
border-color: #ccc;
height: 1px;
}
a {
font-weight: normal;
}
aside {
float: right; width: 28%;}
#middle-inner {
padding: 20px 0 20px 0;
}
.side-title {
padding: 7px 16px 7px 16px;
background-color: #f1f1f1;
color: #333;
font-weight: bold;
border: 1px solid #ccc;
margin-bottom: 10px;
border-radius: 5px;
}
.side {
margin: 0 0 10px 0;
padding: 2px 8px 8px 7px;
background-color: #fcfcfc;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.side ul {
margin: 0 0 0 10px;
padding: 0;
}
.side li {
list-style: none;
margin-bottom: 0.5em;
}
.side li a {
text-decoration: none;
color: #214555;
}
.side li a:hover {
text-decoration: underline;
}
footer {
font-size: 15px;
height: 100px;
clear: both;
text-align: center;
}
blockquote {
border: 1px solid #ccc;
padding: 5px;
margin: 10px;
}
@media screen and (max-width: 767px) {
#header-container {
margin: 0;
width: 100%;
}
header {
}
#head-inner {
padding: 25px 10px;
background-color: #214555;
}
.description {
}
#content-wrapper {
margin: 0;
width: 100%;}
main {
width: 100%;
color: #333;
}
#inner {
padding: 20px 10px 0 10px;
}
aside {
width: 100%;
}
#middle-inner {
padding: 10px 10px 20px 10px;
}
h1 {
font-size: 20px;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
h4 {
font-size: 14px;
}
}
.snow {
/*雪の色*/
color: snow;
/*雪の大きさ*/
font-size: 10px;
/*初期位置*/
position: fixed;
top: -5%;
/*雪を適当な幅で降らせる*/
text-shadow:
5vw -100px 2px,
10vw -400px 3px,
20vw -500px 4px,
30vw -580px 1px,
39vw -250px 2px,
42vw -340px 5px,
56vw -150px 2px,
63vw -180px 0,
78vw -220px 4px,
86vw -320px 9px,
94vw -170px 7px;
/*雪アニメーション1*/
animation: roll 5s linear infinite;
}
/*2つめの雪アニメーション*/
.snow2nd{animation: anim 8s linear infinite;}
@keyframes roll {
0% {transform:rotate(0deg);}
90% {opacity:1;}
100% {transform:rotate(20deg);top:100%;opacity:0;}
}
@keyframes anim {
100% {color:transparent;top:150%;}
}