Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var path = require('path');

module.exports = function(){
return function(style){
style.include(__dirname + '/../styl/bootstrap.styl');
style.include(__dirname + '/../styl');
style.use(nib());
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
, "stylus": "0.24.0"
}
, "main": "index"
, "engines": { "node": "0.4.x" }
, "engines": { "node": ">=0.4.0" }
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions styl/responsive.styl → styl/bootstrap/responsive.styl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
// UP TO LANDSCAPE PHONE
// ---------------------

$media (max-width: 480px)
@media (max-width: 480px)

// Smooth out the collapsing/expanding nav
.nav-collapse
Expand Down Expand Up @@ -124,7 +124,7 @@ $media (max-width: 480px)
// LANDSCAPE PHONE TO SMALL DESKTOP & PORTRAIT TABLET
// --------------------------------------------------

$media (max-width: 767px)
@media (max-width: 767px)
// GRID & CONTAINERS
// -----------------
// Remove width from containers
Expand Down Expand Up @@ -155,7 +155,7 @@ $media (max-width: 767px)
// PORTRAIT TABLET TO DEFAULT DESKTOP
// ----------------------------------

$media (min-width: 768px) and (max-width: 979px)
@media (min-width: 768px) and (max-width: 979px)

// Fixed grid
$gridSystem-generate(12, 42px, 20px)
Expand All @@ -172,7 +172,7 @@ $media (min-width: 768px) and (max-width: 979px)

// TABLETS AND BELOW
// -----------------
$media (max-width: 979px)
@media (max-width: 979px)

// UNFIX THE TOPBAR
// ----------------
Expand Down Expand Up @@ -295,7 +295,7 @@ $media (max-width: 979px)
// DEFAULT DESKTOP
// ---------------

$media (min-width: 980px)
@media (min-width: 980px)
.nav-collapse.collapse
height: auto !important

Expand All @@ -306,7 +306,7 @@ $media (min-width: 980px)
// LARGE DESKTOP & UP
// ------------------

$media (min-width: 1200px)
@media (min-width: 1200px)

// Fixed grid
$gridSystem-generate(12, 70px, 30px)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions styl/variables.styl → styl/bootstrap/variables.styl
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ $zindexModalBackdrop = 1040
$zindexModal = 1050

// Sprite icons path
$iconSpritePath = "../img/glyphicons-halflings.png"
$iconWhiteSpritePath = "../img/glyphicons-halflings-white.png"
$iconSpritePath = "glyphicons-halflings.png"
$iconWhiteSpritePath = "glyphicons-halflings-white.png"

// Input placeholder text color
$placeholderText = $grayLight
Expand Down
File renamed without changes.