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,112 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- News
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.news-grid {
|
|
6
|
+
@include flex($wrap: wrap);
|
|
7
|
+
margin-left: rem(-15px);
|
|
8
|
+
margin-right: rem(-15px);
|
|
9
|
+
|
|
10
|
+
@media only screen and (max-width: $large) {
|
|
11
|
+
margin-left: 0;
|
|
12
|
+
margin-right: 0;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.news-item {
|
|
17
|
+
border-radius: var(--radius-16);
|
|
18
|
+
box-shadow: var(--box-shadow-50);
|
|
19
|
+
margin-bottom: rem(30px);
|
|
20
|
+
margin-left: rem(15px);
|
|
21
|
+
margin-right: rem(15px);
|
|
22
|
+
padding: 0;
|
|
23
|
+
width: calc(50% - 30px);
|
|
24
|
+
|
|
25
|
+
@media only screen and (max-width: $large) {
|
|
26
|
+
margin-left: 0;
|
|
27
|
+
margin-right: 0;
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@media only screen and (max-width: $small) {
|
|
32
|
+
margin-bottom: rem(20px);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&__image-wrap {
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
border-radius: var(--radius-16);
|
|
38
|
+
height: rem(224px);
|
|
39
|
+
position: relative;
|
|
40
|
+
|
|
41
|
+
@media only screen and (max-width: $large) {
|
|
42
|
+
height: rem(288px);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@media only screen and (max-width: $small) {
|
|
46
|
+
border-radius: var(--radius-12);
|
|
47
|
+
height: rem(192px);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
img {
|
|
51
|
+
transform: scale(1);
|
|
52
|
+
transition: transform .3s ease-in-out;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&:hover .news-item__image-wrap img {
|
|
57
|
+
transform: scale(1.05);
|
|
58
|
+
transition: transform .3s ease-in-out;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&__date {
|
|
62
|
+
margin-bottom: rem(12px);
|
|
63
|
+
opacity: .7;
|
|
64
|
+
|
|
65
|
+
span {
|
|
66
|
+
display: inline-block;
|
|
67
|
+
padding-right: rem(18px);
|
|
68
|
+
position: relative;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
span::after {
|
|
72
|
+
content: '';
|
|
73
|
+
background: var(--color-paragraph);
|
|
74
|
+
border-radius: 50%;
|
|
75
|
+
height: rem(4px);
|
|
76
|
+
margin: auto;
|
|
77
|
+
@include position(absolute, $top: 0, $bottom: 0, $right: #{rem(7px)});
|
|
78
|
+
width: rem(4px);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&__link {
|
|
83
|
+
position: absolute;
|
|
84
|
+
height: 100%;
|
|
85
|
+
width: 100%;
|
|
86
|
+
z-index: 2;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&__caption {
|
|
90
|
+
padding: rem(20px) rem(24px) rem(6px);
|
|
91
|
+
|
|
92
|
+
@media only screen and (max-width: $small) {
|
|
93
|
+
padding: rem(19px) rem(16px) 0;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.title {
|
|
98
|
+
margin-bottom: rem(10px);
|
|
99
|
+
|
|
100
|
+
a {
|
|
101
|
+
color: var(--color-heading);
|
|
102
|
+
transition: all .3s ease-in-out;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
a:hover {
|
|
106
|
+
background: var(--color-gradient-text);
|
|
107
|
+
-webkit-background-clip: text;
|
|
108
|
+
background-clip: text;
|
|
109
|
+
-webkit-text-fill-color: transparent;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Other
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
// Bact to top
|
|
6
|
+
.back-to-top {
|
|
7
|
+
border-top: 1px solid var(--color-accent);
|
|
8
|
+
border-left: 1px solid var(--color-accent);
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
height: rem(24px);
|
|
11
|
+
opacity: .5;
|
|
12
|
+
@include position(fixed, $right: rem(40px), $bottom: rem(30px));
|
|
13
|
+
width: rem(24px);
|
|
14
|
+
transform: rotate(45deg);
|
|
15
|
+
transition: opacity .35s ease-out;
|
|
16
|
+
z-index: 10;
|
|
17
|
+
|
|
18
|
+
&:hover {
|
|
19
|
+
opacity: 1;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@media only screen and (max-width: $medium) {
|
|
23
|
+
height: rem(24px);
|
|
24
|
+
width: rem(24px);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@media only screen and (max-width: $small) {
|
|
28
|
+
display: none!important;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.js-lines {
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
|
|
35
|
+
div {
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.js-words div div {
|
|
41
|
+
opacity: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Medium Zoom
|
|
45
|
+
.medium-zoom-overlay {
|
|
46
|
+
background: var(--color-surface-1)!important;
|
|
47
|
+
z-index: 1104;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.medium-zoom-image {
|
|
51
|
+
cursor: pointer!important;
|
|
52
|
+
z-index: 1104;
|
|
53
|
+
|
|
54
|
+
&--opened {
|
|
55
|
+
border-radius: rem(1px);
|
|
56
|
+
height: 100%;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
|
|
2
|
+
/* -----------------------------------------------------------------
|
|
3
|
+
- Popup
|
|
4
|
+
----------------------------------------------------------------- */
|
|
5
|
+
|
|
6
|
+
.popup {
|
|
7
|
+
background: var(--color-surface-1);
|
|
8
|
+
border: 1px solid var(--color-border);
|
|
9
|
+
border-radius: var(--radius-20);
|
|
10
|
+
box-shadow: var(--box-shadow-80);
|
|
11
|
+
margin: rem(20px) auto;
|
|
12
|
+
padding: rem(30px);
|
|
13
|
+
position: relative;
|
|
14
|
+
width: calc(100% - #{rem(30px)});
|
|
15
|
+
max-width: rem(700px);
|
|
16
|
+
|
|
17
|
+
@media only screen and (max-width: $small) {
|
|
18
|
+
border-radius: var(--radius-14);
|
|
19
|
+
margin: rem(15px) auto;
|
|
20
|
+
padding: rem(15px);
|
|
21
|
+
width: calc(100% - #{rem(15px)});
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.mfp-bg {
|
|
26
|
+
background: #0D0D0D;
|
|
27
|
+
opacity: .7!important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.mfp-close {
|
|
31
|
+
$size-btn-close: rem(32px);
|
|
32
|
+
background: var(--color-surface-2)!important;
|
|
33
|
+
border-radius: var(--radius-8);
|
|
34
|
+
color: var(--color-heading)!important;
|
|
35
|
+
font-family: 'feather';
|
|
36
|
+
height: $size-btn-close;
|
|
37
|
+
right: rem(15px);
|
|
38
|
+
top: rem(15px);
|
|
39
|
+
text-indent: -99999px;
|
|
40
|
+
width: $size-btn-close;
|
|
41
|
+
|
|
42
|
+
&::before {
|
|
43
|
+
content: '\ea11';
|
|
44
|
+
font-size: rem(16px);
|
|
45
|
+
@include flex($align: center, $justify: center);
|
|
46
|
+
@include position(absolute, $top: 0, $right: 0, $bottom: 0, $left: 0);
|
|
47
|
+
text-indent: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&:focus {
|
|
51
|
+
right: rem(15px);
|
|
52
|
+
top: rem(15px);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Zoom-in effect */
|
|
57
|
+
.mfp-zoom-in {
|
|
58
|
+
.mfp-with-anim {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
transition: all 0.2s ease-in-out;
|
|
61
|
+
transform: scale(0.8);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&.mfp-bg {
|
|
65
|
+
opacity: 0;
|
|
66
|
+
transition: all 0.3s ease-out;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* animate in */
|
|
70
|
+
&.mfp-ready {
|
|
71
|
+
.mfp-with-anim {
|
|
72
|
+
opacity: 1;
|
|
73
|
+
transform: scale(1);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.mfp-bg {
|
|
77
|
+
opacity: 0.8;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/* animate out */
|
|
82
|
+
&.mfp-removing {
|
|
83
|
+
.mfp-with-anim {
|
|
84
|
+
transform: scale(0.8);
|
|
85
|
+
opacity: 0;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&.mfp-bg {
|
|
89
|
+
opacity: 0;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* Move-horizontal effect */
|
|
95
|
+
.mfp-move-horizontal {
|
|
96
|
+
.mfp-with-anim {
|
|
97
|
+
opacity: 0;
|
|
98
|
+
transition: all 0.3s;
|
|
99
|
+
transform: translateX(-50px);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.mfp-bg {
|
|
103
|
+
opacity: 0;
|
|
104
|
+
transition: all 0.3s;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* animate in */
|
|
108
|
+
&.mfp-ready {
|
|
109
|
+
.mfp-with-anim {
|
|
110
|
+
opacity: 1;
|
|
111
|
+
transform: translateX(0);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&.mfp-bg {
|
|
115
|
+
opacity: 0.8;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* animate out */
|
|
120
|
+
&.mfp-removing {
|
|
121
|
+
.mfp-with-anim {
|
|
122
|
+
transform: translateX(50px);
|
|
123
|
+
opacity: 0;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&.mfp-bg {
|
|
127
|
+
opacity: 0;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/* Zoom-out effect */
|
|
133
|
+
.mfp-zoom-out {
|
|
134
|
+
.mfp-with-anim {
|
|
135
|
+
opacity: 0;
|
|
136
|
+
transition: all 0.3s ease-in-out;
|
|
137
|
+
transform: scale(1.3);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&.mfp-bg {
|
|
141
|
+
opacity: 0;
|
|
142
|
+
transition: all 0.3s ease-out;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* animate in */
|
|
146
|
+
&.mfp-ready {
|
|
147
|
+
.mfp-with-anim {
|
|
148
|
+
opacity: 1;
|
|
149
|
+
transform: scale(1);
|
|
150
|
+
}
|
|
151
|
+
&.mfp-bg {
|
|
152
|
+
opacity: 0.8;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* animate out */
|
|
157
|
+
&.mfp-removing {
|
|
158
|
+
.mfp-with-anim {
|
|
159
|
+
transform: scale(1.3);
|
|
160
|
+
opacity: 0;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
&.mfp-bg {
|
|
164
|
+
opacity: 0;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Portfolio
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.m-item {
|
|
6
|
+
background: var(--color-accent);
|
|
7
|
+
//height: 200px;
|
|
8
|
+
margin-bottom: 30px;
|
|
9
|
+
width: calc(33.333% - 20px);
|
|
10
|
+
|
|
11
|
+
@media only screen and (max-width: $large) {
|
|
12
|
+
width: calc(50% - 15px);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.gutter-sizer {
|
|
17
|
+
width: 30px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.gallery-grid {
|
|
21
|
+
//@include flex();
|
|
22
|
+
|
|
23
|
+
&__item {
|
|
24
|
+
margin-bottom: rem(28px);
|
|
25
|
+
width: calc(33.333% - 20px);
|
|
26
|
+
|
|
27
|
+
&:hover .gallery-grid__image {
|
|
28
|
+
transform: scale3d(1.05,1.05,1);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:hover .gallery-grid__image-wrap::before {
|
|
32
|
+
background: rgba(13,13,13,.3);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:hover .gallery-grid__image-wrap::after {
|
|
36
|
+
transform: scale(1);
|
|
37
|
+
transition: transform .6s ease-in-out;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@media only screen and (max-width: $large) {
|
|
41
|
+
width: calc(50% - 16px);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@media only screen and (max-width: $medium) {
|
|
45
|
+
width: 100%;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&__image-wrap {
|
|
50
|
+
border-radius: var(--radius-16);
|
|
51
|
+
max-height: rem(204px);
|
|
52
|
+
height: 13vw;
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
position: relative;
|
|
55
|
+
width: 100%;
|
|
56
|
+
z-index: 1;
|
|
57
|
+
|
|
58
|
+
&::before {
|
|
59
|
+
content: '';
|
|
60
|
+
background: rgba(13,13,13,0);
|
|
61
|
+
height: 100%;
|
|
62
|
+
@include position(absolute, $top: 0, $left: 0);
|
|
63
|
+
width: 100%;
|
|
64
|
+
z-index: 1;
|
|
65
|
+
transition: all .5s ease-in-out;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&::after {
|
|
69
|
+
content: '\e95f';
|
|
70
|
+
background: rgba(32, 32, 33, 0.8);
|
|
71
|
+
backdrop-filter: blur(6px);
|
|
72
|
+
border-radius: var(--radius-12);
|
|
73
|
+
font-family: 'feather' !important;
|
|
74
|
+
font-size: rem(18px);
|
|
75
|
+
color: var(--color-accent)!important;
|
|
76
|
+
@include flex($align: center, $justify: center);
|
|
77
|
+
height: rem(56px);
|
|
78
|
+
margin: auto;
|
|
79
|
+
@include position(absolute, $top: 0, $right: 0, $bottom: 0, $left: 0);
|
|
80
|
+
width: rem(56px);
|
|
81
|
+
transform: scale(0);
|
|
82
|
+
transition: transform .3s ease-in-out;
|
|
83
|
+
z-index: 2;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@media only screen and (max-width: $large-xl) {
|
|
87
|
+
max-height: rem(380px);
|
|
88
|
+
height: 15.5vw;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@media only screen and (max-width: $large) {
|
|
92
|
+
height: rem(208px);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
@media only screen and (max-width: $medium) {
|
|
96
|
+
height: rem(288px);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@media only screen and (max-width: $small) {
|
|
100
|
+
height: rem(190px);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&__image {
|
|
105
|
+
border-radius: var(--radius-16);
|
|
106
|
+
transform: scale3d(1,1,1);
|
|
107
|
+
transition: transform .4s ease-in-out;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&__caption {
|
|
111
|
+
padding: 0 rem(8px);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&__title {
|
|
115
|
+
font-size: rem(15px);
|
|
116
|
+
font-weight: 300;
|
|
117
|
+
color: var(--color-heading);
|
|
118
|
+
margin-top: rem(16px);
|
|
119
|
+
margin-bottom: 0;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&__category {
|
|
123
|
+
font-size: rem(14px);
|
|
124
|
+
color: var(--color-paragraph);
|
|
125
|
+
display: block;
|
|
126
|
+
opacity: .7;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// Filter
|
|
131
|
+
@media only screen and (min-width: 769px) {
|
|
132
|
+
.filter {
|
|
133
|
+
@include inline-flex($wrap: wrap);
|
|
134
|
+
list-style: none;
|
|
135
|
+
margin-bottom: rem(28px);
|
|
136
|
+
padding: 0;
|
|
137
|
+
|
|
138
|
+
&__item {
|
|
139
|
+
padding-right: rem(19px);
|
|
140
|
+
|
|
141
|
+
&:first-child {
|
|
142
|
+
display: none;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
&:last-child {
|
|
146
|
+
padding-right: 0;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
&.active a {
|
|
150
|
+
cursor: default;
|
|
151
|
+
opacity: 1!important;
|
|
152
|
+
background: var(--color-gradient-text);
|
|
153
|
+
-webkit-background-clip: text;
|
|
154
|
+
background-clip: text;
|
|
155
|
+
-webkit-text-fill-color: transparent;
|
|
156
|
+
-webkit-text-decoration-skip: objects;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
&__link {
|
|
161
|
+
color: var(--color-paragraph);
|
|
162
|
+
font-weight: 500;
|
|
163
|
+
padding: 0 rem(4px);
|
|
164
|
+
text-decoration: none;
|
|
165
|
+
display: block;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
opacity: 1;
|
|
168
|
+
position: relative;
|
|
169
|
+
transition: all .4s ease-in-out;
|
|
170
|
+
|
|
171
|
+
&:hover {
|
|
172
|
+
color: inherit;
|
|
173
|
+
opacity: .7;
|
|
174
|
+
text-decoration: none;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.select .placeholder {
|
|
181
|
+
display: none;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@media only screen and (max-width: $medium) {
|
|
185
|
+
.select {
|
|
186
|
+
border: 1px solid var(--color-border);
|
|
187
|
+
border-radius: var(--radius-14);
|
|
188
|
+
display: block;
|
|
189
|
+
margin-bottom: rem(32px);
|
|
190
|
+
padding: rem(3px) rem(16px);
|
|
191
|
+
position: relative;
|
|
192
|
+
vertical-align: middle;
|
|
193
|
+
text-align: left;
|
|
194
|
+
user-select: none;
|
|
195
|
+
width: 100%;
|
|
196
|
+
-webkit-touch-callout: none;
|
|
197
|
+
z-index: 2;
|
|
198
|
+
|
|
199
|
+
.placeholder {
|
|
200
|
+
cursor: pointer;
|
|
201
|
+
display: block;
|
|
202
|
+
padding: rem(8px) 0;
|
|
203
|
+
position: relative;
|
|
204
|
+
z-index: 1;
|
|
205
|
+
|
|
206
|
+
&:after {
|
|
207
|
+
@include position(absolute, $top: 50%, $right: rem(2px));
|
|
208
|
+
transform: translateY(-50%);
|
|
209
|
+
font-family: 'icomoon';
|
|
210
|
+
content: '\e90e';
|
|
211
|
+
z-index: 10;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
&.is-open {
|
|
216
|
+
.placeholder:after{
|
|
217
|
+
content: '\e90f';
|
|
218
|
+
}
|
|
219
|
+
ul {
|
|
220
|
+
display: block;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
ul {
|
|
225
|
+
background-color: var(--color-surface-1);
|
|
226
|
+
border: 1px solid var(--color-border);
|
|
227
|
+
box-shadow: var(--box-shadow-40);
|
|
228
|
+
border-radius: var(--radius-14);
|
|
229
|
+
display: none;
|
|
230
|
+
max-height: rem(600px);
|
|
231
|
+
overflow: hidden;
|
|
232
|
+
overflow-y: auto;
|
|
233
|
+
padding: rem(9px) 0;
|
|
234
|
+
@include position(absolute, $top: 100%, $left: 0);
|
|
235
|
+
width: 100%;
|
|
236
|
+
z-index: 100;
|
|
237
|
+
|
|
238
|
+
li {
|
|
239
|
+
display: block;
|
|
240
|
+
text-align: left;
|
|
241
|
+
padding: rem(8px) rem(16px);
|
|
242
|
+
cursor: pointer;
|
|
243
|
+
|
|
244
|
+
&:hover {
|
|
245
|
+
background-color: var(--color-surface-2);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
&:hover a {
|
|
249
|
+
color: var(--color-accent);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
&:first-child {
|
|
253
|
+
display: none;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
a {
|
|
257
|
+
color: var(--color-paragraph);
|
|
258
|
+
text-decoration: none;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
@media only screen and (max-width: $small) {
|
|
266
|
+
.select {
|
|
267
|
+
margin-bottom: rem(24px);
|
|
268
|
+
}
|
|
269
|
+
}
|