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,445 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Single post
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.header-post {
|
|
6
|
+
margin-top: rem(16px);
|
|
7
|
+
text-align: center;
|
|
8
|
+
|
|
9
|
+
@media only screen and (max-width: $small) {
|
|
10
|
+
margin-top: rem(16px);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.title {
|
|
14
|
+
font-size: rem(40px);
|
|
15
|
+
margin-bottom: rem(24px);
|
|
16
|
+
|
|
17
|
+
@media only screen and (max-width: $large) {
|
|
18
|
+
font-size: rem(36px);
|
|
19
|
+
margin-bottom: rem(18px);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@media only screen and (max-width: $medium) {
|
|
23
|
+
font-size: rem(32px);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@media only screen and (max-width: $small) {
|
|
27
|
+
font-size: rem(28px);
|
|
28
|
+
margin-bottom: rem(16px);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&__image-wrap {
|
|
33
|
+
height: rem(400px);
|
|
34
|
+
margin-left: rem(-30px);
|
|
35
|
+
margin-right: rem(-30px);
|
|
36
|
+
margin-bottom: rem(40px);
|
|
37
|
+
|
|
38
|
+
@media only screen and (max-width: $small) {
|
|
39
|
+
height: rem(240px);
|
|
40
|
+
margin-left: rem(-20px);
|
|
41
|
+
margin-right: rem(-20px);
|
|
42
|
+
margin-bottom: rem(24px);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.caption-post {
|
|
48
|
+
margin-left: auto;
|
|
49
|
+
margin-right: auto;
|
|
50
|
+
margin-bottom: rem(32px);
|
|
51
|
+
width: 80%;
|
|
52
|
+
|
|
53
|
+
@media only screen and (max-width: $large) {
|
|
54
|
+
width: 100%;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@media only screen and (max-width: $small) {
|
|
58
|
+
margin-bottom: rem(19px);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.gallery-post {
|
|
63
|
+
@include flex($wrap: wrap);
|
|
64
|
+
margin-left: rem(-16px);
|
|
65
|
+
margin-right: rem(-16px);
|
|
66
|
+
|
|
67
|
+
@media only screen and (max-width: $small) {
|
|
68
|
+
margin-left: 0;
|
|
69
|
+
margin-right: 0;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&__item {
|
|
73
|
+
flex: calc(50% - 32px);
|
|
74
|
+
height: auto;
|
|
75
|
+
max-height: 80vw;
|
|
76
|
+
margin-left: rem(16px);
|
|
77
|
+
margin-right: rem(16px);
|
|
78
|
+
width: calc(50% - 32px);
|
|
79
|
+
|
|
80
|
+
@media only screen and (max-width: $small) {
|
|
81
|
+
flex: 100%;
|
|
82
|
+
margin-left: 0;
|
|
83
|
+
margin-right: 0;
|
|
84
|
+
margin-bottom: rem(16px);
|
|
85
|
+
width: 100%;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&__caption {
|
|
90
|
+
font-size: rem(13px);
|
|
91
|
+
font-style: italic;
|
|
92
|
+
padding: rem(16px) rem(16px) rem(32px);
|
|
93
|
+
text-align: center;
|
|
94
|
+
width: 100%;
|
|
95
|
+
|
|
96
|
+
@media only screen and (max-width: $small) {
|
|
97
|
+
padding: 0 0 rem(16px);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
a {
|
|
101
|
+
color: var(--color-accent);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.footer-post {
|
|
107
|
+
@include flex($align: center, $justify: center, $wrap: wrap);
|
|
108
|
+
margin-bottom: rem(32px);
|
|
109
|
+
margin-top: rem(32px);
|
|
110
|
+
padding-top: rem(32px);
|
|
111
|
+
position: relative;
|
|
112
|
+
|
|
113
|
+
@media only screen and (max-width: $small) {
|
|
114
|
+
margin-bottom: rem(16px);
|
|
115
|
+
margin-top: rem(16px);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&::before {
|
|
119
|
+
content: '';
|
|
120
|
+
background-color: var(--color-border);
|
|
121
|
+
height: rem(1px);
|
|
122
|
+
margin: auto;
|
|
123
|
+
@include position(absolute, $top: 0, $left: 0, $right: 0);
|
|
124
|
+
max-width: rem(100px);
|
|
125
|
+
width: 15%;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
&__share {
|
|
129
|
+
@include flex($align: baseline);
|
|
130
|
+
font-size: rem(13px);
|
|
131
|
+
color: var(--color-paragraph);
|
|
132
|
+
margin: 0 rem(17px);
|
|
133
|
+
|
|
134
|
+
@media only screen and (max-width: $small) {
|
|
135
|
+
margin: 0 rem(6px);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
&:hover {
|
|
139
|
+
color: var(--color-accent);
|
|
140
|
+
text-decoration: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.font-icon {
|
|
144
|
+
margin-right: rem(11px);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
span {
|
|
148
|
+
@media only screen and (max-width: $small) {
|
|
149
|
+
display: none;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// Comments
|
|
156
|
+
.comment-box {
|
|
157
|
+
@include flex($direction: column);
|
|
158
|
+
|
|
159
|
+
& & {
|
|
160
|
+
margin-left: rem(48px);
|
|
161
|
+
|
|
162
|
+
@media only screen and (max-width: $small) {
|
|
163
|
+
margin-left: rem(19px);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
&__inner {
|
|
168
|
+
border-radius: var(--radius-16);
|
|
169
|
+
box-shadow: var(--box-shadow-50);
|
|
170
|
+
@include flex();
|
|
171
|
+
margin-bottom: rem(20px);
|
|
172
|
+
padding: rem(20px) rem(20px) rem(16px) rem(20px);
|
|
173
|
+
|
|
174
|
+
@media only screen and (max-width: $small) {
|
|
175
|
+
border-radius: var(--radius-12);
|
|
176
|
+
box-shadow: var(--box-shadow-30);
|
|
177
|
+
flex-direction: column;
|
|
178
|
+
padding: rem(16px);
|
|
179
|
+
margin-bottom: rem(16px);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
&__body {
|
|
184
|
+
flex: 1;
|
|
185
|
+
padding-left: rem(16px);
|
|
186
|
+
|
|
187
|
+
@media only screen and (max-width: $small) {
|
|
188
|
+
margin-top: rem(12px);
|
|
189
|
+
padding-left: rem(0);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
p {
|
|
193
|
+
margin-bottom: rem(11px);
|
|
194
|
+
|
|
195
|
+
@media only screen and (max-width: $small) {
|
|
196
|
+
margin-bottom: rem(8px);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.emoji {
|
|
201
|
+
margin: 0 rem(5px);
|
|
202
|
+
vertical-align: bottom;
|
|
203
|
+
|
|
204
|
+
@media only screen and (max-width: $small) {
|
|
205
|
+
margin: 0 rem(2px);
|
|
206
|
+
height: rem(17px);
|
|
207
|
+
width: rem(17px);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
&__details {
|
|
213
|
+
@include flex($justify: space-between);
|
|
214
|
+
font-size: rem(18px);
|
|
215
|
+
margin-top: rem(8px);
|
|
216
|
+
margin-bottom: rem(8px);
|
|
217
|
+
|
|
218
|
+
@media only screen and (max-width: $small) {
|
|
219
|
+
font-size: rem(15px);
|
|
220
|
+
flex-direction: column;
|
|
221
|
+
margin-top: 0;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
a {
|
|
225
|
+
text-decoration: none;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
&__details-date {
|
|
230
|
+
font-size: rem(12px);
|
|
231
|
+
font-weight: 400;
|
|
232
|
+
opacity: .5;
|
|
233
|
+
|
|
234
|
+
@media only screen and (max-width: $small) {
|
|
235
|
+
font-size: rem(12px);
|
|
236
|
+
margin-top: rem(5px);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.avatar {
|
|
241
|
+
margin-right: rem(16px);
|
|
242
|
+
flex-shrink: 0;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
&__footer {
|
|
246
|
+
@include inline-flex();
|
|
247
|
+
list-style: none;
|
|
248
|
+
margin: 0;
|
|
249
|
+
padding: 0;
|
|
250
|
+
|
|
251
|
+
li {
|
|
252
|
+
cursor: pointer;
|
|
253
|
+
font-weight: 400;
|
|
254
|
+
margin-right: rem(32px);
|
|
255
|
+
|
|
256
|
+
@media only screen and (max-width: $small) {
|
|
257
|
+
margin-right: rem(16px);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
&:last-child {
|
|
261
|
+
margin-right: 0;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.font-icon {
|
|
266
|
+
font-size: rem(16px);
|
|
267
|
+
vertical-align: text-bottom;
|
|
268
|
+
|
|
269
|
+
@media only screen and (max-width: $small) {
|
|
270
|
+
font-size: rem(14px);
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
// Comment form
|
|
277
|
+
.comment-form {
|
|
278
|
+
margin-top: rem(16px);
|
|
279
|
+
position: relative;
|
|
280
|
+
|
|
281
|
+
.textarea {
|
|
282
|
+
padding: rem(24px) rem(72px);
|
|
283
|
+
max-height: rem(200px);
|
|
284
|
+
overflow: hidden!important;
|
|
285
|
+
|
|
286
|
+
@media only screen and (max-width: $small) {
|
|
287
|
+
padding: rem(14px) rem(52px);
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.btn {
|
|
292
|
+
$size-btn: rem(48px);
|
|
293
|
+
height: $size-btn;
|
|
294
|
+
margin-bottom: auto;
|
|
295
|
+
margin-top: auto;
|
|
296
|
+
padding: 0;
|
|
297
|
+
@include position(absolute, $top: 0, $bottom: 0);
|
|
298
|
+
width: $size-btn;
|
|
299
|
+
|
|
300
|
+
@media only screen and (max-width: $small) {
|
|
301
|
+
height: #{$size-btn / 1.4};
|
|
302
|
+
width: #{$size-btn / 1.4};
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
i {
|
|
306
|
+
background: var(--color-gradient-text);
|
|
307
|
+
-webkit-background-clip: text;
|
|
308
|
+
background-clip: text;
|
|
309
|
+
-webkit-text-fill-color: transparent;
|
|
310
|
+
-webkit-text-decoration-skip: objects;
|
|
311
|
+
cursor: pointer;
|
|
312
|
+
font-size: rem(16px);
|
|
313
|
+
margin: 0;
|
|
314
|
+
|
|
315
|
+
@media only screen and (max-width: $small) {
|
|
316
|
+
font-size: rem(16px);
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.btn-submit {
|
|
322
|
+
right: 0;
|
|
323
|
+
margin-right: rem(12px);
|
|
324
|
+
|
|
325
|
+
@media only screen and (max-width: $small) {
|
|
326
|
+
margin-right: rem(10px);
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.btn-emoji {
|
|
331
|
+
line-height: 0;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.dropdown {
|
|
335
|
+
height: rem(19px);
|
|
336
|
+
line-height: 1.2;
|
|
337
|
+
margin-top: auto;
|
|
338
|
+
margin-bottom: auto;
|
|
339
|
+
margin-left: rem(12px);
|
|
340
|
+
@include position(absolute, $top: 0, $bottom: 0);
|
|
341
|
+
|
|
342
|
+
&-menu {
|
|
343
|
+
background: var(--color-surface-2);
|
|
344
|
+
border: 1px solid var(--color-border);
|
|
345
|
+
border-radius: var(--radius-16);
|
|
346
|
+
box-shadow: var(--box-shadow-50);
|
|
347
|
+
margin-left: rem(-16px);
|
|
348
|
+
min-width: rem(239px);
|
|
349
|
+
max-width: rem(239px);
|
|
350
|
+
|
|
351
|
+
&::before {
|
|
352
|
+
content: '';
|
|
353
|
+
height: 0;
|
|
354
|
+
border-left: rem(6px) solid transparent;
|
|
355
|
+
border-right: rem(6px) solid transparent;
|
|
356
|
+
border-top: rem(6px) solid var(--color-surface-2);
|
|
357
|
+
@include position(absolute, $left: rem(16px), $bottom: rem(-6px));
|
|
358
|
+
width: 0;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
@media only screen and (max-width: $small) {
|
|
363
|
+
margin-left: rem(10px);
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
// Emoji
|
|
371
|
+
.emoji-wrap {
|
|
372
|
+
@include flex($justify: space-around, $wrap: wrap);
|
|
373
|
+
padding: rem(6px) rem(13px) rem(3px);
|
|
374
|
+
|
|
375
|
+
.emoji {
|
|
376
|
+
cursor: pointer;
|
|
377
|
+
border-radius: rem(3px);
|
|
378
|
+
margin: rem(2px);
|
|
379
|
+
padding: rem(3px);
|
|
380
|
+
|
|
381
|
+
&:hover {
|
|
382
|
+
background-color: var(--color-bg);
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
// Scroll Indicator
|
|
388
|
+
.scroll-line{
|
|
389
|
+
height: rem(3px);
|
|
390
|
+
@include position(fixed, $top: 0);
|
|
391
|
+
width: 0;
|
|
392
|
+
z-index: 3;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
// Social auth
|
|
396
|
+
.social-auth {
|
|
397
|
+
color: var(--color-heading);
|
|
398
|
+
list-style: none;
|
|
399
|
+
padding: 0;
|
|
400
|
+
margin-top: rem(16px);
|
|
401
|
+
|
|
402
|
+
@media only screen and (max-width: $small) {
|
|
403
|
+
font-size: rem(14px);
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
&__item {
|
|
407
|
+
@include inline-flex();
|
|
408
|
+
margin-right: rem(6px);
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
&__link {
|
|
412
|
+
color: var(--color-heading);
|
|
413
|
+
|
|
414
|
+
&:hover {
|
|
415
|
+
color: var(--color-heading);
|
|
416
|
+
opacity: .7;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.font-icon {
|
|
421
|
+
border-radius: 50%;
|
|
422
|
+
font-size: rem(12px);
|
|
423
|
+
padding: rem(6px);
|
|
424
|
+
|
|
425
|
+
@media only screen and (max-width: $small) {
|
|
426
|
+
font-size: rem(11px);
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.icon-facebook {
|
|
431
|
+
background-color: #3B5998;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.icon-twitter {
|
|
435
|
+
background-color: #55ACEE;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.icon-dribbble {
|
|
439
|
+
background-color: #F26798;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.icon-behance {
|
|
443
|
+
background-color: #4176FA;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Single project
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.header-project {
|
|
6
|
+
margin-top: rem(24px);
|
|
7
|
+
margin-bottom: rem(40px);
|
|
8
|
+
position: relative;
|
|
9
|
+
|
|
10
|
+
@media only screen and (max-width: $small) {
|
|
11
|
+
margin-top: rem(16px);
|
|
12
|
+
margin-bottom: rem(30px);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.title {
|
|
16
|
+
margin-bottom: rem(24px);
|
|
17
|
+
@include position(absolute, $bottom: 0, $left: 0);
|
|
18
|
+
z-index: 2;
|
|
19
|
+
|
|
20
|
+
@media only screen and (max-width: $small) {
|
|
21
|
+
font-size: rem(20px);
|
|
22
|
+
margin-bottom: rem(12px);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&__image-wrap {
|
|
27
|
+
height: rem(400px);
|
|
28
|
+
margin-left: rem(-30px);
|
|
29
|
+
margin-right: rem(-30px);
|
|
30
|
+
position: relative;
|
|
31
|
+
|
|
32
|
+
&::before {
|
|
33
|
+
content: '';
|
|
34
|
+
background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.4) 68.23%, rgba(13, 13, 13, 0.4) 100%);
|
|
35
|
+
height: 100%;
|
|
36
|
+
@include position(absolute, $top: 0, $left: 0);
|
|
37
|
+
width: 100%;
|
|
38
|
+
z-index: 1;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@media only screen and (max-width: $small) {
|
|
42
|
+
height: rem(250px);
|
|
43
|
+
margin-left: rem(-15px);
|
|
44
|
+
margin-right: rem(-15px);
|
|
45
|
+
margin-bottom: rem(24px);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/* Slider */
|
|
51
|
+
.js-carousel-project {
|
|
52
|
+
margin-top: rem(38px);
|
|
53
|
+
|
|
54
|
+
.swiper-pagination {
|
|
55
|
+
margin-top: rem(30px);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@media only screen and (max-width: $small) {
|
|
59
|
+
margin-top: rem(24px);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.swiper-slide-project {
|
|
64
|
+
height: rem(315px);
|
|
65
|
+
max-width: rem(560px);
|
|
66
|
+
opacity: .5;
|
|
67
|
+
overflow: hidden;
|
|
68
|
+
transition: opacity .3s ease-in-out;
|
|
69
|
+
|
|
70
|
+
&.swiper-slide-active {
|
|
71
|
+
opacity: 1;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
img {
|
|
75
|
+
object-fit: cover;
|
|
76
|
+
height: 100%;
|
|
77
|
+
width: 100%;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@media only screen and (max-width: $small) {
|
|
81
|
+
height: rem(148px);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/* Button back */
|
|
86
|
+
.btn-back {
|
|
87
|
+
color: var(--color-paragraph);
|
|
88
|
+
@include flex($align: center);
|
|
89
|
+
|
|
90
|
+
&:hover {
|
|
91
|
+
color: var(--color-accent);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
i {
|
|
95
|
+
margin-right: rem(8px);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
/* -----------------------------------------------------------------
|
|
2
|
+
- Testimonials
|
|
3
|
+
----------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
$size-avatar: rem(80px);
|
|
6
|
+
|
|
7
|
+
.swiper-container {
|
|
8
|
+
.swiper-wrapper {
|
|
9
|
+
min-height: 100%;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.review-item {
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
@include flex($direction: column);
|
|
16
|
+
background-color: var(--color-gradient-soft);
|
|
17
|
+
border-radius: var(--radius-16);
|
|
18
|
+
height: auto; //height: calc(100% - #{rem(-38px)});
|
|
19
|
+
padding: rem(30px) rem(30px) rem(24px);
|
|
20
|
+
margin-top: rem(40px);
|
|
21
|
+
|
|
22
|
+
&::before {
|
|
23
|
+
background: var(--color-gradient-soft)
|
|
24
|
+
url(../icons/icon-quote.svg);
|
|
25
|
+
background-repeat: no-repeat;
|
|
26
|
+
background-position: 0 0, right rem(30px) top rem(24px);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@media only screen and (max-width: $small) {
|
|
30
|
+
padding: rem(16px);
|
|
31
|
+
margin-top: rem(24px);
|
|
32
|
+
|
|
33
|
+
&::before {
|
|
34
|
+
background-size: 0, rem(24px);
|
|
35
|
+
background-position: 0 0, right rem(15px) top rem(15px);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.box-avatar {
|
|
40
|
+
margin-top: rem(-60px);
|
|
41
|
+
|
|
42
|
+
@media only screen and (max-width: $small) {
|
|
43
|
+
margin-top: rem(-40px);
|
|
44
|
+
margin-bottom: rem(8px);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&__caption:last-child {
|
|
49
|
+
margin-bottom: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.title {
|
|
53
|
+
margin-top: rem(-22px);
|
|
54
|
+
margin-left: calc(#{$size-avatar} + #{rem(15px)});
|
|
55
|
+
margin-bottom: rem(12px);
|
|
56
|
+
|
|
57
|
+
@media only screen and (max-width: $small) {
|
|
58
|
+
margin-left: 0;
|
|
59
|
+
margin-top: rem(8px);
|
|
60
|
+
margin-bottom: rem(8px);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.review-icon-quote {
|
|
66
|
+
background: url(../icons/icon-quote.svg);
|
|
67
|
+
background-repeat: no-repeat;
|
|
68
|
+
background-position: center;
|
|
69
|
+
margin: auto 0;
|
|
70
|
+
height: rem(24px);
|
|
71
|
+
max-width: $size-avatar;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.review-date {
|
|
75
|
+
color: var(--color-paragraph);
|
|
76
|
+
display: block;
|
|
77
|
+
opacity: .7;
|
|
78
|
+
margin: rem(4px) 0 rem(10px);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.full-rewiew-con-avatar {
|
|
82
|
+
@include flex($direction: column);
|
|
83
|
+
|
|
84
|
+
.box-avatar {
|
|
85
|
+
max-width: $size-avatar;
|
|
86
|
+
width: auto;
|
|
87
|
+
|
|
88
|
+
@media only screen and (max-width: $medium) {
|
|
89
|
+
height: auto;
|
|
90
|
+
}
|
|
91
|
+
@media only screen and (max-width: $small) {
|
|
92
|
+
margin-bottom: rem(15px);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.review-icon-quote {
|
|
97
|
+
@media only screen and (max-width: $small) {
|
|
98
|
+
display: none;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.full-rewiew-con-text p:last-child {
|
|
104
|
+
margin-bottom: 0;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* Carousel pagination */
|
|
108
|
+
.swiper-pagination {
|
|
109
|
+
margin-top: rem(8px);
|
|
110
|
+
position: relative;
|
|
111
|
+
line-height: 0;
|
|
112
|
+
|
|
113
|
+
@media only screen and (max-width: $small) {
|
|
114
|
+
margin-top: rem(16px);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.swiper-pagination-bullet {
|
|
119
|
+
background: var(--color-surface-2);
|
|
120
|
+
border-radius: rem(16px);
|
|
121
|
+
opacity: 1;
|
|
122
|
+
height: rem(10px);
|
|
123
|
+
width: rem(10px);
|
|
124
|
+
transition: width .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
125
|
+
|
|
126
|
+
@media only screen and (max-width: $small) {
|
|
127
|
+
height: rem(6px);
|
|
128
|
+
width: rem(6px);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&-active {
|
|
132
|
+
background: var(--color-gradient);
|
|
133
|
+
width: rem(20px);
|
|
134
|
+
|
|
135
|
+
@media only screen and (max-width: $small) {
|
|
136
|
+
width: rem(12px);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
|
|
142
|
+
margin: 0 rem(5px);
|
|
143
|
+
}
|
|
144
|
+
.swiper-container-horizontal>.swiper-pagination-bullets,
|
|
145
|
+
.swiper-pagination-custom, .swiper-pagination-fraction {
|
|
146
|
+
bottom: 0;
|
|
147
|
+
}
|