質問編集履歴
1
内容の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -190,13 +190,97 @@
|
|
190
190
|
|
191
191
|
@media screen and (min-width:1025px){
|
192
192
|
|
193
|
-
|
193
|
+
#Icons{
|
194
|
+
|
195
|
+
position: fixed;
|
196
|
+
|
197
|
+
right: 15px;
|
198
|
+
|
199
|
+
bottom: 5px;
|
200
|
+
|
201
|
+
}
|
202
|
+
|
203
|
+
.icon{
|
204
|
+
|
205
|
+
list-style-type:none;
|
206
|
+
|
207
|
+
text-align: center;
|
208
|
+
|
209
|
+
width: 60px;
|
210
|
+
|
211
|
+
height: 60px;
|
212
|
+
|
213
|
+
margin: 5px 0px;
|
214
|
+
|
215
|
+
border-radius: 15%;
|
216
|
+
|
217
|
+
background-color: rgba(34, 36, 39, 0.9);
|
218
|
+
|
219
|
+
box-shadow: 2px 2px 3px gray;
|
220
|
+
|
221
|
+
}
|
222
|
+
|
223
|
+
.icon:hover {
|
224
|
+
|
225
|
+
cursor: pointer;
|
226
|
+
|
227
|
+
text-decoration: none;
|
228
|
+
|
229
|
+
text-align: center;
|
230
|
+
|
231
|
+
transition: transform .2s;
|
232
|
+
|
233
|
+
transform-origin: center;
|
234
|
+
|
235
|
+
transform: scale(0.9, 0.9);
|
236
|
+
|
237
|
+
}
|
238
|
+
|
239
|
+
.icon svg{
|
240
|
+
|
241
|
+
width: 50px;
|
242
|
+
|
243
|
+
height: auto;
|
244
|
+
|
245
|
+
stroke: #fff;
|
246
|
+
|
247
|
+
stroke-width: 5px;
|
248
|
+
|
249
|
+
fill: none;
|
250
|
+
|
251
|
+
}
|
252
|
+
|
253
|
+
.icon a:hover{
|
254
|
+
|
255
|
+
text-decoration: none;
|
256
|
+
|
257
|
+
cursor: pointer;
|
258
|
+
|
259
|
+
}
|
260
|
+
|
261
|
+
.icon p{
|
262
|
+
|
263
|
+
font-size: 9px;
|
264
|
+
|
265
|
+
padding: 0px;
|
266
|
+
|
267
|
+
margin: 0px;
|
268
|
+
|
269
|
+
margin-top: -10px;
|
270
|
+
|
271
|
+
color: #fff;
|
272
|
+
|
273
|
+
}
|
274
|
+
|
275
|
+
}
|
276
|
+
|
277
|
+
@media screen and (min-width:640px) and (max-width:1024px){
|
194
278
|
|
195
279
|
//スマホデザインと同じ(サイズ以外)ため省略
|
196
280
|
|
197
|
-
|
281
|
+
}
|
198
|
-
|
282
|
+
|
199
|
-
|
283
|
+
@media screen and (max-width:639px) {
|
200
284
|
|
201
285
|
#Icons{
|
202
286
|
|
@@ -280,8 +364,6 @@
|
|
280
364
|
|
281
365
|
}
|
282
366
|
|
283
|
-
|
284
|
-
|
285
367
|
}
|
286
368
|
|
287
369
|
|