Skip to content

Commit e79315e

Browse files
committed
first commit
0 parents  commit e79315e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+11464
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

app/css/main.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
313 KB
Binary file not shown.
313 KB
Binary file not shown.
136 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
246 KB
Binary file not shown.
246 KB
Binary file not shown.
137 KB
Binary file not shown.
177 KB
Binary file not shown.
177 KB
Binary file not shown.
91.8 KB
Binary file not shown.

app/ht.access

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<ifModule mod_expires.c>
2+
3+
# Add correct content-type for fonts
4+
AddType application/vnd.ms-fontobject .eot
5+
AddType application/x-font-ttf .ttf
6+
AddType application/x-font-opentype .otf
7+
AddType application/x-font-woff .woff
8+
AddType image/svg+xml .svg
9+
10+
# Compress compressible fonts
11+
AddOutputFilterByType DEFLATE application/x-font-ttf application/x-font-opentype image/svg+xml
12+
13+
ExpiresActive On
14+
ExpiresDefault "access plus 5 seconds"
15+
16+
# Cache Images
17+
ExpiresByType image/x-icon "access plus 2592000 seconds"
18+
ExpiresByType image/jpeg "access plus 2592000 seconds"
19+
ExpiresByType image/png "access plus 2592000 seconds"
20+
ExpiresByType image/gif "access plus 2592000 seconds"
21+
ExpiresByType image/svg+xml "access plus 2592000 seconds"
22+
23+
# Cache Fonts
24+
ExpiresByType application/vnd.ms-fontobject "access plus 2592000 seconds"
25+
ExpiresByType application/x-font-ttf "access plus 2592000 seconds"
26+
ExpiresByType application/x-font-opentype "access plus 2592000 seconds"
27+
ExpiresByType application/x-font-woff "access plus 2592000 seconds"
28+
ExpiresByType image/svg+xml "access plus 2592000 seconds"
29+
30+
# Cache other content types (Flash, CSS, JS, HTML, XML)
31+
ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds"
32+
ExpiresByType text/css "access plus 604800 seconds"
33+
ExpiresByType text/javascript "access plus 2592000 seconds"
34+
ExpiresByType application/javascript "access plus 2592000 seconds"
35+
ExpiresByType application/x-javascript "access plus 2592000 seconds"
36+
ExpiresByType text/html "access plus 600 seconds"
37+
ExpiresByType application/xhtml+xml "access plus 600 seconds"
38+
39+
</ifModule>
40+
41+
<ifModule mod_deflate.c>
42+
43+
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
44+
45+
</ifModule>

app/img/favicon/Thumbs.db

6 KB
Binary file not shown.
2.64 KB
Loading
1.95 KB
Loading

app/img/favicon/apple-touch-icon.png

1.65 KB
Loading

app/img/favicon/favicon.ico

9.44 KB
Binary file not shown.

app/img/lang-en.png

884 Bytes
Loading

app/img/lang-ru.png

177 Bytes
Loading

app/index.html

Lines changed: 351 additions & 0 deletions
Large diffs are not rendered by default.

app/js/common.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
$(document).ready(function(){
2+
3+
//header mob
4+
$('.header-bar').on('click', function(){
5+
$('.header').toggleClass('header-active');
6+
});
7+
8+
$(document).on('click', function (e){
9+
var block = $(".header");
10+
if (!block.is(e.target) && block.has(e.target).length === 0)
11+
$('.header').removeClass('header-active');
12+
});
13+
14+
//modal
15+
var modalCont = $('.modal');
16+
17+
$('.button-modal').on('click',function(e){
18+
e.preventDefault();
19+
var id = $(this).attr('href');
20+
$(modalCont).removeClass('open');
21+
$(id).addClass('open');
22+
$('#info-form').val(hiddenValue);
23+
});
24+
25+
$('.cancel, .modal-overlay').on('click',function(){
26+
$(modalCont).removeClass('open');
27+
$('.modal-overlay').removeClass('open-overlay');
28+
});
29+
30+
});

