Robo-knowledge-web-theme 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/_includes/back_to_top.html +3 -0
- data/_includes/categories_fetcher.html +1 -0
- data/_includes/footer.html +22 -0
- data/_includes/navigation.html +5 -0
- data/_includes/posts_fetcher.html +2 -0
- data/_includes/search_categories_fetcher.html +1 -0
- data/_includes/search_tags_fetcher.html +1 -0
- data/_includes/tags_fetcher.html +1 -0
- data/_layouts/author.html +149 -0
- data/_layouts/authors_search_layout.html +28 -0
- data/_layouts/categories_search_layout.html +16 -0
- data/_layouts/default.html +17 -0
- data/_layouts/post.html +31 -0
- data/_layouts/posts_search_layout.html +49 -0
- data/_layouts/robo_content_layout.html +45 -0
- data/_layouts/robo_main_layout.html +353 -0
- data/_layouts/robo_search_layout.html +33 -0
- data/_layouts/tags_search_layout.html +16 -0
- data/_sass/content_page_styles.scss +211 -0
- data/_sass/general_colors.scss +142 -0
- data/_sass/general_shadows.scss +12 -0
- data/_sass/general_styles.scss +123 -0
- data/_sass/main.scss +3 -0
- data/_sass/main_page_colors.scss +80 -0
- data/_sass/main_page_styles.scss +741 -0
- data/_sass/search_page_styles.scss +94 -0
- metadata +69 -0
@@ -0,0 +1,741 @@
|
|
1
|
+
//主页Styles
|
2
|
+
.main_top_container {
|
3
|
+
width: 100%;
|
4
|
+
height: 350px;
|
5
|
+
|
6
|
+
position: relative;
|
7
|
+
overflow: hidden;
|
8
|
+
}
|
9
|
+
|
10
|
+
#total_space_container {
|
11
|
+
flex-grow: 1;
|
12
|
+
overflow-y: hidden;
|
13
|
+
|
14
|
+
display: flex;
|
15
|
+
z-index: 90;
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
.main_background_container {
|
20
|
+
position: absolute;
|
21
|
+
|
22
|
+
width: 100%;
|
23
|
+
height: 100%;
|
24
|
+
|
25
|
+
|
26
|
+
background-image: url("../images/middle_icon_png/icons.png");
|
27
|
+
background-size: contain;
|
28
|
+
background-position: center;
|
29
|
+
}
|
30
|
+
|
31
|
+
.main_last_time_update_container {
|
32
|
+
width: auto;
|
33
|
+
height: auto;
|
34
|
+
|
35
|
+
position: absolute;
|
36
|
+
top: 0;
|
37
|
+
right: 0;
|
38
|
+
padding: 10px;
|
39
|
+
|
40
|
+
align-items: end;
|
41
|
+
|
42
|
+
font-size: 20px;
|
43
|
+
}
|
44
|
+
|
45
|
+
.front_card {
|
46
|
+
border-radius: 15px 15px 0 0;
|
47
|
+
}
|
48
|
+
|
49
|
+
.header_robo_and_title {
|
50
|
+
position: absolute;
|
51
|
+
width: 100%;
|
52
|
+
height: 90%;
|
53
|
+
|
54
|
+
bottom: 0;
|
55
|
+
}
|
56
|
+
|
57
|
+
//打招呼Robo的Style
|
58
|
+
.robo_space {
|
59
|
+
position: absolute;
|
60
|
+
width: 40%;
|
61
|
+
height: 100%;
|
62
|
+
|
63
|
+
padding: 10px;
|
64
|
+
}
|
65
|
+
|
66
|
+
.robo_face {
|
67
|
+
width: 70%;
|
68
|
+
height: 95%;
|
69
|
+
|
70
|
+
background: url("../images/main_svgs/robo/RoboEntity.svg") no-repeat;
|
71
|
+
background-size: 100% 100%;
|
72
|
+
|
73
|
+
position: absolute;
|
74
|
+
bottom: -40px;
|
75
|
+
left: 10px;
|
76
|
+
}
|
77
|
+
|
78
|
+
#star_num1 {
|
79
|
+
|
80
|
+
|
81
|
+
margin-top: 20px;
|
82
|
+
margin-left: 500px;
|
83
|
+
|
84
|
+
|
85
|
+
transform: rotate(-90deg);
|
86
|
+
}
|
87
|
+
|
88
|
+
#star_num2 {
|
89
|
+
|
90
|
+
margin-top: 5px;
|
91
|
+
margin-left: 500px;
|
92
|
+
|
93
|
+
width: 15%;
|
94
|
+
height: 15%;
|
95
|
+
|
96
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
.title_space {
|
101
|
+
position: absolute;
|
102
|
+
width: 60%;
|
103
|
+
height: 100%;
|
104
|
+
|
105
|
+
margin-left: 40%;
|
106
|
+
|
107
|
+
padding: 10px;
|
108
|
+
}
|
109
|
+
|
110
|
+
#title_num1 {
|
111
|
+
font-size: 40px;
|
112
|
+
}
|
113
|
+
|
114
|
+
#title_num2 {
|
115
|
+
margin-left: 80px;
|
116
|
+
font-size: 70px;
|
117
|
+
}
|
118
|
+
|
119
|
+
#title_num3 {
|
120
|
+
font-size: 140px;
|
121
|
+
}
|
122
|
+
|
123
|
+
//为内容卡片分区并设置布局样式
|
124
|
+
#side_space {
|
125
|
+
flex: 3;
|
126
|
+
|
127
|
+
display: flex;
|
128
|
+
flex-direction: column;
|
129
|
+
align-items: center;
|
130
|
+
|
131
|
+
padding: 20px;
|
132
|
+
}
|
133
|
+
|
134
|
+
#main_space {
|
135
|
+
flex: 7;
|
136
|
+
|
137
|
+
display: flex;
|
138
|
+
flex-direction: column;
|
139
|
+
|
140
|
+
padding-left: 50px;
|
141
|
+
padding-right: 50px;
|
142
|
+
}
|
143
|
+
|
144
|
+
//侧边栏样式-标题样式
|
145
|
+
.side_bar_title_style {
|
146
|
+
margin-top: 10px;
|
147
|
+
margin-bottom: 5px;
|
148
|
+
|
149
|
+
font-size: 40px;
|
150
|
+
|
151
|
+
width: 260px;
|
152
|
+
height: 80px;
|
153
|
+
|
154
|
+
display: flex;
|
155
|
+
flex-direction: column;
|
156
|
+
justify-content: center;
|
157
|
+
align-items: center;
|
158
|
+
|
159
|
+
border-radius: 15px;
|
160
|
+
|
161
|
+
}
|
162
|
+
|
163
|
+
.bulletin_board_area_style {
|
164
|
+
|
165
|
+
margin-top: 5px;
|
166
|
+
|
167
|
+
width: 80%;
|
168
|
+
height: 300px;
|
169
|
+
|
170
|
+
display: flex;
|
171
|
+
flex-direction: column;
|
172
|
+
align-items: center;
|
173
|
+
|
174
|
+
position: relative;
|
175
|
+
|
176
|
+
}
|
177
|
+
|
178
|
+
.little_robo {
|
179
|
+
position: absolute;
|
180
|
+
z-index: 99;
|
181
|
+
|
182
|
+
bottom: 0;
|
183
|
+
left: 0;
|
184
|
+
|
185
|
+
width: 93px;
|
186
|
+
height: 153px;
|
187
|
+
}
|
188
|
+
|
189
|
+
.bulletin_board {
|
190
|
+
width: 85%;
|
191
|
+
height: 80%;
|
192
|
+
|
193
|
+
background-image: url("../images/main_svgs/bulletin-board/bulletin-board.svg");
|
194
|
+
|
195
|
+
background-size: contain;
|
196
|
+
background-position: center;
|
197
|
+
background-repeat: no-repeat;
|
198
|
+
|
199
|
+
display: flex;
|
200
|
+
flex-direction: column;
|
201
|
+
align-items: center;
|
202
|
+
}
|
203
|
+
|
204
|
+
.bulletin_inside_title {
|
205
|
+
|
206
|
+
width: 80%;
|
207
|
+
height: auto;
|
208
|
+
|
209
|
+
font-family: "Auto_Pen", sans-serif;
|
210
|
+
|
211
|
+
font-size: 30px;
|
212
|
+
|
213
|
+
text-align: center;
|
214
|
+
|
215
|
+
margin-top: 20px;
|
216
|
+
margin-bottom: 10px;
|
217
|
+
|
218
|
+
margin-top: 40px;
|
219
|
+
margin-bottom: 10px;
|
220
|
+
|
221
|
+
}
|
222
|
+
|
223
|
+
.bulletin_inside_content {
|
224
|
+
|
225
|
+
width: 80%;
|
226
|
+
height: auto;
|
227
|
+
|
228
|
+
font-family: "Auto_Pen", sans-serif;
|
229
|
+
|
230
|
+
font-size: 25px;
|
231
|
+
|
232
|
+
text-align: center;
|
233
|
+
|
234
|
+
margin-top: 10px;
|
235
|
+
|
236
|
+
padding-left: 10px;
|
237
|
+
padding-right: 10px;
|
238
|
+
|
239
|
+
}
|
240
|
+
|
241
|
+
.side_space_nav_space {
|
242
|
+
width: 85%;
|
243
|
+
height: auto;
|
244
|
+
|
245
|
+
padding: 20px;
|
246
|
+
|
247
|
+
display: flex;
|
248
|
+
flex-direction: column;
|
249
|
+
align-items: center;
|
250
|
+
}
|
251
|
+
|
252
|
+
.side_space_nav_button {
|
253
|
+
width: 80%;
|
254
|
+
height: 55px;
|
255
|
+
|
256
|
+
border-radius: 5px;
|
257
|
+
|
258
|
+
display: flex;
|
259
|
+
flex-direction: column;
|
260
|
+
justify-content: center;
|
261
|
+
align-items: center;
|
262
|
+
|
263
|
+
text-align: center;
|
264
|
+
|
265
|
+
margin-top: 10px;
|
266
|
+
margin-bottom: 10px;
|
267
|
+
}
|
268
|
+
|
269
|
+
|
270
|
+
.side_space_party_button {
|
271
|
+
position: relative;
|
272
|
+
|
273
|
+
width: 95%;
|
274
|
+
height: 80px;
|
275
|
+
|
276
|
+
border-radius: 10px;
|
277
|
+
|
278
|
+
margin-top: 10px;
|
279
|
+
margin-bottom: 10px;
|
280
|
+
}
|
281
|
+
|
282
|
+
.side_space_party_button_title {
|
283
|
+
position: absolute;
|
284
|
+
|
285
|
+
font-size: 20px;
|
286
|
+
|
287
|
+
top: 10px;
|
288
|
+
left: 10px;
|
289
|
+
}
|
290
|
+
|
291
|
+
.side_space_party_button_author {
|
292
|
+
position: absolute;
|
293
|
+
|
294
|
+
font-size: 15px;
|
295
|
+
|
296
|
+
bottom: 10px;
|
297
|
+
right: 10px;
|
298
|
+
}
|
299
|
+
|
300
|
+
.special_thanks_text {
|
301
|
+
width: 100%;
|
302
|
+
text-align: right;
|
303
|
+
}
|
304
|
+
|
305
|
+
.footer_btn_container {
|
306
|
+
width: 100%;
|
307
|
+
height: auto;
|
308
|
+
|
309
|
+
display: flex;
|
310
|
+
flex-direction: column;
|
311
|
+
align-items: flex-end;
|
312
|
+
}
|
313
|
+
|
314
|
+
.special_thanks_button {
|
315
|
+
|
316
|
+
width: auto;
|
317
|
+
height: auto;
|
318
|
+
|
319
|
+
margin-top: 10px;
|
320
|
+
|
321
|
+
padding: 5px;
|
322
|
+
|
323
|
+
text-align: end;
|
324
|
+
|
325
|
+
}
|
326
|
+
|
327
|
+
//主页内容布局样式
|
328
|
+
.github_repository_link_title {
|
329
|
+
|
330
|
+
width: 100%;
|
331
|
+
height: 80px;
|
332
|
+
|
333
|
+
margin-top: 40px;
|
334
|
+
|
335
|
+
display: flex;
|
336
|
+
flex-direction: row;
|
337
|
+
align-items: center;
|
338
|
+
|
339
|
+
position: relative;
|
340
|
+
}
|
341
|
+
|
342
|
+
.github_title {
|
343
|
+
|
344
|
+
width: auto;
|
345
|
+
height: 100%;
|
346
|
+
|
347
|
+
padding: 10px;
|
348
|
+
|
349
|
+
font-size: 40px;
|
350
|
+
|
351
|
+
display: flex;
|
352
|
+
flex-direction: column;
|
353
|
+
justify-content: center;
|
354
|
+
align-items: center;
|
355
|
+
}
|
356
|
+
|
357
|
+
.github_opening {
|
358
|
+
width: 40px;
|
359
|
+
height: 40px;
|
360
|
+
}
|
361
|
+
|
362
|
+
.github_origin_repository_btn {
|
363
|
+
width: 30%;
|
364
|
+
height: 40px;
|
365
|
+
|
366
|
+
display: flex;
|
367
|
+
flex-direction: column;
|
368
|
+
justify-content: center;
|
369
|
+
|
370
|
+
|
371
|
+
padding-left: 10px;
|
372
|
+
padding-right: 10px;
|
373
|
+
|
374
|
+
position: absolute;
|
375
|
+
right: 10px;
|
376
|
+
|
377
|
+
border-radius: 5px;
|
378
|
+
|
379
|
+
}
|
380
|
+
|
381
|
+
.github_origin_btn_text {
|
382
|
+
font-size: 18px;
|
383
|
+
}
|
384
|
+
|
385
|
+
#github_share {
|
386
|
+
position: absolute;
|
387
|
+
right: 5px;
|
388
|
+
}
|
389
|
+
|
390
|
+
.github_repository_link_container {
|
391
|
+
|
392
|
+
width: 100%;
|
393
|
+
height: auto;
|
394
|
+
|
395
|
+
padding: 10px;
|
396
|
+
|
397
|
+
display: flex;
|
398
|
+
flex-wrap: wrap;
|
399
|
+
justify-content: flex-start;
|
400
|
+
|
401
|
+
|
402
|
+
min-height: 0;
|
403
|
+
|
404
|
+
}
|
405
|
+
|
406
|
+
.github_repository_item {
|
407
|
+
|
408
|
+
width: 29%;
|
409
|
+
height: 200px;
|
410
|
+
|
411
|
+
border-radius: 10px;
|
412
|
+
|
413
|
+
margin: 20px;
|
414
|
+
|
415
|
+
position: relative;
|
416
|
+
|
417
|
+
}
|
418
|
+
|
419
|
+
.git_item_title {
|
420
|
+
|
421
|
+
width: 99%;
|
422
|
+
|
423
|
+
position: absolute;
|
424
|
+
|
425
|
+
font-size: 25px;
|
426
|
+
|
427
|
+
top: 3px;
|
428
|
+
left: 5px;
|
429
|
+
}
|
430
|
+
|
431
|
+
.git_item_des {
|
432
|
+
|
433
|
+
width: 60%;
|
434
|
+
height: auto;
|
435
|
+
|
436
|
+
position: absolute;
|
437
|
+
|
438
|
+
font-size: 15px;
|
439
|
+
|
440
|
+
top: 40px;
|
441
|
+
left: 5px;
|
442
|
+
}
|
443
|
+
|
444
|
+
.git_item_author {
|
445
|
+
position: absolute;
|
446
|
+
|
447
|
+
font-size: 15px;
|
448
|
+
|
449
|
+
bottom: 23px;
|
450
|
+
left: 5px;
|
451
|
+
}
|
452
|
+
|
453
|
+
.git_item_click {
|
454
|
+
position: absolute;
|
455
|
+
|
456
|
+
bottom: 3px;
|
457
|
+
left: 5px;
|
458
|
+
}
|
459
|
+
|
460
|
+
.git_item_state {
|
461
|
+
position: absolute;
|
462
|
+
|
463
|
+
font-size: 20px;
|
464
|
+
|
465
|
+
bottom: 5px;
|
466
|
+
right: 25px;
|
467
|
+
}
|
468
|
+
|
469
|
+
.git_open_img {
|
470
|
+
width: 20px;
|
471
|
+
height: 20px;
|
472
|
+
|
473
|
+
position: absolute;
|
474
|
+
|
475
|
+
border-radius: 99px;
|
476
|
+
|
477
|
+
bottom: 5px;
|
478
|
+
right: 2px;
|
479
|
+
}
|
480
|
+
|
481
|
+
.last_time_update_git {
|
482
|
+
width: 100%;
|
483
|
+
height: auto;
|
484
|
+
|
485
|
+
padding: 10px;
|
486
|
+
|
487
|
+
display: flex;
|
488
|
+
flex-direction: column;
|
489
|
+
justify-content: center;
|
490
|
+
align-items: center;
|
491
|
+
}
|
492
|
+
|
493
|
+
//"签"海无涯-专栏
|
494
|
+
.tag_sea_area {
|
495
|
+
width: 100%;
|
496
|
+
height: auto;
|
497
|
+
|
498
|
+
display: flex;
|
499
|
+
flex-direction: column;
|
500
|
+
align-items: center;
|
501
|
+
}
|
502
|
+
|
503
|
+
.tag_sea_title {
|
504
|
+
width: 20%;
|
505
|
+
height: 50px;
|
506
|
+
|
507
|
+
padding-left: 8px;
|
508
|
+
padding-right: 8px;
|
509
|
+
|
510
|
+
font-size: 30px;
|
511
|
+
|
512
|
+
border-radius: 5px;
|
513
|
+
|
514
|
+
display: flex;
|
515
|
+
justify-content: center;
|
516
|
+
align-items: center;
|
517
|
+
|
518
|
+
text-align: center;
|
519
|
+
}
|
520
|
+
|
521
|
+
#tag_sea_container {
|
522
|
+
|
523
|
+
width: 100%;
|
524
|
+
height: auto;
|
525
|
+
|
526
|
+
padding: 10px;
|
527
|
+
|
528
|
+
display: flex;
|
529
|
+
flex-wrap: wrap;
|
530
|
+
justify-content: flex-start;
|
531
|
+
}
|
532
|
+
|
533
|
+
.tag_sea_item {
|
534
|
+
|
535
|
+
width: auto;
|
536
|
+
|
537
|
+
height: 30px;
|
538
|
+
|
539
|
+
padding: 10px;
|
540
|
+
|
541
|
+
margin: 8px;
|
542
|
+
|
543
|
+
border-radius: 5px;
|
544
|
+
|
545
|
+
color: #444444;
|
546
|
+
|
547
|
+
display: flex;
|
548
|
+
justify-content: center;
|
549
|
+
align-items: center;
|
550
|
+
|
551
|
+
text-align: center;
|
552
|
+
|
553
|
+
}
|
554
|
+
|
555
|
+
.tag_sea_item:hover {
|
556
|
+
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
|
557
|
+
}
|
558
|
+
|
559
|
+
//博客区域
|
560
|
+
.blog_title_space {
|
561
|
+
|
562
|
+
width: 95%;
|
563
|
+
height: 100px;
|
564
|
+
|
565
|
+
padding: 10px 5px;
|
566
|
+
|
567
|
+
margin-top: 70px;
|
568
|
+
margin-left: 7px;
|
569
|
+
|
570
|
+
border-bottom: 1px solid #444444;
|
571
|
+
|
572
|
+
display: flex;
|
573
|
+
flex-direction: row;
|
574
|
+
justify-content: flex-start;
|
575
|
+
align-items: center;
|
576
|
+
text-align: center;
|
577
|
+
|
578
|
+
position: relative;
|
579
|
+
|
580
|
+
}
|
581
|
+
|
582
|
+
.blog_ch_title {
|
583
|
+
|
584
|
+
font-size: 70px;
|
585
|
+
|
586
|
+
height: auto;
|
587
|
+
flex: 15;
|
588
|
+
|
589
|
+
}
|
590
|
+
|
591
|
+
.blog_nav {
|
592
|
+
font-size: 35px;
|
593
|
+
|
594
|
+
height: auto;
|
595
|
+
flex: 75;
|
596
|
+
|
597
|
+
margin-top: 30px;
|
598
|
+
|
599
|
+
display: flex;
|
600
|
+
flex-direction: row;
|
601
|
+
justify-content: flex-start;
|
602
|
+
align-items: baseline;
|
603
|
+
}
|
604
|
+
|
605
|
+
.blog_nav_item {
|
606
|
+
|
607
|
+
height: 100%;
|
608
|
+
|
609
|
+
flex: 1;
|
610
|
+
|
611
|
+
text-align: center;
|
612
|
+
|
613
|
+
display: flex;
|
614
|
+
justify-content: center;
|
615
|
+
align-items: center;
|
616
|
+
}
|
617
|
+
|
618
|
+
.nav_svg:hover {
|
619
|
+
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
|
620
|
+
}
|
621
|
+
|
622
|
+
.blog_container {
|
623
|
+
|
624
|
+
width: 100%;
|
625
|
+
height: auto;
|
626
|
+
|
627
|
+
padding: 10px;
|
628
|
+
|
629
|
+
display: flex;
|
630
|
+
flex-direction: column;
|
631
|
+
justify-content: flex-start;
|
632
|
+
}
|
633
|
+
|
634
|
+
.blog_item {
|
635
|
+
|
636
|
+
width: 95%;
|
637
|
+
|
638
|
+
height: auto;
|
639
|
+
|
640
|
+
border-bottom: 1px solid #a0a0a0;
|
641
|
+
|
642
|
+
display: flex;
|
643
|
+
flex-direction: column;
|
644
|
+
justify-content: flex-start;
|
645
|
+
align-items: center;
|
646
|
+
}
|
647
|
+
|
648
|
+
.blog_item_title {
|
649
|
+
|
650
|
+
margin: 10px;
|
651
|
+
|
652
|
+
width: 100%;
|
653
|
+
|
654
|
+
font-size: 35px;
|
655
|
+
}
|
656
|
+
|
657
|
+
.blog_item_content {
|
658
|
+
|
659
|
+
width: 90%;
|
660
|
+
|
661
|
+
height: auto;
|
662
|
+
|
663
|
+
font-size: 20px;
|
664
|
+
|
665
|
+
margin: 10px;
|
666
|
+
|
667
|
+
padding: 5px;
|
668
|
+
}
|
669
|
+
|
670
|
+
.blog_item_footer {
|
671
|
+
width: 100%;
|
672
|
+
|
673
|
+
display: flex;
|
674
|
+
flex-direction: row;
|
675
|
+
justify-content: flex-start;
|
676
|
+
}
|
677
|
+
|
678
|
+
.blog_item_author {
|
679
|
+
text-align: start;
|
680
|
+
flex: 1;
|
681
|
+
}
|
682
|
+
|
683
|
+
.blog_item_time {
|
684
|
+
text-align: end;
|
685
|
+
flex: 1;
|
686
|
+
}
|
687
|
+
|
688
|
+
//分类区域
|
689
|
+
.classify_container {
|
690
|
+
width: 100%;
|
691
|
+
height: auto;
|
692
|
+
|
693
|
+
padding: 10px;
|
694
|
+
|
695
|
+
display: flex;
|
696
|
+
flex-wrap: wrap;
|
697
|
+
justify-content: flex-start;
|
698
|
+
}
|
699
|
+
|
700
|
+
.classify_item {
|
701
|
+
|
702
|
+
width: 150px;
|
703
|
+
height: 90px;
|
704
|
+
|
705
|
+
font-size: 20px;
|
706
|
+
|
707
|
+
margin: 5px 10px;
|
708
|
+
|
709
|
+
border-radius: 8px;
|
710
|
+
|
711
|
+
display: flex;
|
712
|
+
justify-content: center;
|
713
|
+
align-items: center;
|
714
|
+
text-align: center;
|
715
|
+
|
716
|
+
}
|
717
|
+
|
718
|
+
//页脚样式
|
719
|
+
.main_page_footer {
|
720
|
+
|
721
|
+
width: 100%;
|
722
|
+
height: 100px;
|
723
|
+
|
724
|
+
margin-top: 70px;
|
725
|
+
|
726
|
+
display: flex;
|
727
|
+
justify-content: center;
|
728
|
+
align-items: center;
|
729
|
+
text-align: center;
|
730
|
+
}
|
731
|
+
|
732
|
+
.main_page_footer_item {
|
733
|
+
|
734
|
+
margin: 5px;
|
735
|
+
|
736
|
+
}
|
737
|
+
|
738
|
+
.footer_img {
|
739
|
+
width: 15px;
|
740
|
+
height: 15px;
|
741
|
+
}
|