CV-Portfolio 0.0.1
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/LICENSE.txt +21 -0
- data/README.md +53 -0
- data/_config.yml +111 -0
- data/_includes/backtotop.html +1 -0
- data/_includes/clients.html +37 -0
- data/_includes/header.html +2 -0
- data/_includes/javascripts.html +4 -0
- data/_includes/mapbox-init.html +2 -0
- data/_includes/mapbox.html +3 -0
- data/_includes/meta.html +28 -0
- data/_includes/photoswipe.html +40 -0
- data/_includes/preloader.html +4 -0
- data/_includes/review.html +79 -0
- data/_includes/scroll.html +2 -0
- data/_includes/sidebar.html +68 -0
- data/_includes/skills.html +31 -0
- data/_includes/testimonials.html +54 -0
- data/_layouts/contact.html +20 -0
- data/_layouts/default.html +18 -0
- data/_layouts/post.html +21 -0
- data/_layouts/project.html +23 -0
- data/_layouts/resume.html +18 -0
- data/_sass/style.scss +3353 -0
- data/assets/css/app/_button.scss +70 -0
- data/assets/css/app/_cases.scss +35 -0
- data/assets/css/app/_clients.scss +22 -0
- data/assets/css/app/_contact.scss +74 -0
- data/assets/css/app/_form.scss +264 -0
- data/assets/css/app/_general.scss +106 -0
- data/assets/css/app/_navbar.scss +98 -0
- data/assets/css/app/_news.scss +112 -0
- data/assets/css/app/_other.scss +58 -0
- data/assets/css/app/_popup.scss +167 -0
- data/assets/css/app/_portfolio.scss +269 -0
- data/assets/css/app/_sections.scss +265 -0
- data/assets/css/app/_sidebar.scss +181 -0
- data/assets/css/app/_single-news.scss +445 -0
- data/assets/css/app/_single-project.scss +97 -0
- data/assets/css/app/_testimonials.scss +147 -0
- data/assets/css/app/_timeline.scss +78 -0
- data/assets/css/app/_typography.scss +253 -0
- data/assets/css/main.scss +9 -0
- data/assets/css/style.css.map +30 -0
- data/assets/css/style.scss +43 -0
- data/assets/css/variables/_media.scss +8 -0
- data/assets/css/variables/_mixins.scss +59 -0
- data/assets/css/variables/_vars.scss +48 -0
- data/assets/css/vendors/bootstrap.css +10819 -0
- data/assets/css/vendors/bootstrap.css.map +1 -0
- data/assets/css/vendors/bootstrap.min.css +7 -0
- data/assets/css/vendors/bootstrap.min.css.map +1 -0
- data/assets/css/vendors/default-skin.css +482 -0
- data/assets/css/vendors/magnific-popup.css +351 -0
- data/assets/css/vendors/photoswipe.css +179 -0
- data/assets/css/vendors/simplebar.css +211 -0
- data/assets/css/vendors/simplebar.min.css +1 -0
- data/assets/css/vendors/swiper.min.css +12 -0
- data/assets/icons/dark/icon-app.svg +4 -0
- data/assets/icons/dark/icon-design.svg +5 -0
- data/assets/icons/dark/icon-dev.svg +12 -0
- data/assets/icons/dark/icon-education.svg +10 -0
- data/assets/icons/dark/icon-experience.svg +4 -0
- data/assets/icons/dark/icon-photo.svg +7 -0
- data/assets/icons/dark/icon-quote.svg +3 -0
- data/assets/icons/emoji/emoji-angry.svg +15 -0
- data/assets/icons/emoji/emoji-bad.svg +15 -0
- data/assets/icons/emoji/emoji-crazy.svg +15 -0
- data/assets/icons/emoji/emoji-happy-2.svg +12 -0
- data/assets/icons/emoji/emoji-happy-3.svg +16 -0
- data/assets/icons/emoji/emoji-happy.svg +15 -0
- data/assets/icons/emoji/emoji-in-love.svg +15 -0
- data/assets/icons/emoji/emoji-laughing.svg +15 -0
- data/assets/icons/emoji/emoji-nerd.svg +16 -0
- data/assets/icons/emoji/emoji-pressure.svg +17 -0
- data/assets/icons/emoji/emoji-sad-2.svg +15 -0
- data/assets/icons/emoji/emoji-sad.svg +13 -0
- data/assets/icons/emoji/emoji-shocked-2.svg +15 -0
- data/assets/icons/emoji/emoji-shocked-3.svg +11 -0
- data/assets/icons/emoji/emoji-shocked.svg +14 -0
- data/assets/icons/emoji/emoji-sweating.svg +10 -0
- data/assets/icons/emoji/emoji-thinking.svg +13 -0
- data/assets/icons/emoji/emoji-wink.svg +12 -0
- data/assets/icons/feather.css +871 -0
- data/assets/icons/feather.woff +0 -0
- data/assets/icons/feather.woff2 +0 -0
- data/assets/icons/icomoon.svg +45 -0
- data/assets/icons/icomoon.ttf +0 -0
- data/assets/icons/icomoon.woff +0 -0
- data/assets/icons/icon-app.svg +14 -0
- data/assets/icons/icon-at.svg +3 -0
- data/assets/icons/icon-calendar.svg +3 -0
- data/assets/icons/icon-design.svg +27 -0
- data/assets/icons/icon-dev.svg +54 -0
- data/assets/icons/icon-download.svg +3 -0
- data/assets/icons/icon-education.svg +10 -0
- data/assets/icons/icon-envelope.svg +3 -0
- data/assets/icons/icon-experience.svg +4 -0
- data/assets/icons/icon-like-fill.svg +3 -0
- data/assets/icons/icon-like.svg +3 -0
- data/assets/icons/icon-location.svg +3 -0
- data/assets/icons/icon-news.svg +3 -0
- data/assets/icons/icon-phone.svg +3 -0
- data/assets/icons/icon-photo.svg +45 -0
- data/assets/icons/icon-quote.svg +9 -0
- data/assets/icons/icon-reply.svg +3 -0
- data/assets/icons/icon-send.svg +3 -0
- data/assets/icons/icon-skype.svg +3 -0
- data/assets/icons/icon-user.svg +6 -0
- data/assets/icons/style-custome-icons.css +132 -0
- data/assets/images/280x204.jpg +0 -0
- data/assets/images/400x550.jpg +0 -0
- data/assets/images/433x240.jpg +0 -0
- data/assets/images/560x340.jpg +0 -0
- data/assets/images/958x400.jpg +0 -0
- data/assets/images/_icon-map-pic.svg +15 -0
- data/assets/images/apple-store.png +0 -0
- data/assets/images/avatar-1.png +0 -0
- data/assets/images/avatar-2.png +0 -0
- data/assets/images/avatar-3.png +0 -0
- data/assets/images/avatar-4.png +0 -0
- data/assets/images/clients/logo-1-color.png +0 -0
- data/assets/images/clients/logo-1-white.png +0 -0
- data/assets/images/clients/logo-2-color.png +0 -0
- data/assets/images/clients/logo-2-white.png +0 -0
- data/assets/images/clients/logo-3-color.png +0 -0
- data/assets/images/clients/logo-3-white.png +0 -0
- data/assets/images/clients/logo-4-color.png +0 -0
- data/assets/images/clients/logo-4-white.png +0 -0
- data/assets/images/clients/logo-5-color.png +0 -0
- data/assets/images/clients/logo-5-white.png +0 -0
- data/assets/images/clients/logo-6-color.png +0 -0
- data/assets/images/clients/logo-6-white.png +0 -0
- data/assets/images/clients/logo-7-color.png +0 -0
- data/assets/images/clients/logo-7-white.png +0 -0
- data/assets/images/clients/logo-8-color.png +0 -0
- data/assets/images/clients/logo-8-white.png +0 -0
- data/assets/images/clients/logo-9-color.png +0 -0
- data/assets/images/clients/logo-9-white.png +0 -0
- data/assets/images/cover.png +0 -0
- data/assets/images/cv-portfolio.jpg +0 -0
- data/assets/images/favicons/apple-touch-icon-114x114.png +0 -0
- data/assets/images/favicons/apple-touch-icon-144x144.png +0 -0
- data/assets/images/favicons/apple-touch-icon-57x57.png +0 -0
- data/assets/images/favicons/apple-touch-icon-72x72.png +0 -0
- data/assets/images/favicons/favicon.png +0 -0
- data/assets/images/icon-map-pic.svg +30 -0
- data/assets/images/icon-quote.svg +3 -0
- data/assets/images/logotype.svg +9 -0
- data/assets/images/my-avatar.png +0 -0
- data/assets/images/photoswiper/default-skin.png +0 -0
- data/assets/images/photoswiper/default-skin.svg +1 -0
- data/assets/images/photoswiper/preloader.gif +0 -0
- data/assets/images/play-store.png +0 -0
- data/assets/images/splash.gif +0 -0
- data/assets/img/posts/400x550.jpg +0 -0
- data/assets/img/posts/958x400.jpg +0 -0
- data/assets/js/common.js +737 -0
- data/assets/js/jquery-3.4.1.min.js +2 -0
- data/assets/js/mapbox.init.js +32 -0
- data/assets/js/plugins.js +33367 -0
- data/assets/js/plugins.min.js +106 -0
- data/assets/php/form-contact.php +95 -0
- data/assets/php/phpmailer/COMMITMENT +46 -0
- data/assets/php/phpmailer/LICENSE +502 -0
- data/assets/php/phpmailer/README.md +218 -0
- data/assets/php/phpmailer/SECURITY.md +28 -0
- data/assets/php/phpmailer/VERSION +1 -0
- data/assets/php/phpmailer/composer.json +55 -0
- data/assets/php/phpmailer/get_oauth_token.php +144 -0
- data/assets/php/phpmailer/language/phpmailer.lang-am.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ar.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-az.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ba.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-be.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-bg.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ca.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ch.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-cs.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-da.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-de.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-el.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-eo.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-es.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-et.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fa.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fi.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fo.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fr.php +29 -0
- data/assets/php/phpmailer/language/phpmailer.lang-gl.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-he.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-hi.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-hr.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-hu.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-id.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-it.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ja.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ka.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ko.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-lt.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-lv.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-mg.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ms.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-nb.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-nl.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-pl.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-pt.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-pt_br.php +29 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ro.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ru.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sk.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sl.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sr.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sv.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-tl.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-tr.php +30 -0
- data/assets/php/phpmailer/language/phpmailer.lang-uk.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-vi.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-zh.php +28 -0
- data/assets/php/phpmailer/language/phpmailer.lang-zh_cn.php +28 -0
- data/assets/php/phpmailer/src/Exception.php +39 -0
- data/assets/php/phpmailer/src/OAuth.php +138 -0
- data/assets/php/phpmailer/src/PHPMailer.php +4502 -0
- data/assets/php/phpmailer/src/POP3.php +419 -0
- data/assets/php/phpmailer/src/SMTP.php +1326 -0
- data/assets/videos/video-1.mp4 +0 -0
- data/assets/videos/video-2.mp4 +0 -0
- metadata +283 -0
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
/* Magnific Popup CSS */
|
|
2
|
+
.mfp-bg {
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
z-index: 1042;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
position: fixed;
|
|
10
|
+
background: #0b0b0b;
|
|
11
|
+
opacity: 0.8; }
|
|
12
|
+
|
|
13
|
+
.mfp-wrap {
|
|
14
|
+
top: 0;
|
|
15
|
+
left: 0;
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
z-index: 1043;
|
|
19
|
+
position: fixed;
|
|
20
|
+
outline: none !important;
|
|
21
|
+
-webkit-backface-visibility: hidden; }
|
|
22
|
+
|
|
23
|
+
.mfp-container {
|
|
24
|
+
text-align: center;
|
|
25
|
+
position: absolute;
|
|
26
|
+
width: 100%;
|
|
27
|
+
height: 100%;
|
|
28
|
+
left: 0;
|
|
29
|
+
top: 0;
|
|
30
|
+
padding: 0 8px;
|
|
31
|
+
box-sizing: border-box; }
|
|
32
|
+
|
|
33
|
+
.mfp-container:before {
|
|
34
|
+
content: '';
|
|
35
|
+
display: inline-block;
|
|
36
|
+
height: 100%;
|
|
37
|
+
vertical-align: middle; }
|
|
38
|
+
|
|
39
|
+
.mfp-align-top .mfp-container:before {
|
|
40
|
+
display: none; }
|
|
41
|
+
|
|
42
|
+
.mfp-content {
|
|
43
|
+
position: relative;
|
|
44
|
+
display: inline-block;
|
|
45
|
+
vertical-align: middle;
|
|
46
|
+
margin: 0 auto;
|
|
47
|
+
text-align: left;
|
|
48
|
+
z-index: 1045; }
|
|
49
|
+
|
|
50
|
+
.mfp-inline-holder .mfp-content,
|
|
51
|
+
.mfp-ajax-holder .mfp-content {
|
|
52
|
+
width: 100%;
|
|
53
|
+
cursor: auto; }
|
|
54
|
+
|
|
55
|
+
.mfp-ajax-cur {
|
|
56
|
+
cursor: progress; }
|
|
57
|
+
|
|
58
|
+
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
|
59
|
+
cursor: -moz-zoom-out;
|
|
60
|
+
cursor: -webkit-zoom-out;
|
|
61
|
+
cursor: zoom-out; }
|
|
62
|
+
|
|
63
|
+
.mfp-zoom {
|
|
64
|
+
cursor: pointer;
|
|
65
|
+
cursor: -webkit-zoom-in;
|
|
66
|
+
cursor: -moz-zoom-in;
|
|
67
|
+
cursor: zoom-in; }
|
|
68
|
+
|
|
69
|
+
.mfp-auto-cursor .mfp-content {
|
|
70
|
+
cursor: auto; }
|
|
71
|
+
|
|
72
|
+
.mfp-close,
|
|
73
|
+
.mfp-arrow,
|
|
74
|
+
.mfp-preloader,
|
|
75
|
+
.mfp-counter {
|
|
76
|
+
-webkit-user-select: none;
|
|
77
|
+
-moz-user-select: none;
|
|
78
|
+
user-select: none; }
|
|
79
|
+
|
|
80
|
+
.mfp-loading.mfp-figure {
|
|
81
|
+
display: none; }
|
|
82
|
+
|
|
83
|
+
.mfp-hide {
|
|
84
|
+
display: none !important; }
|
|
85
|
+
|
|
86
|
+
.mfp-preloader {
|
|
87
|
+
color: #CCC;
|
|
88
|
+
position: absolute;
|
|
89
|
+
top: 50%;
|
|
90
|
+
width: auto;
|
|
91
|
+
text-align: center;
|
|
92
|
+
margin-top: -0.8em;
|
|
93
|
+
left: 8px;
|
|
94
|
+
right: 8px;
|
|
95
|
+
z-index: 1044; }
|
|
96
|
+
.mfp-preloader a {
|
|
97
|
+
color: #CCC; }
|
|
98
|
+
.mfp-preloader a:hover {
|
|
99
|
+
color: #FFF; }
|
|
100
|
+
|
|
101
|
+
.mfp-s-ready .mfp-preloader {
|
|
102
|
+
display: none; }
|
|
103
|
+
|
|
104
|
+
.mfp-s-error .mfp-content {
|
|
105
|
+
display: none; }
|
|
106
|
+
|
|
107
|
+
button.mfp-close,
|
|
108
|
+
button.mfp-arrow {
|
|
109
|
+
overflow: visible;
|
|
110
|
+
cursor: pointer;
|
|
111
|
+
background: transparent;
|
|
112
|
+
border: 0;
|
|
113
|
+
-webkit-appearance: none;
|
|
114
|
+
display: block;
|
|
115
|
+
outline: none;
|
|
116
|
+
padding: 0;
|
|
117
|
+
z-index: 1046;
|
|
118
|
+
box-shadow: none;
|
|
119
|
+
touch-action: manipulation; }
|
|
120
|
+
|
|
121
|
+
button::-moz-focus-inner {
|
|
122
|
+
padding: 0;
|
|
123
|
+
border: 0; }
|
|
124
|
+
|
|
125
|
+
.mfp-close {
|
|
126
|
+
width: 44px;
|
|
127
|
+
height: 44px;
|
|
128
|
+
line-height: 44px;
|
|
129
|
+
position: absolute;
|
|
130
|
+
right: 0;
|
|
131
|
+
top: 0;
|
|
132
|
+
text-decoration: none;
|
|
133
|
+
text-align: center;
|
|
134
|
+
opacity: 0.65;
|
|
135
|
+
padding: 0 0 18px 10px;
|
|
136
|
+
color: #FFF;
|
|
137
|
+
font-style: normal;
|
|
138
|
+
font-size: 28px;
|
|
139
|
+
font-family: Arial, Baskerville, monospace; }
|
|
140
|
+
.mfp-close:hover,
|
|
141
|
+
.mfp-close:focus {
|
|
142
|
+
opacity: 1; }
|
|
143
|
+
.mfp-close:active {
|
|
144
|
+
top: 1px; }
|
|
145
|
+
|
|
146
|
+
.mfp-close-btn-in .mfp-close {
|
|
147
|
+
color: #333; }
|
|
148
|
+
|
|
149
|
+
.mfp-image-holder .mfp-close,
|
|
150
|
+
.mfp-iframe-holder .mfp-close {
|
|
151
|
+
color: #FFF;
|
|
152
|
+
right: -6px;
|
|
153
|
+
text-align: right;
|
|
154
|
+
padding-right: 6px;
|
|
155
|
+
width: 100%; }
|
|
156
|
+
|
|
157
|
+
.mfp-counter {
|
|
158
|
+
position: absolute;
|
|
159
|
+
top: 0;
|
|
160
|
+
right: 0;
|
|
161
|
+
color: #CCC;
|
|
162
|
+
font-size: 12px;
|
|
163
|
+
line-height: 18px;
|
|
164
|
+
white-space: nowrap; }
|
|
165
|
+
|
|
166
|
+
.mfp-arrow {
|
|
167
|
+
position: absolute;
|
|
168
|
+
opacity: 0.65;
|
|
169
|
+
margin: 0;
|
|
170
|
+
top: 50%;
|
|
171
|
+
margin-top: -55px;
|
|
172
|
+
padding: 0;
|
|
173
|
+
width: 90px;
|
|
174
|
+
height: 110px;
|
|
175
|
+
-webkit-tap-highlight-color: transparent; }
|
|
176
|
+
.mfp-arrow:active {
|
|
177
|
+
margin-top: -54px; }
|
|
178
|
+
.mfp-arrow:hover,
|
|
179
|
+
.mfp-arrow:focus {
|
|
180
|
+
opacity: 1; }
|
|
181
|
+
.mfp-arrow:before,
|
|
182
|
+
.mfp-arrow:after {
|
|
183
|
+
content: '';
|
|
184
|
+
display: block;
|
|
185
|
+
width: 0;
|
|
186
|
+
height: 0;
|
|
187
|
+
position: absolute;
|
|
188
|
+
left: 0;
|
|
189
|
+
top: 0;
|
|
190
|
+
margin-top: 35px;
|
|
191
|
+
margin-left: 35px;
|
|
192
|
+
border: medium inset transparent; }
|
|
193
|
+
.mfp-arrow:after {
|
|
194
|
+
border-top-width: 13px;
|
|
195
|
+
border-bottom-width: 13px;
|
|
196
|
+
top: 8px; }
|
|
197
|
+
.mfp-arrow:before {
|
|
198
|
+
border-top-width: 21px;
|
|
199
|
+
border-bottom-width: 21px;
|
|
200
|
+
opacity: 0.7; }
|
|
201
|
+
|
|
202
|
+
.mfp-arrow-left {
|
|
203
|
+
left: 0; }
|
|
204
|
+
.mfp-arrow-left:after {
|
|
205
|
+
border-right: 17px solid #FFF;
|
|
206
|
+
margin-left: 31px; }
|
|
207
|
+
.mfp-arrow-left:before {
|
|
208
|
+
margin-left: 25px;
|
|
209
|
+
border-right: 27px solid #3F3F3F; }
|
|
210
|
+
|
|
211
|
+
.mfp-arrow-right {
|
|
212
|
+
right: 0; }
|
|
213
|
+
.mfp-arrow-right:after {
|
|
214
|
+
border-left: 17px solid #FFF;
|
|
215
|
+
margin-left: 39px; }
|
|
216
|
+
.mfp-arrow-right:before {
|
|
217
|
+
border-left: 27px solid #3F3F3F; }
|
|
218
|
+
|
|
219
|
+
.mfp-iframe-holder {
|
|
220
|
+
padding-top: 40px;
|
|
221
|
+
padding-bottom: 40px; }
|
|
222
|
+
.mfp-iframe-holder .mfp-content {
|
|
223
|
+
line-height: 0;
|
|
224
|
+
width: 100%;
|
|
225
|
+
max-width: 900px; }
|
|
226
|
+
.mfp-iframe-holder .mfp-close {
|
|
227
|
+
top: -40px; }
|
|
228
|
+
|
|
229
|
+
.mfp-iframe-scaler {
|
|
230
|
+
width: 100%;
|
|
231
|
+
height: 0;
|
|
232
|
+
overflow: hidden;
|
|
233
|
+
padding-top: 56.25%; }
|
|
234
|
+
.mfp-iframe-scaler iframe {
|
|
235
|
+
position: absolute;
|
|
236
|
+
display: block;
|
|
237
|
+
top: 0;
|
|
238
|
+
left: 0;
|
|
239
|
+
width: 100%;
|
|
240
|
+
height: 100%;
|
|
241
|
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
|
242
|
+
background: #000; }
|
|
243
|
+
|
|
244
|
+
/* Main image in popup */
|
|
245
|
+
img.mfp-img {
|
|
246
|
+
width: auto;
|
|
247
|
+
max-width: 100%;
|
|
248
|
+
height: auto;
|
|
249
|
+
display: block;
|
|
250
|
+
line-height: 0;
|
|
251
|
+
box-sizing: border-box;
|
|
252
|
+
padding: 40px 0 40px;
|
|
253
|
+
margin: 0 auto; }
|
|
254
|
+
|
|
255
|
+
/* The shadow behind the image */
|
|
256
|
+
.mfp-figure {
|
|
257
|
+
line-height: 0; }
|
|
258
|
+
.mfp-figure:after {
|
|
259
|
+
content: '';
|
|
260
|
+
position: absolute;
|
|
261
|
+
left: 0;
|
|
262
|
+
top: 40px;
|
|
263
|
+
bottom: 40px;
|
|
264
|
+
display: block;
|
|
265
|
+
right: 0;
|
|
266
|
+
width: auto;
|
|
267
|
+
height: auto;
|
|
268
|
+
z-index: -1;
|
|
269
|
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
|
270
|
+
background: #444; }
|
|
271
|
+
.mfp-figure small {
|
|
272
|
+
color: #BDBDBD;
|
|
273
|
+
display: block;
|
|
274
|
+
font-size: 12px;
|
|
275
|
+
line-height: 14px; }
|
|
276
|
+
.mfp-figure figure {
|
|
277
|
+
margin: 0; }
|
|
278
|
+
|
|
279
|
+
.mfp-bottom-bar {
|
|
280
|
+
margin-top: -36px;
|
|
281
|
+
position: absolute;
|
|
282
|
+
top: 100%;
|
|
283
|
+
left: 0;
|
|
284
|
+
width: 100%;
|
|
285
|
+
cursor: auto; }
|
|
286
|
+
|
|
287
|
+
.mfp-title {
|
|
288
|
+
text-align: left;
|
|
289
|
+
line-height: 18px;
|
|
290
|
+
color: #F3F3F3;
|
|
291
|
+
word-wrap: break-word;
|
|
292
|
+
padding-right: 36px; }
|
|
293
|
+
|
|
294
|
+
.mfp-image-holder .mfp-content {
|
|
295
|
+
max-width: 100%; }
|
|
296
|
+
|
|
297
|
+
.mfp-gallery .mfp-image-holder .mfp-figure {
|
|
298
|
+
cursor: pointer; }
|
|
299
|
+
|
|
300
|
+
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
|
|
301
|
+
/**
|
|
302
|
+
* Remove all paddings around the image on small screen
|
|
303
|
+
*/
|
|
304
|
+
.mfp-img-mobile .mfp-image-holder {
|
|
305
|
+
padding-left: 0;
|
|
306
|
+
padding-right: 0; }
|
|
307
|
+
.mfp-img-mobile img.mfp-img {
|
|
308
|
+
padding: 0; }
|
|
309
|
+
.mfp-img-mobile .mfp-figure:after {
|
|
310
|
+
top: 0;
|
|
311
|
+
bottom: 0; }
|
|
312
|
+
.mfp-img-mobile .mfp-figure small {
|
|
313
|
+
display: inline;
|
|
314
|
+
margin-left: 5px; }
|
|
315
|
+
.mfp-img-mobile .mfp-bottom-bar {
|
|
316
|
+
background: rgba(0, 0, 0, 0.6);
|
|
317
|
+
bottom: 0;
|
|
318
|
+
margin: 0;
|
|
319
|
+
top: auto;
|
|
320
|
+
padding: 3px 5px;
|
|
321
|
+
position: fixed;
|
|
322
|
+
box-sizing: border-box; }
|
|
323
|
+
.mfp-img-mobile .mfp-bottom-bar:empty {
|
|
324
|
+
padding: 0; }
|
|
325
|
+
.mfp-img-mobile .mfp-counter {
|
|
326
|
+
right: 5px;
|
|
327
|
+
top: 3px; }
|
|
328
|
+
.mfp-img-mobile .mfp-close {
|
|
329
|
+
top: 0;
|
|
330
|
+
right: 0;
|
|
331
|
+
width: 35px;
|
|
332
|
+
height: 35px;
|
|
333
|
+
line-height: 35px;
|
|
334
|
+
background: rgba(0, 0, 0, 0.6);
|
|
335
|
+
position: fixed;
|
|
336
|
+
text-align: center;
|
|
337
|
+
padding: 0; } }
|
|
338
|
+
|
|
339
|
+
@media all and (max-width: 900px) {
|
|
340
|
+
.mfp-arrow {
|
|
341
|
+
-webkit-transform: scale(0.75);
|
|
342
|
+
transform: scale(0.75); }
|
|
343
|
+
.mfp-arrow-left {
|
|
344
|
+
-webkit-transform-origin: 0;
|
|
345
|
+
transform-origin: 0; }
|
|
346
|
+
.mfp-arrow-right {
|
|
347
|
+
-webkit-transform-origin: 100%;
|
|
348
|
+
transform-origin: 100%; }
|
|
349
|
+
.mfp-container {
|
|
350
|
+
padding-left: 6px;
|
|
351
|
+
padding-right: 6px; } }
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
|
|
2
|
+
/*
|
|
3
|
+
Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
|
|
4
|
+
*/
|
|
5
|
+
/* pswp = photoswipe */
|
|
6
|
+
.pswp {
|
|
7
|
+
display: none;
|
|
8
|
+
position: absolute;
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
left: 0;
|
|
12
|
+
top: 0;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
-ms-touch-action: none;
|
|
15
|
+
touch-action: none;
|
|
16
|
+
z-index: 1500;
|
|
17
|
+
-webkit-text-size-adjust: 100%;
|
|
18
|
+
/* create separate layer, to avoid paint on window.onscroll in webkit/blink */
|
|
19
|
+
-webkit-backface-visibility: hidden;
|
|
20
|
+
outline: none; }
|
|
21
|
+
.pswp * {
|
|
22
|
+
-webkit-box-sizing: border-box;
|
|
23
|
+
box-sizing: border-box; }
|
|
24
|
+
.pswp img {
|
|
25
|
+
max-width: none; }
|
|
26
|
+
|
|
27
|
+
/* style is added when JS option showHideOpacity is set to true */
|
|
28
|
+
.pswp--animate_opacity {
|
|
29
|
+
/* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
|
|
30
|
+
opacity: 0.001;
|
|
31
|
+
will-change: opacity;
|
|
32
|
+
/* for open/close transition */
|
|
33
|
+
-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
|
|
34
|
+
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
|
|
35
|
+
|
|
36
|
+
.pswp--open {
|
|
37
|
+
display: block; }
|
|
38
|
+
|
|
39
|
+
.pswp--zoom-allowed .pswp__img {
|
|
40
|
+
/* autoprefixer: off */
|
|
41
|
+
cursor: -webkit-zoom-in;
|
|
42
|
+
cursor: -moz-zoom-in;
|
|
43
|
+
cursor: zoom-in; }
|
|
44
|
+
|
|
45
|
+
.pswp--zoomed-in .pswp__img {
|
|
46
|
+
/* autoprefixer: off */
|
|
47
|
+
cursor: -webkit-grab;
|
|
48
|
+
cursor: -moz-grab;
|
|
49
|
+
cursor: grab; }
|
|
50
|
+
|
|
51
|
+
.pswp--dragging .pswp__img {
|
|
52
|
+
/* autoprefixer: off */
|
|
53
|
+
cursor: -webkit-grabbing;
|
|
54
|
+
cursor: -moz-grabbing;
|
|
55
|
+
cursor: grabbing; }
|
|
56
|
+
|
|
57
|
+
/*
|
|
58
|
+
Background is added as a separate element.
|
|
59
|
+
As animating opacity is much faster than animating rgba() background-color.
|
|
60
|
+
*/
|
|
61
|
+
.pswp__bg {
|
|
62
|
+
position: absolute;
|
|
63
|
+
left: 0;
|
|
64
|
+
top: 0;
|
|
65
|
+
width: 100%;
|
|
66
|
+
height: 100%;
|
|
67
|
+
background: #000;
|
|
68
|
+
opacity: 0;
|
|
69
|
+
-webkit-transform: translateZ(0);
|
|
70
|
+
transform: translateZ(0);
|
|
71
|
+
-webkit-backface-visibility: hidden;
|
|
72
|
+
will-change: opacity; }
|
|
73
|
+
|
|
74
|
+
.pswp__scroll-wrap {
|
|
75
|
+
position: absolute;
|
|
76
|
+
left: 0;
|
|
77
|
+
top: 0;
|
|
78
|
+
width: 100%;
|
|
79
|
+
height: 100%;
|
|
80
|
+
overflow: hidden; }
|
|
81
|
+
|
|
82
|
+
.pswp__container,
|
|
83
|
+
.pswp__zoom-wrap {
|
|
84
|
+
-ms-touch-action: none;
|
|
85
|
+
touch-action: none;
|
|
86
|
+
position: absolute;
|
|
87
|
+
left: 0;
|
|
88
|
+
right: 0;
|
|
89
|
+
top: 0;
|
|
90
|
+
bottom: 0; }
|
|
91
|
+
|
|
92
|
+
/* Prevent selection and tap highlights */
|
|
93
|
+
.pswp__container,
|
|
94
|
+
.pswp__img {
|
|
95
|
+
-webkit-user-select: none;
|
|
96
|
+
-moz-user-select: none;
|
|
97
|
+
-ms-user-select: none;
|
|
98
|
+
user-select: none;
|
|
99
|
+
-webkit-tap-highlight-color: transparent;
|
|
100
|
+
-webkit-touch-callout: none; }
|
|
101
|
+
|
|
102
|
+
.pswp__zoom-wrap {
|
|
103
|
+
position: absolute;
|
|
104
|
+
width: 100%;
|
|
105
|
+
-webkit-transform-origin: left top;
|
|
106
|
+
-ms-transform-origin: left top;
|
|
107
|
+
transform-origin: left top;
|
|
108
|
+
/* for open/close transition */
|
|
109
|
+
-webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
|
|
110
|
+
transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }
|
|
111
|
+
|
|
112
|
+
.pswp__bg {
|
|
113
|
+
will-change: opacity;
|
|
114
|
+
/* for open/close transition */
|
|
115
|
+
-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
|
|
116
|
+
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
|
|
117
|
+
|
|
118
|
+
.pswp--animated-in .pswp__bg,
|
|
119
|
+
.pswp--animated-in .pswp__zoom-wrap {
|
|
120
|
+
-webkit-transition: none;
|
|
121
|
+
transition: none; }
|
|
122
|
+
|
|
123
|
+
.pswp__container,
|
|
124
|
+
.pswp__zoom-wrap {
|
|
125
|
+
-webkit-backface-visibility: hidden; }
|
|
126
|
+
|
|
127
|
+
.pswp__item {
|
|
128
|
+
position: absolute;
|
|
129
|
+
left: 0;
|
|
130
|
+
right: 0;
|
|
131
|
+
top: 0;
|
|
132
|
+
bottom: 0;
|
|
133
|
+
overflow: hidden; }
|
|
134
|
+
|
|
135
|
+
.pswp__img {
|
|
136
|
+
position: absolute;
|
|
137
|
+
width: auto;
|
|
138
|
+
height: auto;
|
|
139
|
+
top: 0;
|
|
140
|
+
left: 0; }
|
|
141
|
+
|
|
142
|
+
/*
|
|
143
|
+
stretched thumbnail or div placeholder element (see below)
|
|
144
|
+
style is added to avoid flickering in webkit/blink when layers overlap
|
|
145
|
+
*/
|
|
146
|
+
.pswp__img--placeholder {
|
|
147
|
+
-webkit-backface-visibility: hidden; }
|
|
148
|
+
|
|
149
|
+
/*
|
|
150
|
+
div element that matches size of large image
|
|
151
|
+
large image loads on top of it
|
|
152
|
+
*/
|
|
153
|
+
.pswp__img--placeholder--blank {
|
|
154
|
+
background: #222; }
|
|
155
|
+
|
|
156
|
+
.pswp--ie .pswp__img {
|
|
157
|
+
width: 100% !important;
|
|
158
|
+
height: auto !important;
|
|
159
|
+
left: 0;
|
|
160
|
+
top: 0; }
|
|
161
|
+
|
|
162
|
+
/*
|
|
163
|
+
Error message appears when image is not loaded
|
|
164
|
+
(JS option errorMsg controls markup)
|
|
165
|
+
*/
|
|
166
|
+
.pswp__error-msg {
|
|
167
|
+
position: absolute;
|
|
168
|
+
left: 0;
|
|
169
|
+
top: 50%;
|
|
170
|
+
width: 100%;
|
|
171
|
+
text-align: center;
|
|
172
|
+
font-size: 14px;
|
|
173
|
+
line-height: 16px;
|
|
174
|
+
margin-top: -8px;
|
|
175
|
+
color: #CCC; }
|
|
176
|
+
|
|
177
|
+
.pswp__error-msg a {
|
|
178
|
+
color: #CCC;
|
|
179
|
+
text-decoration: underline; }
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
[data-simplebar] {
|
|
2
|
+
position: relative;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
flex-wrap: wrap;
|
|
5
|
+
justify-content: flex-start;
|
|
6
|
+
align-content: flex-start;
|
|
7
|
+
align-items: flex-start;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.simplebar-wrapper {
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
width: inherit;
|
|
13
|
+
height: inherit;
|
|
14
|
+
max-width: inherit;
|
|
15
|
+
max-height: inherit;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.simplebar-mask {
|
|
19
|
+
direction: inherit;
|
|
20
|
+
position: absolute;
|
|
21
|
+
overflow: hidden;
|
|
22
|
+
padding: 0;
|
|
23
|
+
margin: 0;
|
|
24
|
+
left: 0;
|
|
25
|
+
top: 0;
|
|
26
|
+
bottom: 0;
|
|
27
|
+
right: 0;
|
|
28
|
+
width: auto !important;
|
|
29
|
+
height: auto !important;
|
|
30
|
+
z-index: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.simplebar-offset {
|
|
34
|
+
direction: inherit !important;
|
|
35
|
+
box-sizing: inherit !important;
|
|
36
|
+
resize: none !important;
|
|
37
|
+
position: absolute;
|
|
38
|
+
top: 0;
|
|
39
|
+
left: 0;
|
|
40
|
+
bottom: 0;
|
|
41
|
+
right: 0;
|
|
42
|
+
padding: 0;
|
|
43
|
+
margin: 0;
|
|
44
|
+
-webkit-overflow-scrolling: touch;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.simplebar-content-wrapper {
|
|
48
|
+
direction: inherit;
|
|
49
|
+
box-sizing: border-box !important;
|
|
50
|
+
position: relative;
|
|
51
|
+
display: block;
|
|
52
|
+
height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
|
|
53
|
+
width: auto;
|
|
54
|
+
max-width: 100%; /* Not required for horizontal scroll to trigger */
|
|
55
|
+
max-height: 100%; /* Needed for vertical scroll to trigger */
|
|
56
|
+
scrollbar-width: none;
|
|
57
|
+
-ms-overflow-style: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.simplebar-content-wrapper::-webkit-scrollbar,
|
|
61
|
+
.simplebar-hide-scrollbar::-webkit-scrollbar {
|
|
62
|
+
width: 0;
|
|
63
|
+
height: 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.simplebar-content:before,
|
|
67
|
+
.simplebar-content:after {
|
|
68
|
+
content: ' ';
|
|
69
|
+
display: table;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.simplebar-placeholder {
|
|
73
|
+
max-height: 100%;
|
|
74
|
+
max-width: 100%;
|
|
75
|
+
width: 100%;
|
|
76
|
+
pointer-events: none;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.simplebar-height-auto-observer-wrapper {
|
|
80
|
+
box-sizing: inherit !important;
|
|
81
|
+
height: 100%;
|
|
82
|
+
width: 100%;
|
|
83
|
+
max-width: 1px;
|
|
84
|
+
position: relative;
|
|
85
|
+
float: left;
|
|
86
|
+
max-height: 1px;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
z-index: -1;
|
|
89
|
+
padding: 0;
|
|
90
|
+
margin: 0;
|
|
91
|
+
pointer-events: none;
|
|
92
|
+
flex-grow: inherit;
|
|
93
|
+
flex-shrink: 0;
|
|
94
|
+
flex-basis: 0;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.simplebar-height-auto-observer {
|
|
98
|
+
box-sizing: inherit;
|
|
99
|
+
display: block;
|
|
100
|
+
opacity: 0;
|
|
101
|
+
position: absolute;
|
|
102
|
+
top: 0;
|
|
103
|
+
left: 0;
|
|
104
|
+
height: 1000%;
|
|
105
|
+
width: 1000%;
|
|
106
|
+
min-height: 1px;
|
|
107
|
+
min-width: 1px;
|
|
108
|
+
overflow: hidden;
|
|
109
|
+
pointer-events: none;
|
|
110
|
+
z-index: -1;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.simplebar-track {
|
|
114
|
+
z-index: 1;
|
|
115
|
+
position: absolute;
|
|
116
|
+
right: 0;
|
|
117
|
+
bottom: 0;
|
|
118
|
+
pointer-events: none;
|
|
119
|
+
overflow: hidden;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
[data-simplebar].simplebar-dragging .simplebar-content {
|
|
123
|
+
pointer-events: none;
|
|
124
|
+
user-select: none;
|
|
125
|
+
-webkit-user-select: none;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
[data-simplebar].simplebar-dragging .simplebar-track {
|
|
129
|
+
pointer-events: all;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.simplebar-scrollbar {
|
|
133
|
+
position: absolute;
|
|
134
|
+
left: 0;
|
|
135
|
+
right: 0;
|
|
136
|
+
min-height: 10px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.simplebar-scrollbar:before {
|
|
140
|
+
position: absolute;
|
|
141
|
+
content: '';
|
|
142
|
+
background: black;
|
|
143
|
+
border-radius: 7px;
|
|
144
|
+
left: 2px;
|
|
145
|
+
right: 2px;
|
|
146
|
+
opacity: 0;
|
|
147
|
+
transition: opacity 0.2s linear;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.simplebar-scrollbar.simplebar-visible:before {
|
|
151
|
+
/* When hovered, remove all transitions from drag handle */
|
|
152
|
+
opacity: 0.5;
|
|
153
|
+
transition: opacity 0s linear;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.simplebar-track.simplebar-vertical {
|
|
157
|
+
top: 0;
|
|
158
|
+
width: 11px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
|
|
162
|
+
top: 2px;
|
|
163
|
+
bottom: 2px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.simplebar-track.simplebar-horizontal {
|
|
167
|
+
left: 0;
|
|
168
|
+
height: 11px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
|
|
172
|
+
height: 100%;
|
|
173
|
+
left: 2px;
|
|
174
|
+
right: 2px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
|
|
178
|
+
right: auto;
|
|
179
|
+
left: 0;
|
|
180
|
+
top: 2px;
|
|
181
|
+
height: 7px;
|
|
182
|
+
min-height: 0;
|
|
183
|
+
min-width: 10px;
|
|
184
|
+
width: auto;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/* Rtl support */
|
|
188
|
+
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
|
|
189
|
+
right: auto;
|
|
190
|
+
left: 0;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.hs-dummy-scrollbar-size {
|
|
194
|
+
direction: rtl;
|
|
195
|
+
position: fixed;
|
|
196
|
+
opacity: 0;
|
|
197
|
+
visibility: hidden;
|
|
198
|
+
height: 500px;
|
|
199
|
+
width: 500px;
|
|
200
|
+
overflow-y: hidden;
|
|
201
|
+
overflow-x: scroll;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.simplebar-hide-scrollbar {
|
|
205
|
+
position: fixed;
|
|
206
|
+
left: 0;
|
|
207
|
+
visibility: hidden;
|
|
208
|
+
overflow-y: scroll;
|
|
209
|
+
scrollbar-width: none;
|
|
210
|
+
-ms-overflow-style: none;
|
|
211
|
+
}
|