Browse Source

disabled own fonts

master
Igor Zhukov 9 years ago
parent
commit
17e79e74f6
  1. 8
      app/css/font.css
  2. BIN
      app/fonts/400cn.woff2
  3. BIN
      app/fonts/400ln.woff2
  4. BIN
      app/fonts/600cn.woff2
  5. BIN
      app/fonts/600ln.woff2
  6. 2
      app/index.html
  7. 2
      app/webogram.appcache
  8. 2
      gulpfile.js

8
app/css/font.css

@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/400c.woff2) format('woff2');
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/400cn.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/400l.woff2) format('woff2');
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/400ln.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@ -22,7 +22,7 @@ @@ -22,7 +22,7 @@
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/600c.woff2) format('woff2');
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/600cn.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/600l.woff2) format('woff2');
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/600ln.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

BIN
app/fonts/400cn.woff2

Binary file not shown.

BIN
app/fonts/400ln.woff2

Binary file not shown.

BIN
app/fonts/600cn.woff2

Binary file not shown.

BIN
app/fonts/600ln.woff2

Binary file not shown.

2
app/index.html

@ -15,7 +15,7 @@ @@ -15,7 +15,7 @@
<!-- endbuild -->
<!-- <link rel="stylesheet" href="css/font.css"/> -->
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,600&amp;subset=cyrillic,latin" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700&amp;subset=cyrillic,cyrillic-ext,latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="icon" href="favicon.ico" type="image/x-icon" />

2
app/webogram.appcache

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
CACHE MANIFEST
# 51
# 53
NETWORK:
*

2
gulpfile.js

@ -48,6 +48,8 @@ gulp.task('copy', function() { @@ -48,6 +48,8 @@ gulp.task('copy', function() {
.pipe(gulp.dest('dist')),
gulp.src(['app/img/**/*.wav'])
.pipe(gulp.dest('dist/img')),
// gulp.src(['app/fonts/*'])
// .pipe(gulp.dest('dist/fonts')),
gulp.src(['app/js/lib/polyfill.js', 'app/js/lib/bin_utils.js'])
.pipe(gulp.dest('dist/js/lib')),
gulp.src('app/vendor/closure/long.js')

Loading…
Cancel
Save