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
| /*
| ===============================
| @Import Function
| ===============================
| */
| /*
| ===============================
| @Import Mixins
| ===============================
| */
| /*Basic*/
| .my-gallery img {
| width: 100%;
| height: auto; }
|
| .my-gallery figcaption {
| display: none; }
|
| /*Advance */
| .demo-gallery {
| width: 100%;
| height: auto;
| float: left; }
| .demo-gallery a {
| -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
| -webkit-touch-callout: none;
| display: block;
| float: left;
| line-height: 0; }
|
| a.demo-gallery__img--main {
| width: auto;
| height: auto; }
|
| .demo-gallery a img {
| width: 100%;
| padding: 4px;
| border-radius: 8px; }
|
| .demo-gallery figure {
| display: none; }
|
| .demo-gallery__title {
| line-height: 14px;
| font-size: 14px;
| opacity: 0.8;
| margin-top: 5px;
| width: 100%;
| float: left; }
|
| .share-buttons {
| text-align: center;
| position: relative;
| margin: 0 0 24px; }
| .share-buttons h2 {
| text-align: center;
| border: 0; }
| .share-buttons a {
| -moz-border-radius: 2px;
| border-radius: 2px;
| display: inline-block;
| padding: 10px 20px;
| margin: 10px;
| color: #fff;
| text-decoration: none;
| background: #5AAF63;
| font-size: 16px;
| line-height: 22px;
| cursor: pointer; }
| .share-buttons a:hover {
| opacity: 0.7; }
|
| #tweet {
| background: #0096c4; }
|
| #like {
| background: #3b5998; }
|
| #gplus {
| background: #d34836; }
|
| .img-1, .img-2, .img-3 {
| width: 33.333333%; }
|
| .img-4 {
| width: 66.666667%; }
|
| .img-5, .img-6, .img-7 {
| width: 33.333333%; }
|
| @media (max-width: 767px) {
| .img-1 {
| width: 100%; }
| .img-2, .img-3 {
| width: 50%; }
| .img-4 {
| width: 100%; }
| .img-5, .img-6 {
| width: 50%; }
| .img-7 {
| width: 100%; } }
|
| @media (max-width: 575px) {
| .img-1, .img-2, .img-3, .img-4, .img-5, .img-6, .img-7 {
| width: 100%; } }
|
|