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,482 @@
|
|
|
1
|
+
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
|
|
2
|
+
/*
|
|
3
|
+
|
|
4
|
+
Contents:
|
|
5
|
+
|
|
6
|
+
1. Buttons
|
|
7
|
+
2. Share modal and links
|
|
8
|
+
3. Index indicator ("1 of X" counter)
|
|
9
|
+
4. Caption
|
|
10
|
+
5. Loading indicator
|
|
11
|
+
6. Additional styles (root element, top bar, idle state, hidden state, etc.)
|
|
12
|
+
|
|
13
|
+
*/
|
|
14
|
+
/*
|
|
15
|
+
|
|
16
|
+
1. Buttons
|
|
17
|
+
|
|
18
|
+
*/
|
|
19
|
+
/* <button> css reset */
|
|
20
|
+
.pswp__button {
|
|
21
|
+
width: 44px;
|
|
22
|
+
height: 44px;
|
|
23
|
+
position: relative;
|
|
24
|
+
background: none;
|
|
25
|
+
cursor: pointer;
|
|
26
|
+
overflow: visible;
|
|
27
|
+
-webkit-appearance: none;
|
|
28
|
+
display: block;
|
|
29
|
+
border: 0;
|
|
30
|
+
padding: 0;
|
|
31
|
+
margin: 0;
|
|
32
|
+
float: right;
|
|
33
|
+
opacity: 0.75;
|
|
34
|
+
-webkit-transition: opacity 0.2s;
|
|
35
|
+
transition: opacity 0.2s;
|
|
36
|
+
-webkit-box-shadow: none;
|
|
37
|
+
box-shadow: none; }
|
|
38
|
+
.pswp__button:focus, .pswp__button:hover {
|
|
39
|
+
opacity: 1; }
|
|
40
|
+
.pswp__button:active {
|
|
41
|
+
outline: none;
|
|
42
|
+
opacity: 0.9; }
|
|
43
|
+
.pswp__button::-moz-focus-inner {
|
|
44
|
+
padding: 0;
|
|
45
|
+
border: 0; }
|
|
46
|
+
|
|
47
|
+
/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
|
|
48
|
+
.pswp__ui--over-close .pswp__button--close {
|
|
49
|
+
opacity: 1; }
|
|
50
|
+
|
|
51
|
+
.pswp__button,
|
|
52
|
+
.pswp__button--arrow--left:before,
|
|
53
|
+
.pswp__button--arrow--right:before {
|
|
54
|
+
background: url(../../images/photoswiper/default-skin.svg) 0 0 no-repeat;
|
|
55
|
+
background-size: 264px 88px;
|
|
56
|
+
width: 44px;
|
|
57
|
+
height: 44px; }
|
|
58
|
+
|
|
59
|
+
@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
|
|
60
|
+
/* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
|
|
61
|
+
.pswp--svg .pswp__button,
|
|
62
|
+
.pswp--svg .pswp__button--arrow--left:before,
|
|
63
|
+
.pswp--svg .pswp__button--arrow--right:before {
|
|
64
|
+
background-image: url(../../images/photoswiper/default-skin.svg); }
|
|
65
|
+
.pswp--svg .pswp__button--arrow--left,
|
|
66
|
+
.pswp--svg .pswp__button--arrow--right {
|
|
67
|
+
background: none; } }
|
|
68
|
+
|
|
69
|
+
.pswp__button--close {
|
|
70
|
+
background-position: 0 -44px; }
|
|
71
|
+
|
|
72
|
+
.pswp__button--share {
|
|
73
|
+
background-position: -44px -44px; }
|
|
74
|
+
|
|
75
|
+
.pswp__button--fs {
|
|
76
|
+
display: none; }
|
|
77
|
+
|
|
78
|
+
.pswp--supports-fs .pswp__button--fs {
|
|
79
|
+
display: block; }
|
|
80
|
+
|
|
81
|
+
.pswp--fs .pswp__button--fs {
|
|
82
|
+
background-position: -44px 0; }
|
|
83
|
+
|
|
84
|
+
.pswp__button--zoom {
|
|
85
|
+
display: none;
|
|
86
|
+
background-position: -88px 0; }
|
|
87
|
+
|
|
88
|
+
.pswp--zoom-allowed .pswp__button--zoom {
|
|
89
|
+
display: block; }
|
|
90
|
+
|
|
91
|
+
.pswp--zoomed-in .pswp__button--zoom {
|
|
92
|
+
background-position: -132px 0; }
|
|
93
|
+
|
|
94
|
+
/* no arrows on touch screens */
|
|
95
|
+
.pswp--touch .pswp__button--arrow--left,
|
|
96
|
+
.pswp--touch .pswp__button--arrow--right {
|
|
97
|
+
visibility: hidden; }
|
|
98
|
+
|
|
99
|
+
/*
|
|
100
|
+
Arrow buttons hit area
|
|
101
|
+
(icon is added to :before pseudo-element)
|
|
102
|
+
*/
|
|
103
|
+
.pswp__button--arrow--left,
|
|
104
|
+
.pswp__button--arrow--right {
|
|
105
|
+
background: none;
|
|
106
|
+
top: 50%;
|
|
107
|
+
margin-top: -50px;
|
|
108
|
+
width: 70px;
|
|
109
|
+
height: 100px;
|
|
110
|
+
position: absolute; }
|
|
111
|
+
|
|
112
|
+
.pswp__button--arrow--left {
|
|
113
|
+
left: 0; }
|
|
114
|
+
|
|
115
|
+
.pswp__button--arrow--right {
|
|
116
|
+
right: 0; }
|
|
117
|
+
|
|
118
|
+
.pswp__button--arrow--left:before,
|
|
119
|
+
.pswp__button--arrow--right:before {
|
|
120
|
+
content: '';
|
|
121
|
+
top: 35px;
|
|
122
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
123
|
+
height: 30px;
|
|
124
|
+
width: 32px;
|
|
125
|
+
position: absolute; }
|
|
126
|
+
|
|
127
|
+
.pswp__button--arrow--left:before {
|
|
128
|
+
left: 6px;
|
|
129
|
+
background-position: -138px -44px; }
|
|
130
|
+
|
|
131
|
+
.pswp__button--arrow--right:before {
|
|
132
|
+
right: 6px;
|
|
133
|
+
background-position: -94px -44px; }
|
|
134
|
+
|
|
135
|
+
/*
|
|
136
|
+
|
|
137
|
+
2. Share modal/popup and links
|
|
138
|
+
|
|
139
|
+
*/
|
|
140
|
+
.pswp__counter,
|
|
141
|
+
.pswp__share-modal {
|
|
142
|
+
-webkit-user-select: none;
|
|
143
|
+
-moz-user-select: none;
|
|
144
|
+
-ms-user-select: none;
|
|
145
|
+
user-select: none; }
|
|
146
|
+
|
|
147
|
+
.pswp__share-modal {
|
|
148
|
+
display: block;
|
|
149
|
+
background: rgba(0, 0, 0, 0.5);
|
|
150
|
+
width: 100%;
|
|
151
|
+
height: 100%;
|
|
152
|
+
top: 0;
|
|
153
|
+
left: 0;
|
|
154
|
+
padding: 10px;
|
|
155
|
+
position: absolute;
|
|
156
|
+
z-index: 1600;
|
|
157
|
+
opacity: 0;
|
|
158
|
+
-webkit-transition: opacity 0.25s ease-out;
|
|
159
|
+
transition: opacity 0.25s ease-out;
|
|
160
|
+
-webkit-backface-visibility: hidden;
|
|
161
|
+
will-change: opacity; }
|
|
162
|
+
|
|
163
|
+
.pswp__share-modal--hidden {
|
|
164
|
+
display: none; }
|
|
165
|
+
|
|
166
|
+
.pswp__share-tooltip {
|
|
167
|
+
z-index: 1620;
|
|
168
|
+
position: absolute;
|
|
169
|
+
background: #FFF;
|
|
170
|
+
top: 56px;
|
|
171
|
+
border-radius: 2px;
|
|
172
|
+
display: block;
|
|
173
|
+
width: auto;
|
|
174
|
+
right: 44px;
|
|
175
|
+
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
|
|
176
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
|
|
177
|
+
-webkit-transform: translateY(6px);
|
|
178
|
+
-ms-transform: translateY(6px);
|
|
179
|
+
transform: translateY(6px);
|
|
180
|
+
-webkit-transition: -webkit-transform 0.25s;
|
|
181
|
+
transition: transform 0.25s;
|
|
182
|
+
-webkit-backface-visibility: hidden;
|
|
183
|
+
will-change: transform; }
|
|
184
|
+
.pswp__share-tooltip a {
|
|
185
|
+
display: block;
|
|
186
|
+
padding: 8px 12px;
|
|
187
|
+
color: #000;
|
|
188
|
+
text-decoration: none;
|
|
189
|
+
font-size: 14px;
|
|
190
|
+
line-height: 18px; }
|
|
191
|
+
.pswp__share-tooltip a:hover {
|
|
192
|
+
text-decoration: none;
|
|
193
|
+
color: #000; }
|
|
194
|
+
.pswp__share-tooltip a:first-child {
|
|
195
|
+
/* round corners on the first/last list item */
|
|
196
|
+
border-radius: 2px 2px 0 0; }
|
|
197
|
+
.pswp__share-tooltip a:last-child {
|
|
198
|
+
border-radius: 0 0 2px 2px; }
|
|
199
|
+
|
|
200
|
+
.pswp__share-modal--fade-in {
|
|
201
|
+
opacity: 1; }
|
|
202
|
+
.pswp__share-modal--fade-in .pswp__share-tooltip {
|
|
203
|
+
-webkit-transform: translateY(0);
|
|
204
|
+
-ms-transform: translateY(0);
|
|
205
|
+
transform: translateY(0); }
|
|
206
|
+
|
|
207
|
+
/* increase size of share links on touch devices */
|
|
208
|
+
.pswp--touch .pswp__share-tooltip a {
|
|
209
|
+
padding: 16px 12px; }
|
|
210
|
+
|
|
211
|
+
a.pswp__share--facebook:before {
|
|
212
|
+
content: '';
|
|
213
|
+
display: block;
|
|
214
|
+
width: 0;
|
|
215
|
+
height: 0;
|
|
216
|
+
position: absolute;
|
|
217
|
+
top: -12px;
|
|
218
|
+
right: 15px;
|
|
219
|
+
border: 6px solid transparent;
|
|
220
|
+
border-bottom-color: #FFF;
|
|
221
|
+
-webkit-pointer-events: none;
|
|
222
|
+
-moz-pointer-events: none;
|
|
223
|
+
pointer-events: none; }
|
|
224
|
+
|
|
225
|
+
a.pswp__share--facebook:hover {
|
|
226
|
+
background: #3E5C9A;
|
|
227
|
+
color: #FFF; }
|
|
228
|
+
a.pswp__share--facebook:hover:before {
|
|
229
|
+
border-bottom-color: #3E5C9A; }
|
|
230
|
+
|
|
231
|
+
a.pswp__share--twitter:hover {
|
|
232
|
+
background: #55ACEE;
|
|
233
|
+
color: #FFF; }
|
|
234
|
+
|
|
235
|
+
a.pswp__share--pinterest:hover {
|
|
236
|
+
background: #CCC;
|
|
237
|
+
color: #CE272D; }
|
|
238
|
+
|
|
239
|
+
a.pswp__share--download:hover {
|
|
240
|
+
background: #DDD; }
|
|
241
|
+
|
|
242
|
+
/*
|
|
243
|
+
|
|
244
|
+
3. Index indicator ("1 of X" counter)
|
|
245
|
+
|
|
246
|
+
*/
|
|
247
|
+
.pswp__counter {
|
|
248
|
+
position: absolute;
|
|
249
|
+
left: 0;
|
|
250
|
+
top: 0;
|
|
251
|
+
height: 44px;
|
|
252
|
+
font-size: 13px;
|
|
253
|
+
line-height: 44px;
|
|
254
|
+
color: #FFF;
|
|
255
|
+
opacity: 0.75;
|
|
256
|
+
padding: 0 10px; }
|
|
257
|
+
|
|
258
|
+
/*
|
|
259
|
+
|
|
260
|
+
4. Caption
|
|
261
|
+
|
|
262
|
+
*/
|
|
263
|
+
.pswp__caption {
|
|
264
|
+
position: absolute;
|
|
265
|
+
left: 0;
|
|
266
|
+
bottom: 0;
|
|
267
|
+
width: 100%;
|
|
268
|
+
min-height: 44px; }
|
|
269
|
+
.pswp__caption small {
|
|
270
|
+
font-size: 11px;
|
|
271
|
+
color: #BBB; }
|
|
272
|
+
|
|
273
|
+
.pswp__caption__center {
|
|
274
|
+
text-align: left;
|
|
275
|
+
max-width: 420px;
|
|
276
|
+
margin: 0 auto;
|
|
277
|
+
font-size: 13px;
|
|
278
|
+
padding: 10px;
|
|
279
|
+
line-height: 20px;
|
|
280
|
+
color: #CCC; }
|
|
281
|
+
|
|
282
|
+
.pswp__caption--empty {
|
|
283
|
+
display: none; }
|
|
284
|
+
|
|
285
|
+
/* Fake caption element, used to calculate height of next/prev image */
|
|
286
|
+
.pswp__caption--fake {
|
|
287
|
+
visibility: hidden; }
|
|
288
|
+
|
|
289
|
+
/*
|
|
290
|
+
|
|
291
|
+
5. Loading indicator (preloader)
|
|
292
|
+
|
|
293
|
+
You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR
|
|
294
|
+
|
|
295
|
+
*/
|
|
296
|
+
.pswp__preloader {
|
|
297
|
+
width: 44px;
|
|
298
|
+
height: 44px;
|
|
299
|
+
position: absolute;
|
|
300
|
+
top: 0;
|
|
301
|
+
left: 50%;
|
|
302
|
+
margin-left: -22px;
|
|
303
|
+
opacity: 0;
|
|
304
|
+
-webkit-transition: opacity 0.25s ease-out;
|
|
305
|
+
transition: opacity 0.25s ease-out;
|
|
306
|
+
will-change: opacity;
|
|
307
|
+
direction: ltr; }
|
|
308
|
+
|
|
309
|
+
.pswp__preloader__icn {
|
|
310
|
+
width: 20px;
|
|
311
|
+
height: 20px;
|
|
312
|
+
margin: 12px; }
|
|
313
|
+
|
|
314
|
+
.pswp__preloader--active {
|
|
315
|
+
opacity: 1; }
|
|
316
|
+
.pswp__preloader--active .pswp__preloader__icn {
|
|
317
|
+
/* We use .gif in browsers that don't support CSS animation */
|
|
318
|
+
background: url(preloader.gif) 0 0 no-repeat; }
|
|
319
|
+
|
|
320
|
+
.pswp--css_animation .pswp__preloader--active {
|
|
321
|
+
opacity: 1; }
|
|
322
|
+
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
|
|
323
|
+
-webkit-animation: clockwise 500ms linear infinite;
|
|
324
|
+
animation: clockwise 500ms linear infinite; }
|
|
325
|
+
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
|
|
326
|
+
-webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
|
|
327
|
+
animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }
|
|
328
|
+
|
|
329
|
+
.pswp--css_animation .pswp__preloader__icn {
|
|
330
|
+
background: none;
|
|
331
|
+
opacity: 0.75;
|
|
332
|
+
width: 14px;
|
|
333
|
+
height: 14px;
|
|
334
|
+
position: absolute;
|
|
335
|
+
left: 15px;
|
|
336
|
+
top: 15px;
|
|
337
|
+
margin: 0; }
|
|
338
|
+
|
|
339
|
+
.pswp--css_animation .pswp__preloader__cut {
|
|
340
|
+
/*
|
|
341
|
+
The idea of animating inner circle is based on Polymer ("material") loading indicator
|
|
342
|
+
by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
|
|
343
|
+
*/
|
|
344
|
+
position: relative;
|
|
345
|
+
width: 7px;
|
|
346
|
+
height: 14px;
|
|
347
|
+
overflow: hidden; }
|
|
348
|
+
|
|
349
|
+
.pswp--css_animation .pswp__preloader__donut {
|
|
350
|
+
-webkit-box-sizing: border-box;
|
|
351
|
+
box-sizing: border-box;
|
|
352
|
+
width: 14px;
|
|
353
|
+
height: 14px;
|
|
354
|
+
border: 2px solid #FFF;
|
|
355
|
+
border-radius: 50%;
|
|
356
|
+
border-left-color: transparent;
|
|
357
|
+
border-bottom-color: transparent;
|
|
358
|
+
position: absolute;
|
|
359
|
+
top: 0;
|
|
360
|
+
left: 0;
|
|
361
|
+
background: none;
|
|
362
|
+
margin: 0; }
|
|
363
|
+
|
|
364
|
+
@media screen and (max-width: 1024px) {
|
|
365
|
+
.pswp__preloader {
|
|
366
|
+
position: relative;
|
|
367
|
+
left: auto;
|
|
368
|
+
top: auto;
|
|
369
|
+
margin: 0;
|
|
370
|
+
float: right; } }
|
|
371
|
+
|
|
372
|
+
@-webkit-keyframes clockwise {
|
|
373
|
+
0% {
|
|
374
|
+
-webkit-transform: rotate(0deg);
|
|
375
|
+
transform: rotate(0deg); }
|
|
376
|
+
100% {
|
|
377
|
+
-webkit-transform: rotate(360deg);
|
|
378
|
+
transform: rotate(360deg); } }
|
|
379
|
+
|
|
380
|
+
@keyframes clockwise {
|
|
381
|
+
0% {
|
|
382
|
+
-webkit-transform: rotate(0deg);
|
|
383
|
+
transform: rotate(0deg); }
|
|
384
|
+
100% {
|
|
385
|
+
-webkit-transform: rotate(360deg);
|
|
386
|
+
transform: rotate(360deg); } }
|
|
387
|
+
|
|
388
|
+
@-webkit-keyframes donut-rotate {
|
|
389
|
+
0% {
|
|
390
|
+
-webkit-transform: rotate(0);
|
|
391
|
+
transform: rotate(0); }
|
|
392
|
+
50% {
|
|
393
|
+
-webkit-transform: rotate(-140deg);
|
|
394
|
+
transform: rotate(-140deg); }
|
|
395
|
+
100% {
|
|
396
|
+
-webkit-transform: rotate(0);
|
|
397
|
+
transform: rotate(0); } }
|
|
398
|
+
|
|
399
|
+
@keyframes donut-rotate {
|
|
400
|
+
0% {
|
|
401
|
+
-webkit-transform: rotate(0);
|
|
402
|
+
transform: rotate(0); }
|
|
403
|
+
50% {
|
|
404
|
+
-webkit-transform: rotate(-140deg);
|
|
405
|
+
transform: rotate(-140deg); }
|
|
406
|
+
100% {
|
|
407
|
+
-webkit-transform: rotate(0);
|
|
408
|
+
transform: rotate(0); } }
|
|
409
|
+
|
|
410
|
+
/*
|
|
411
|
+
|
|
412
|
+
6. Additional styles
|
|
413
|
+
|
|
414
|
+
*/
|
|
415
|
+
/* root element of UI */
|
|
416
|
+
.pswp__ui {
|
|
417
|
+
-webkit-font-smoothing: auto;
|
|
418
|
+
visibility: visible;
|
|
419
|
+
opacity: 1;
|
|
420
|
+
z-index: 1550; }
|
|
421
|
+
|
|
422
|
+
/* top black bar with buttons and "1 of X" indicator */
|
|
423
|
+
.pswp__top-bar {
|
|
424
|
+
position: absolute;
|
|
425
|
+
left: 0;
|
|
426
|
+
top: 0;
|
|
427
|
+
height: 44px;
|
|
428
|
+
width: 100%; }
|
|
429
|
+
|
|
430
|
+
.pswp__caption,
|
|
431
|
+
.pswp__top-bar,
|
|
432
|
+
.pswp--has_mouse .pswp__button--arrow--left,
|
|
433
|
+
.pswp--has_mouse .pswp__button--arrow--right {
|
|
434
|
+
-webkit-backface-visibility: hidden;
|
|
435
|
+
will-change: opacity;
|
|
436
|
+
-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
|
|
437
|
+
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
|
|
438
|
+
|
|
439
|
+
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
|
|
440
|
+
.pswp--has_mouse .pswp__button--arrow--left,
|
|
441
|
+
.pswp--has_mouse .pswp__button--arrow--right {
|
|
442
|
+
visibility: visible; }
|
|
443
|
+
|
|
444
|
+
.pswp__top-bar,
|
|
445
|
+
.pswp__caption {
|
|
446
|
+
background-color: rgba(0, 0, 0, 0.5); }
|
|
447
|
+
|
|
448
|
+
/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
|
|
449
|
+
.pswp__ui--fit .pswp__top-bar,
|
|
450
|
+
.pswp__ui--fit .pswp__caption {
|
|
451
|
+
background-color: rgba(0, 0, 0, 0.3); }
|
|
452
|
+
|
|
453
|
+
/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
|
|
454
|
+
.pswp__ui--idle .pswp__top-bar {
|
|
455
|
+
opacity: 0; }
|
|
456
|
+
|
|
457
|
+
.pswp__ui--idle .pswp__button--arrow--left,
|
|
458
|
+
.pswp__ui--idle .pswp__button--arrow--right {
|
|
459
|
+
opacity: 0; }
|
|
460
|
+
|
|
461
|
+
/*
|
|
462
|
+
pswp__ui--hidden class is added when controls are hidden
|
|
463
|
+
e.g. when user taps to toggle visibility of controls
|
|
464
|
+
*/
|
|
465
|
+
.pswp__ui--hidden .pswp__top-bar,
|
|
466
|
+
.pswp__ui--hidden .pswp__caption,
|
|
467
|
+
.pswp__ui--hidden .pswp__button--arrow--left,
|
|
468
|
+
.pswp__ui--hidden .pswp__button--arrow--right {
|
|
469
|
+
/* Force paint & create composition layer for controls. */
|
|
470
|
+
opacity: 0.001; }
|
|
471
|
+
|
|
472
|
+
/* pswp__ui--one-slide class is added when there is just one item in gallery */
|
|
473
|
+
.pswp__ui--one-slide .pswp__button--arrow--left,
|
|
474
|
+
.pswp__ui--one-slide .pswp__button--arrow--right,
|
|
475
|
+
.pswp__ui--one-slide .pswp__counter {
|
|
476
|
+
display: none; }
|
|
477
|
+
|
|
478
|
+
.pswp__element--disabled {
|
|
479
|
+
display: none !important; }
|
|
480
|
+
|
|
481
|
+
.pswp--minimal--dark .pswp__top-bar {
|
|
482
|
+
background: none; }
|