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,70 @@
|
|
|
1
|
+
// Button
|
|
2
|
+
.btn {
|
|
3
|
+
background: var(--color-gradient-border-gray);
|
|
4
|
+
border-radius: var(--radius-14);
|
|
5
|
+
box-shadow: var(--box-shadow-40);
|
|
6
|
+
border: 0;
|
|
7
|
+
color: var(--color-accent);
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
font-weight: 400;
|
|
10
|
+
font-size: rem(16px);
|
|
11
|
+
line-height: initial;
|
|
12
|
+
padding: rem(16px) rem(24px);
|
|
13
|
+
position: relative;
|
|
14
|
+
transition: all .4s ease-in-out;
|
|
15
|
+
white-space: nowrap;
|
|
16
|
+
z-index: 0;
|
|
17
|
+
|
|
18
|
+
&::before {
|
|
19
|
+
content: '';
|
|
20
|
+
@include position(absolute, $top: 1px, $right: 1px, $bottom: 1px, $left: 1px);
|
|
21
|
+
background: var(--color-btn);
|
|
22
|
+
//background-clip: padding-box!important;
|
|
23
|
+
//border: 1px solid transparent;
|
|
24
|
+
border-radius: inherit;
|
|
25
|
+
transition: all .4s ease-in-out;
|
|
26
|
+
z-index: -1;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:hover {
|
|
30
|
+
background: var(--color-gradient-border);
|
|
31
|
+
color: var(--color-accent);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&:hover::before {
|
|
35
|
+
background: var(--color-gradient-icon);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&:focus {
|
|
39
|
+
box-shadow: var(--box-shadow-40);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.font-icon {
|
|
43
|
+
margin-right: rem(6px);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&--small {
|
|
47
|
+
box-shadow: var(--box-shadow-30);
|
|
48
|
+
font-size: rem(12px);
|
|
49
|
+
padding: rem(10px) rem(16px);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&--small:focus {
|
|
53
|
+
box-shadow: var(--box-shadow-30);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&--icon-left i {
|
|
57
|
+
margin-right: rem(8px);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&--icon-right i {
|
|
61
|
+
margin-left: rem(8px);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@media only screen and (max-width: $small) {
|
|
65
|
+
font-size: rem(14px);
|
|
66
|
+
padding: rem(12px) rem(18px);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
button:focus {outline: none;}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Cases
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.case-item {
|
|
6
|
+
@include flex();
|
|
7
|
+
height: calc(100% - #{rem(20px)});
|
|
8
|
+
padding-bottom: rem(20px);
|
|
9
|
+
position: relative;
|
|
10
|
+
|
|
11
|
+
@media only screen and (max-width: $small) {
|
|
12
|
+
@include flex($align: center, $direction: column);
|
|
13
|
+
text-align: center;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&__icon {
|
|
17
|
+
$size: rem(40px);
|
|
18
|
+
margin-right: rem(16px);
|
|
19
|
+
height: $size;
|
|
20
|
+
width: $size;
|
|
21
|
+
|
|
22
|
+
@media only screen and (max-width: $small) {
|
|
23
|
+
margin-right: 0;
|
|
24
|
+
margin-bottom: rem(13px);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
div {
|
|
29
|
+
flex: 1;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&__caption:last-child {
|
|
33
|
+
margin-bottom: 0;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Clients
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.js-carousel-clients {
|
|
6
|
+
padding-top: rem(8px);
|
|
7
|
+
padding-bottom: rem(16px);
|
|
8
|
+
|
|
9
|
+
.swiper-slide {
|
|
10
|
+
text-align: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.logo-client {
|
|
14
|
+
max-width: 80%;
|
|
15
|
+
filter: grayscale(1);
|
|
16
|
+
transition: all .5s ease-in-out;
|
|
17
|
+
|
|
18
|
+
&:hover {
|
|
19
|
+
filter: grayscale(0);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Contact
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.contact-form {
|
|
6
|
+
.btn {
|
|
7
|
+
@media only screen and (max-width: $medium) {
|
|
8
|
+
width: 100%;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.tabcontent & {
|
|
13
|
+
padding-bottom: rem(30px);
|
|
14
|
+
|
|
15
|
+
@media only screen and (max-width: $small) {
|
|
16
|
+
padding-bottom: rem(20px);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// Map
|
|
22
|
+
.map {
|
|
23
|
+
border-radius: var(--radius-16);
|
|
24
|
+
height: rem(380px);
|
|
25
|
+
margin-bottom: rem(32px);
|
|
26
|
+
position: relative;
|
|
27
|
+
direction: ltr;
|
|
28
|
+
|
|
29
|
+
@media only screen and (max-width: $small) {
|
|
30
|
+
height: rem(250px);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.popover-map {
|
|
35
|
+
&-title {
|
|
36
|
+
color: var(--color-surface-1);
|
|
37
|
+
font-size: rem(19px);
|
|
38
|
+
margin-top: rem(1px);
|
|
39
|
+
margin-bottom: rem(8px);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&-caption {
|
|
43
|
+
color: var(--color-surface-1);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Mapbox
|
|
48
|
+
#marker {
|
|
49
|
+
background-image: url('../images/icon-map-pic.svg');
|
|
50
|
+
background-size: cover;
|
|
51
|
+
width: rem(60px);
|
|
52
|
+
height: rem(60px);
|
|
53
|
+
cursor: pointer;
|
|
54
|
+
|
|
55
|
+
@media only screen and (max-width: $small) {
|
|
56
|
+
width: rem(40px);
|
|
57
|
+
height: rem(40px);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.mapboxgl-popup-content {
|
|
62
|
+
background: var(--color-surface-2)!important;
|
|
63
|
+
border: 1px solid var(--color-border);
|
|
64
|
+
border-radius: var(--radius-8)!important;
|
|
65
|
+
box-shadow: var(--box-shadow-30)!important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
|
|
69
|
+
border-top-color: var(--color-border)!important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.mapboxgl-popup-close-button {
|
|
73
|
+
color: var(--color-heading);
|
|
74
|
+
}
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Form
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
// Input Text
|
|
6
|
+
%formStyle {
|
|
7
|
+
background-color: transparent;
|
|
8
|
+
border: 1px solid var(--color-border);
|
|
9
|
+
border-radius: var(--radius-14);
|
|
10
|
+
box-shadow: none;
|
|
11
|
+
color: var(--color-heading);
|
|
12
|
+
font-size: inherit;
|
|
13
|
+
height: auto;
|
|
14
|
+
padding: rem(14px) rem(22px) rem(13px);
|
|
15
|
+
position: relative;
|
|
16
|
+
width: 100%;
|
|
17
|
+
-webkit-appearance: none;
|
|
18
|
+
-moz-appearance: none;
|
|
19
|
+
appearance: none;
|
|
20
|
+
|
|
21
|
+
@media only screen and (max-width: $small) {
|
|
22
|
+
padding: rem(13px) rem(22px) rem(12px);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
%formStyle-focus {
|
|
27
|
+
background-color: transparent;
|
|
28
|
+
border-color: var(--color-accent);
|
|
29
|
+
color: var(--color-heading);
|
|
30
|
+
box-shadow: none;
|
|
31
|
+
outline: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.input {
|
|
35
|
+
@extend %formStyle;
|
|
36
|
+
line-height: inherit;
|
|
37
|
+
|
|
38
|
+
&:focus {
|
|
39
|
+
@extend %formStyle-focus;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
43
|
+
line-height: 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&__icon {
|
|
47
|
+
padding-left: rem(54px);
|
|
48
|
+
|
|
49
|
+
@media only screen and (max-width: $small) {
|
|
50
|
+
padding-left: rem(45px);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.textarea {
|
|
56
|
+
@extend %formStyle;
|
|
57
|
+
border-radius: var(--radius-14);
|
|
58
|
+
display: block;
|
|
59
|
+
padding: rem(13px) rem(19px);
|
|
60
|
+
resize: none;
|
|
61
|
+
|
|
62
|
+
&:focus {
|
|
63
|
+
@extend %formStyle-focus;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.form-group {
|
|
68
|
+
margin-bottom: rem(32px);
|
|
69
|
+
position: relative;
|
|
70
|
+
|
|
71
|
+
@media only screen and (max-width: $small) {
|
|
72
|
+
margin-bottom: rem(27px);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.help-block {
|
|
77
|
+
position: absolute;
|
|
78
|
+
font-size: rem(12px);
|
|
79
|
+
line-height: 1.4;
|
|
80
|
+
padding-top: rem(5px);
|
|
81
|
+
padding-left: rem(6px);
|
|
82
|
+
|
|
83
|
+
@media only screen and (max-width: $small) {
|
|
84
|
+
font-size: rem(11px);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.with-errors {
|
|
89
|
+
color: var(--color-error);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.has-error input,
|
|
93
|
+
.has-error textarea,
|
|
94
|
+
.has-error input:focus,
|
|
95
|
+
.has-error textarea:focus {
|
|
96
|
+
border-color: var(--color-error);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
#validator-contact {
|
|
100
|
+
font-size: rem(14px);
|
|
101
|
+
margin-top: rem(16px);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.form-control::-webkit-input-placeholder {
|
|
105
|
+
color: var(--color-paragraph);
|
|
106
|
+
opacity: .5;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.form-control::-moz-placeholder {
|
|
110
|
+
color: var(--color-paragraph);
|
|
111
|
+
opacity: .5;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.form-control:-ms-input-placeholder {
|
|
115
|
+
color: var(--color-paragraph);
|
|
116
|
+
opacity: .5;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.form-control::-ms-input-placeholder {
|
|
120
|
+
color: var(--color-paragraph);
|
|
121
|
+
opacity: .5;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.form-control::placeholder {
|
|
125
|
+
color: var(--color-paragraph);
|
|
126
|
+
opacity: .5;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
input:invalid,
|
|
130
|
+
textarea:invalid {
|
|
131
|
+
outline: none !important;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// Checkbox
|
|
135
|
+
.form-check-input {
|
|
136
|
+
background: transparent;
|
|
137
|
+
border-color: rgba(244,244,244, .15);
|
|
138
|
+
|
|
139
|
+
&:checked {
|
|
140
|
+
background-color: var(--color-accent);
|
|
141
|
+
border-color: var(--color-accent);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
&:checked[type=checkbox] {
|
|
145
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")!important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
&:checked[type=radio] {
|
|
149
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e");
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&:focus {
|
|
153
|
+
border-color: var(--color-paragraph);
|
|
154
|
+
box-shadow: 0 0 0 rem(2px) rgba(244,244,244, .25);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// Select
|
|
159
|
+
select,
|
|
160
|
+
.custom-select {
|
|
161
|
+
@extend %formStyle;
|
|
162
|
+
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.1rem center/10px 16px;
|
|
163
|
+
|
|
164
|
+
&:focus {
|
|
165
|
+
@extend %formStyle-focus;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
option {
|
|
169
|
+
//color: $black-color;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
// Dropdown
|
|
174
|
+
.dropdown {
|
|
175
|
+
&-menu {
|
|
176
|
+
background: var(--color-surface-2);
|
|
177
|
+
border: 1px solid var(--color-border);
|
|
178
|
+
border-radius: var(--radius-12);
|
|
179
|
+
box-shadow: var(--box-shadow-50);
|
|
180
|
+
font-size: inherit;
|
|
181
|
+
|
|
182
|
+
&::before {
|
|
183
|
+
content: '';
|
|
184
|
+
border-left: rem(6px) solid transparent;
|
|
185
|
+
border-right: rem(6px) solid transparent;
|
|
186
|
+
border-bottom: rem(6px) solid var(--color-border);
|
|
187
|
+
height: 0;
|
|
188
|
+
@include position(absolute, $top: rem(-6px), $left: rem(17px));
|
|
189
|
+
width: 0;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
&-item {
|
|
194
|
+
color: var(--color-paragraph);
|
|
195
|
+
font-weight: 300;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
&-item:hover,
|
|
199
|
+
&-item:focus {
|
|
200
|
+
background: var(--color-border);
|
|
201
|
+
color: var(--color-paragraph);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
&.dropup {
|
|
205
|
+
.dropdown-menu {
|
|
206
|
+
&::before {
|
|
207
|
+
border-left: rem(6px) solid transparent;
|
|
208
|
+
border-right: rem(6px) solid transparent;
|
|
209
|
+
border-top: rem(6px) solid var(--color-border);
|
|
210
|
+
border-bottom: rem(6px) solid transparent;
|
|
211
|
+
top: auto;
|
|
212
|
+
bottom: rem(-12px);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// Progress
|
|
219
|
+
.progress {
|
|
220
|
+
display: block;
|
|
221
|
+
background: transparent;
|
|
222
|
+
font-size: rem(15px);
|
|
223
|
+
margin-bottom: rem(24px);
|
|
224
|
+
height: auto;
|
|
225
|
+
|
|
226
|
+
@media only screen and (max-width: $small) {
|
|
227
|
+
font-size: rem(13px);
|
|
228
|
+
margin-bottom: rem(16px);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
&:last-child {
|
|
232
|
+
margin-bottom: 0;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
&-bar {
|
|
236
|
+
background-color: var(--color-border);
|
|
237
|
+
border-radius: var(--radius-16);
|
|
238
|
+
height: rem(8px);
|
|
239
|
+
overflow: inherit;
|
|
240
|
+
position: relative;
|
|
241
|
+
width: 100%;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
&-bar span {
|
|
245
|
+
background: var(--color-gradient);
|
|
246
|
+
border-radius: rem(16px);
|
|
247
|
+
display: block;
|
|
248
|
+
overflow: hidden;
|
|
249
|
+
position: relative;
|
|
250
|
+
height: rem(8px);
|
|
251
|
+
width: 0%;
|
|
252
|
+
transition: width .6s ease-in-out;
|
|
253
|
+
z-index: 1;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.progress-text {
|
|
257
|
+
margin-bottom: rem(8px);
|
|
258
|
+
|
|
259
|
+
span {
|
|
260
|
+
color: var(--color-heading);
|
|
261
|
+
font-weight: 500;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- General Styles
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
*,
|
|
6
|
+
::before,
|
|
7
|
+
::after {
|
|
8
|
+
background-repeat: no-repeat;
|
|
9
|
+
box-sizing: border-box;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
html {
|
|
13
|
+
-webkit-overflow-scrolling: touch;
|
|
14
|
+
-webkit-box-sizing: border-box;
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
//-ms-overflow-x: hidden;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
body, html {
|
|
20
|
+
font-size: rem(16px);
|
|
21
|
+
-webkit-text-size-adjust: 100%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
body {
|
|
25
|
+
background-color: var(--color-bg);
|
|
26
|
+
color: var(--color-paragraph);
|
|
27
|
+
font-family: var(--font-family);
|
|
28
|
+
font-size: var(--font-base-size);
|
|
29
|
+
font-weight: 300;
|
|
30
|
+
line-height: 1.65;
|
|
31
|
+
min-height: 100vh;
|
|
32
|
+
overflow-x: hidden;
|
|
33
|
+
-ms-overflow-style: scrollbar;
|
|
34
|
+
-webkit-font-smoothing: antialiased;
|
|
35
|
+
|
|
36
|
+
@media only screen and (max-width: $small) {
|
|
37
|
+
font-size: var(--font-mobile-size);
|
|
38
|
+
line-height: 1.6;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
html.is-scroll-disabled body {
|
|
43
|
+
height: 100vh;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
48
|
+
html.is-scroll-disabled {
|
|
49
|
+
overflow: hidden;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.no-scroll {
|
|
54
|
+
overflow: hidden;
|
|
55
|
+
-ms-overflow-style: none;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.no-scroll-height {
|
|
59
|
+
overflow-x: hidden;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.svg-defs {
|
|
63
|
+
position: absolute;
|
|
64
|
+
height: 0;
|
|
65
|
+
width: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
img {
|
|
69
|
+
max-width: 100%;
|
|
70
|
+
-webkit-user-select: none;
|
|
71
|
+
-moz-user-select: none;
|
|
72
|
+
-ms-user-select: none;
|
|
73
|
+
user-select: none;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
figure {
|
|
77
|
+
margin: 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
iframe {
|
|
81
|
+
background-color: var(--color-bg);
|
|
82
|
+
border: 0;
|
|
83
|
+
display: block;
|
|
84
|
+
height: 100%;
|
|
85
|
+
width: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.cover {
|
|
89
|
+
object-fit: cover;
|
|
90
|
+
object-position: center;
|
|
91
|
+
font-family: 'object-fit: cover; object-position: center;';
|
|
92
|
+
height: 100%;
|
|
93
|
+
width: 100%;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
::-moz-selection {background: transparent; color: var(--color-accent)}
|
|
97
|
+
::selection {background: transparent; color: var(--color-accent)}
|
|
98
|
+
|
|
99
|
+
// Scroll Indicator
|
|
100
|
+
.scroll-line {
|
|
101
|
+
background: var(--color-gradient);
|
|
102
|
+
height: rem(3px);
|
|
103
|
+
@include position(fixed, $top: 0);
|
|
104
|
+
width: 0;
|
|
105
|
+
z-index: 3;
|
|
106
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Navbar
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
$size-nav: rem(64px);
|
|
6
|
+
|
|
7
|
+
// Nav
|
|
8
|
+
.nav-container {
|
|
9
|
+
background: var(--color-surface-2);
|
|
10
|
+
border: 1px solid var(--color-border);
|
|
11
|
+
border-radius: 0 var(--radius-20) 0 var(--radius-20);
|
|
12
|
+
@include flex($align: center, $justify: flex-end);
|
|
13
|
+
height: $size-nav;
|
|
14
|
+
padding-right: rem(38px);
|
|
15
|
+
padding-left: rem(38px);
|
|
16
|
+
@include position(absolute, $top: 0, $right: 0);
|
|
17
|
+
z-index: 1;
|
|
18
|
+
|
|
19
|
+
@media only screen and (max-width: $large) {
|
|
20
|
+
backdrop-filter: blur(6px);
|
|
21
|
+
background: rgba(43, 43, 44,.75);
|
|
22
|
+
border-radius: var(--radius-20) var(--radius-20) 0 0;
|
|
23
|
+
box-shadow: var(--box-shadow-30);
|
|
24
|
+
@include flex($align: center, $justify: center);
|
|
25
|
+
@include position(fixed, $top: auto, $left: 0, $bottom: 0);
|
|
26
|
+
height: #{$size-nav - rem(3px)};
|
|
27
|
+
width: 100%;
|
|
28
|
+
z-index: 1112;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@media only screen and (max-width: $small) {
|
|
32
|
+
border-radius: var(--radius-12) var(--radius-12) 0 0;
|
|
33
|
+
height: rem(48px);
|
|
34
|
+
padding-right: rem(16px);
|
|
35
|
+
padding-left: rem(16px);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.medium-zoom--opened .nav-container {
|
|
40
|
+
@media only screen and (max-width: $large) {
|
|
41
|
+
z-index: 10;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.nav {
|
|
46
|
+
@include flex($align: center, $justify: center);
|
|
47
|
+
height: 100%;
|
|
48
|
+
overflow: hidden;
|
|
49
|
+
|
|
50
|
+
@media only screen and (max-width: $medium) {
|
|
51
|
+
font-size: rem(14px);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@media only screen and (max-width: $small) {
|
|
55
|
+
font-size: rem(11px)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&__item {
|
|
59
|
+
margin-right: rem(44px);
|
|
60
|
+
|
|
61
|
+
@media only screen and (max-width: $large) {
|
|
62
|
+
margin-right: rem(32px);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@media only screen and (max-width: $small) {
|
|
66
|
+
margin-right: rem(20px);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
a {
|
|
70
|
+
background: none;
|
|
71
|
+
color: var(--color-paragraph);
|
|
72
|
+
-webkit-text-fill-color: inherit;
|
|
73
|
+
font-weight: 500;
|
|
74
|
+
opacity: 1;
|
|
75
|
+
transition: all .3s ease-in-out;
|
|
76
|
+
|
|
77
|
+
&:hover {
|
|
78
|
+
opacity: .6;
|
|
79
|
+
text-decoration: none;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&.active {
|
|
83
|
+
background: var(--color-gradient-text);
|
|
84
|
+
-webkit-background-clip: text;
|
|
85
|
+
background-clip: text;
|
|
86
|
+
-webkit-text-fill-color: transparent;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&.active:hover {
|
|
90
|
+
opacity: 1;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&__item:last-child {
|
|
96
|
+
margin-right: 0;
|
|
97
|
+
}
|
|
98
|
+
}
|