Skip to content

Instantly share code, notes, and snippets.

View Bobz-zg's full-sized avatar
👨‍💻
working remotely

Vlado Bosnjak Bobz-zg

👨‍💻
working remotely
View GitHub Profile
@Bobz-zg
Bobz-zg / Roots 7.0.0.-config
Created July 22, 2014 13:51
Config.rb file for Roots 7.0.0. using SASS + Compass
# Require any additional compass plugins here.
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "assets/css"
sass_dir = "assets/sass"
images_dir = "assets/img"
javascripts_dir = "assets/js"
fonts_dir = "assets/fonts"
output_style = :expanded
@Bobz-zg
Bobz-zg / Roots 7.0.0.-package
Created July 22, 2014 13:49
package.json file for Roots 7.0.0. using SASS + Compass
{
"name": "roots",
"version": "7.0.0",
"author": "Ben Word <[email protected]>",
"homepage": "http://roots.io",
"repository": {
"type": "git",
"url": "git://github.com/roots/roots.git"
},
"bugs": {
@Bobz-zg
Bobz-zg / Roots 7.0.0.-gruntfile
Last active August 29, 2015 14:04
Gruntfile.js file for Roots 7.0.0. using SASS + Compass
'use strict';
module.exports = function(grunt) {
// Load all tasks
require('load-grunt-tasks')(grunt);
// Show elapsed time
require('time-grunt')(grunt);
var jsFileList = [
'assets/vendor/bootstrap-sass/js/transition.js',
'assets/vendor/bootstrap-sass/js/alert.js',
@Bobz-zg
Bobz-zg / Roots 7.0.0-bower
Last active August 29, 2015 14:04
bower.json file for Roots 7.0.0. using SASS + Compass
{
"name": "roots",
"version": "7.0.0",
"homepage": "http://roots.io",
"authors": [
"Ben Word <[email protected]>"
],
"license": "MIT",
"private": true,
"ignore": [
/**
* Bootstrap responsive breakpoints mixins
*
*/
$screen-xs: 480px;
$screen-sm: 768px;
$screen-md: 992px;
$screen-lg: 1200px;
@mixin xxs {
/**
* Normal States
*/
@mixin ns {
&:link,
&:visited {
@content;
}
}