Skip to content
This repository has been archived by the owner on Oct 11, 2019. It is now read-only.

Commit

Permalink
by iamdroid: Filetypes icons and other improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Yurtaev committed Dec 12, 2018
1 parent 5bf0f55 commit 7131747
Show file tree
Hide file tree
Showing 32 changed files with 3,296 additions and 1,331 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
examples/*
tmp/*
node_modules/*
.sass-cache/*
.DS_Store
*.css.map
2 changes: 2 additions & 0 deletions css/animation.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions css/code-highlight.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions css/color-themes.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,230 changes: 1,230 additions & 0 deletions css/filetypes-icons.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions css/flexboxgrid.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions css/fonts.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions css/helpers.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion css/icons.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions css/services-icons.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 24 additions & 15 deletions css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions css/theme-dark.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added fonts/MaterialIcons-Regular.eot
Binary file not shown.
Binary file added fonts/MaterialIcons-Regular.ttf
Binary file not shown.
Binary file added fonts/MaterialIcons-Regular.woff
Binary file not shown.
Binary file added fonts/MaterialIcons-Regular.woff2
Binary file not shown.
3 changes: 3 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ var batch = require('gulp-batch');
var sass = require('gulp-sass');
var sasslint = require('gulp-sass-lint');
var eslint = require('gulp-eslint');
var sourcemaps = require('gulp-sourcemaps');
var autoprefixer = require('gulp-autoprefixer');
var imagemin = require('gulp-imagemin');

Expand All @@ -24,8 +25,10 @@ var autoprefixerOptions = {

gulp.task('sass', function () {
return gulp.src(SASS + '/**/*.scss')
.pipe(sourcemaps.init())
.pipe(sass.sync(sassOptions).on('error', sass.logError))
.pipe(autoprefixer(autoprefixerOptions))
.pipe(sourcemaps.write('../css'))
.pipe(gulp.dest(CSS));
});

Expand Down
Loading

0 comments on commit 7131747

Please sign in to comment.