Merge pull request #11 from goerli/mix-staging

Merge mix stats
pull/5/head
Afri Schoedon 6 years ago committed by GitHub
commit 854720459e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .travis.yml
  2. 4
      Gruntfile.js
  3. 35
      src/css/style.css
  4. BIN
      src/fonts/SourceSansPro-Bold.woff2
  5. BIN
      src/fonts/SourceSansPro-ExtraLight.woff2
  6. BIN
      src/fonts/SourceSansPro-Light.woff2
  7. BIN
      src/fonts/SourceSansPro-Regular.woff2
  8. BIN
      src/fonts/SourceSansPro-SemiBold.woff2
  9. 1
      src/views/layout.jade

@ -6,4 +6,3 @@ before_install: npm install -g grunt-cli
install:
- npm install
- npm run dist

@ -60,14 +60,14 @@ module.exports = function(grunt) {
{
expand: true,
cwd: 'src/fonts/',
src: ['minimal-*.*'],
src: ['*.*'],
dest: 'dist/fonts/',
filter: 'isFile'
},
{
expand: true,
cwd: 'src/images/',
src: ['*.ico'],
src: ['*.*'],
dest: 'dist/',
filter: 'isFile'
},

@ -10,6 +10,41 @@ body {
-moz-osx-font-smoothing: grayscale;
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 200;
src: local('Source Sans Pro ExtraLight'), local('SourceSansPro-ExtraLight'), url(../fonts/SourceSansPro-ExtraLight.woff2) format('woff2');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(../fonts/SourceSansPro-Light.woff2) format('woff2');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(../fonts/SourceSansPro-Regular.woff2) format('woff2');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(../fonts/SourceSansPro-SemiBold.woff2) format('woff2');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(../fonts/SourceSansPro-Bold.woff2) format('woff2');
}
table td {
font-size: 14px;
white-space: nowrap !important;

@ -5,7 +5,6 @@ html(ng-app="netStatsApp")
meta(name="viewport", content="width=device-width, initial-scale=1.0, maximum-scale=1.0")
title Görli Network Status
style(type="text/css") [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; }
link(rel='stylesheet', href='//fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700')
link(rel='stylesheet', href='/css/netstats.min.css')
meta(name='robots', content='index,follow')
meta(name='googlebot', content='index,follow')

Loading…
Cancel
Save