app/js/common.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/js/scripts.min.js

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/libs/slick/slick-theme.css

Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
@charset 'UTF-8';
2+
3+
/* Arrows */
4+
.slick-prev,
5+
.slick-next
6+
{
7+
font-size: 0;
8+
line-height: 0;
9+
10+
position: absolute;
11+
top: 50%;
12+
13+
display: block;
14+
15+
width: 20px;
16+
height: 20px;
17+
padding: 0;
18+
-webkit-transform: translate(0, -50%);
19+
-ms-transform: translate(0, -50%);
20+
transform: translate(0, -50%);
21+
22+
cursor: pointer;
23+
24+
color: transparent;
25+
border: none;
26+
outline: none;
27+
background: transparent;
28+
}
29+
.slick-prev:hover:before,
30+
.slick-prev:focus:before,
31+
.slick-next:hover:before,
32+
.slick-next:focus:before
33+
{
34+
opacity: 1;
35+
}
36+
.slick-prev.slick-disabled:before,
37+
.slick-next.slick-disabled:before
38+
{
39+
opacity: .25;
40+
}
41+
42+
.slick-prev:before,
43+
.slick-next:before
44+
{
45+
font-size: 20px;
46+
line-height: 1;
47+
48+
opacity: .75;
49+
color: white;
50+
51+
-webkit-font-smoothing: antialiased;
52+
-moz-osx-font-smoothing: grayscale;
53+
}
54+
55+
.slick-prev
56+
{
57+
left: -25px;
58+
}
59+
[dir='rtl'] .slick-prev
60+
{
61+
right: -25px;
62+
left: auto;
63+
}
64+
.slick-prev:before
65+
{
66+
content: '';
67+
}
68+
[dir='rtl'] .slick-prev:before
69+
{
70+
content: '';
71+
}
72+
73+
.slick-next
74+
{
75+
right: -25px;
76+
}
77+
[dir='rtl'] .slick-next
78+
{
79+
right: auto;
80+
left: -25px;
81+
}
82+
.slick-next:before
83+
{
84+
content: '';
85+
}
86+
[dir='rtl'] .slick-next:before
87+
{
88+
content: '';
89+
}
90+
91+
/* Dots */
92+
.slick-dotted.slick-slider
93+
{
94+
margin-bottom: 30px;
95+
}
96+
97+
.slick-dots
98+
{
99+
position: absolute;
100+
bottom: -25px;
101+
102+
display: block;
103+
104+
width: 100%;
105+
padding: 0;
106+
margin: 0;
107+
108+
list-style: none;
109+
110+
text-align: center;
111+
}
112+
.slick-dots li
113+
{
114+
position: relative;
115+
116+
display: inline-block;
117+
118+
width: 20px;
119+
height: 20px;
120+
margin: 0 5px;
121+
padding: 0;
122+
123+
cursor: pointer;
124+
}
125+
.slick-dots li button
126+
{
127+
font-size: 0;
128+
line-height: 0;
129+
130+
display: block;
131+
132+
width: 20px;
133+
height: 20px;
134+
padding: 5px;
135+
136+
cursor: pointer;
137+
138+
color: transparent;
139+
border: 0;
140+
outline: none;
141+
background: transparent;
142+
}
143+
.slick-dots li button:hover,
144+
.slick-dots li button:focus
145+
{
146+
outline: none;
147+
}
148+
.slick-dots li button:hover:before,
149+
.slick-dots li button:focus:before
150+
{
151+
opacity: 1;
152+
}
153+
.slick-dots li button:before
154+
{
155+
font-size: 6px;
156+
line-height: 20px;
157+
158+
position: absolute;
159+
top: 0;
160+
left: 0;
161+
162+
width: 20px;
163+
height: 20px;
164+
165+
content: '';
166+
text-align: center;
167+
168+
opacity: .25;
169+
color: black;
170+
171+
-webkit-font-smoothing: antialiased;
172+
-moz-osx-font-smoothing: grayscale;
173+
}
174+
.slick-dots li.slick-active button:before
175+
{
176+
opacity: .75;
177+
color: black;
178+
}

app/libs/slick/slick.css

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/* Slider */
2+
.slick-slider
3+
{
4+
position: relative;
5+
6+
display: block;
7+
box-sizing: border-box;
8+
9+
-webkit-user-select: none;
10+
-moz-user-select: none;
11+
-ms-user-select: none;
12+
user-select: none;
13+
14+
-webkit-touch-callout: none;
15+
-khtml-user-select: none;
16+
-ms-touch-action: pan-y;
17+
touch-action: pan-y;
18+
-webkit-tap-highlight-color: transparent;
19+
}
20+
21+
.slick-list
22+
{
23+
position: relative;
24+
25+
display: block;
26+
overflow: hidden;
27+
28+
margin: 0;
29+
padding: 0;
30+
}
31+
.slick-list:focus
32+
{
33+
outline: none;
34+
}
35+
.slick-list.dragging
36+
{
37+
cursor: pointer;
38+
cursor: hand;
39+
}
40+
41+
.slick-slider .slick-track,
42+
.slick-slider .slick-list
43+
{
44+
-webkit-transform: translate3d(0, 0, 0);
45+
-moz-transform: translate3d(0, 0, 0);
46+
-ms-transform: translate3d(0, 0, 0);
47+
-o-transform: translate3d(0, 0, 0);
48+
transform: translate3d(0, 0, 0);
49+
}
50+
51+
.slick-track
52+
{
53+
position: relative;
54+
top: 0;
55+
left: 0;
56+
57+
display: block;
58+
}
59+
.slick-track:before,
60+
.slick-track:after
61+
{
62+
display: table;
63+
64+
content: '';
65+
}
66+
.slick-track:after
67+
{
68+
clear: both;
69+
}
70+
.slick-loading .slick-track
71+
{
72+
visibility: hidden;
73+
}
74+
75+
.slick-slide
76+
{
77+
display: none;
78+
float: left;
79+
80+
height: 100%;
81+
min-height: 1px;
82+
}
83+
[dir='rtl'] .slick-slide
84+
{
85+
float: right;
86+
}
87+
.slick-slide img
88+
{
89+
display: block;
90+
}
91+
.slick-slide.slick-loading img
92+
{
93+
display: none;
94+
}
95+
.slick-slide.dragging img
96+
{
97+
pointer-events: none;
98+
}
99+
.slick-initialized .slick-slide
100+
{
101+
display: block;
102+
}
103+
.slick-loading .slick-slide
104+
{
105+
visibility: hidden;
106+
}
107+
.slick-vertical .slick-slide
108+
{
109+
display: block;
110+
111+
height: auto;
112+
113+
border: 1px solid transparent;
114+
}
115+
.slick-arrow.slick-hidden {
116+
display: none;
117+
}

app/libs/slick/slick.min.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/sass/_fonts.sass

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@import "_mixins/font-face"
2+
3+
+font-face("PT Sans", "../fonts/PTSans-Regular/PTSans-Regular", normal)
4+
+font-face("Roboto", "../fonts/Roboto-Medium/Roboto-Medium", 500)
5+
+font-face("Montserrat", "../fonts/Montserrat-Bold/Montserrat-Bold", bold)
6+
+font-face("Montserrat", "../fonts/Montserrat-SemiBold/Montserrat-SemiBold", 600)

app/sass/_libs.sass

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@import "../libs/slick/slick"
2+
@import "../libs/slick/slick-theme"

app/sass/_media.sass

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "vars"

0 commit comments

Comments
 (0)