Skip to content

Commit 1b9dff9

Browse files
author
username
committed
First commit
0 parents  commit 1b9dff9

Some content is hidden

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

52 files changed

+10649
-0
lines changed

fonts.googleapis.com/css.css

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/* cyrillic-ext */
2+
3+
@font-face {
4+
font-family: 'Merriweather';
5+
font-style: normal;
6+
font-weight: 400;
7+
src: local('Merriweather Regular'), local('Merriweather-Regular'), url(https://fonts.gstatic.com/s/merriweather/v21/u-440qyriQwlOrhSvowK_l5-cSZMZ-Y.woff2) format('woff2');
8+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
9+
}
10+
11+
/* cyrillic */
12+
13+
@font-face {
14+
font-family: 'Merriweather';
15+
font-style: normal;
16+
font-weight: 400;
17+
src: local('Merriweather Regular'), local('Merriweather-Regular'), url(https://fonts.gstatic.com/s/merriweather/v21/u-440qyriQwlOrhSvowK_l5-eCZMZ-Y.woff2) format('woff2');
18+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
19+
}
20+
21+
/* vietnamese */
22+
23+
@font-face {
24+
font-family: 'Merriweather';
25+
font-style: normal;
26+
font-weight: 400;
27+
src: local('Merriweather Regular'), local('Merriweather-Regular'), url(https://fonts.gstatic.com/s/merriweather/v21/u-440qyriQwlOrhSvowK_l5-cyZMZ-Y.woff2) format('woff2');
28+
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
29+
}
30+
31+
/* latin-ext */
32+
33+
@font-face {
34+
font-family: 'Merriweather';
35+
font-style: normal;
36+
font-weight: 400;
37+
src: local('Merriweather Regular'), local('Merriweather-Regular'), url(https://fonts.gstatic.com/s/merriweather/v21/u-440qyriQwlOrhSvowK_l5-ciZMZ-Y.woff2) format('woff2');
38+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
39+
}
40+
41+
/* latin */
42+
43+
@font-face {
44+
font-family: 'Merriweather';
45+
font-style: normal;
46+
font-weight: 400;
47+
src: local('Merriweather Regular'), local('Merriweather-Regular'), url(https://fonts.gstatic.com/s/merriweather/v21/u-440qyriQwlOrhSvowK_l5-fCZM.woff2) format('woff2');
48+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
49+
}

src/audios/bgm1.mp3

1.78 MB
Binary file not shown.

src/css/_fonts.less

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
@icomoon-font-path: "../fonts";
2+
3+
@icon-volume-high: "\ea26";
4+
@icon-volume-medium: "\ea27";
5+
@icon-volume-mute: "\ea29";
6+
@icon-volume-mute2: "\ea2a";
7+
@icon-share: "\e900";
8+
@icon-google-plus: "\ea8b";
9+
@icon-facebook: "\ea90";
10+
@icon-twitter: "\ea96";
11+
@icon-linkedin: "\eaca";
12+
@icon-pinterest: "\ead1";
13+
14+
@font-face {
15+
font-family: 'kv';
16+
src : url('@{icomoon-font-path}/kv.eot?6qtwia');
17+
src : url('@{icomoon-font-path}/kv.eot?6qtwia#iefix') format('embedded-opentype'),
18+
url('@{icomoon-font-path}/kv.ttf?6qtwia') format('truetype'),
19+
url('@{icomoon-font-path}/kv.woff?6qtwia') format('woff'),
20+
url('@{icomoon-font-path}/kv.svg?6qtwia#kv') format('svg');
21+
font-weight: normal;
22+
font-style: normal;
23+
}
24+
25+
.icon {
26+
/* use !important to prevent issues with browser extensions that change fonts */
27+
font-family: 'kv' !important;
28+
speak: none;
29+
font-style: normal;
30+
font-weight: normal;
31+
font-variant: normal;
32+
text-transform: none;
33+
line-height: 1;
34+
/* Better Font Rendering =========== */
35+
-webkit-font-smoothing: antialiased;
36+
-moz-osx-font-smoothing: grayscale;
37+
}
38+
39+
.icon-volume-high {
40+
&:before {
41+
content: @icon-volume-high;
42+
}
43+
}
44+
45+
.icon-volume-medium {
46+
&:before {
47+
content: @icon-volume-medium;
48+
}
49+
}
50+
51+
.icon-volume-mute {
52+
&:before {
53+
content: @icon-volume-mute;
54+
}
55+
}
56+
57+
.icon-volume-mute2 {
58+
&:before {
59+
content: @icon-volume-mute2;
60+
}
61+
}
62+
63+
.icon-share {
64+
&:before {
65+
content: @icon-share;
66+
}
67+
}
68+
69+
.icon-google-plus {
70+
&:before {
71+
content: @icon-google-plus;
72+
}
73+
}
74+
75+
.icon-facebook {
76+
&:before {
77+
content: @icon-facebook;
78+
}
79+
}
80+
81+
.icon-twitter {
82+
&:before {
83+
content: @icon-twitter;
84+
}
85+
}
86+
87+
.icon-linkedin {
88+
&:before {
89+
content: @icon-linkedin;
90+
}
91+
}
92+
93+
.icon-pinterest {
94+
&:before {
95+
content: @icon-pinterest;
96+
}
97+
}

src/css/_lesshat.less

+892
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)