All Projects → KittyGiraudel → Sass Boilerplate

KittyGiraudel / Sass Boilerplate

Licence: mit
A boilerplate for Sass projects using the 7-1 architecture pattern from Sass Guidelines.

Programming Languages

SCSS
7915 projects

Projects that are alternatives of or similar to Sass Boilerplate

Vue2.0 Multi Page
基于vue-cli(vue2.X,webpack1.X,es6,sass环境)多页面开发
Stars: ✭ 206 (-92.58%)
Mutual labels:  scss
Redhatofficial.github.io
The official Red Hat project page.
Stars: ✭ 211 (-92.4%)
Mutual labels:  scss
Vscode One Monokai
🎨 Vscode One Monokai theme.
Stars: ✭ 214 (-92.3%)
Mutual labels:  scss
Express React Redux Starter
Starter for Express, React, Redux, SCSS applications
Stars: ✭ 207 (-92.55%)
Mutual labels:  scss
Typesetter
Open source CMS written in PHP focused on ease of use with true WYSIWYG editing and flat-file storage.
Stars: ✭ 212 (-92.37%)
Mutual labels:  scss
Automatic App Landing Page
A Jekyll theme for automatically generating and deploying landing page sites for mobile apps.
Stars: ✭ 2,575 (-7.31%)
Mutual labels:  scss
Web Portfolio
Personal portfolio website made with the React
Stars: ✭ 207 (-92.55%)
Mutual labels:  scss
Ui
Open source wireframing tool written in typescript, react and redux.
Stars: ✭ 218 (-92.15%)
Mutual labels:  scss
Run Aspnetcore Realworld
E-Commerce real world example of run-aspnetcore ASP.NET Core web application. Implemented e-commerce domain with clean architecture for ASP.NET Core reference application, demonstrating a layered application architecture with DDD best practices. Download 100+ page eBook PDF from here ->
Stars: ✭ 208 (-92.51%)
Mutual labels:  scss
Flutter.cn
Flutter CN docs translation plan, get started from the wiki: https://github.com/cfug/flutter.cn/wiki
Stars: ✭ 213 (-92.33%)
Mutual labels:  scss
Bitrix Project
Заготовка 1C Bitrix проекта: автозагрузка, композер, базовые ООП компоненты, миграции, модели, современный фронтенд стек, инструменты для деплоя.
Stars: ✭ 207 (-92.55%)
Mutual labels:  scss
Debugged.it
Stars: ✭ 211 (-92.4%)
Mutual labels:  scss
Style Resources Loader
CSS processor resources loader for webpack
Stars: ✭ 214 (-92.3%)
Mutual labels:  scss
Django Static Precompiler
Django Static Precompiler provides template tags and filters to compile CoffeeScript, LiveScript, SASS / SCSS, LESS, Stylus, Babel and Handlebars. It works with both inline code and external files.
Stars: ✭ 206 (-92.58%)
Mutual labels:  scss
Awesome Learning
Awesome Learning - Learn JavaScript and Front-End Fundamentals at your own pace
Stars: ✭ 216 (-92.22%)
Mutual labels:  scss
Scsscale
Typographic modular scale starter based on body's font-size built on SCSS.
Stars: ✭ 206 (-92.58%)
Mutual labels:  scss
Taxi Booking App
This is a complete ride booking app, It uses google maps cordova plugin, firebase database and onesignal as notification provider.
Stars: ✭ 212 (-92.37%)
Mutual labels:  scss
Millennial
A minimalist Jekyll theme for running an online publication
Stars: ✭ 223 (-91.97%)
Mutual labels:  scss
Griddle
A CSS Grid Framework
Stars: ✭ 215 (-92.26%)
Mutual labels:  scss
Hugo Theme Codex
A minimal blog theme for Hugo 🍜
Stars: ✭ 212 (-92.37%)
Mutual labels:  scss

Sass Boilerplate

This is a sample project using the 7-1 architecture pattern and sticking to Sass Guidelines writing conventions.

Each folder of this project has its own README.md file to explain the purpose and add extra information. Be sure to browse the repository to see how it works.

Using the indented syntax

Sass conversion

This boilerplate does not provide a .sass version as it would be painful to maintain both versions without an appropriate build process. However, it is very easy to convert this boilerplate to Sass indented syntax.

Clone it, head into the project and then run:

sass-convert -F scss -T sass -i -R ./  && find . -iname “*.scss” -exec bash -c 'mv "$0" “${0%\.scss}.sass"' {} \;

Use with Node-sass

When using node-sass - in order to build that boilerplate, one needs to:

  • install node-sass if not yet installed:
npm install -g node-sass
  • run build command from command line:
node-sass stylesheets/main.scss dist/main.css
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].