Questions tagged [jeet-grid]

Jeet is a CSS grid system similar to that found in Bootstrap and Foundation.

Jeet is a CSS grid system, implemented in both Sass and Stylus and inspired by Semantic.gs.


Documentation :

23 questions
0
votes
1 answer

Jeet Gird - Can I use Fixed gutters?

Is there any way I can use fixed gutters with Jeet.gs? I am using the SASS version of the grid. http://jeet.gs
eikeco
  • 15
  • 5
0
votes
1 answer

Stylus not parsing some directives

Using the Stylus / Jeet's column() or col() mixins, some are not compiling, but showing up literally in my generated css files. This should not be happening. Test.styl @import 'jeet' #main center(1000px) #content col(2/3) #sidebar …
cpilko
  • 11,792
  • 2
  • 31
  • 45
0
votes
1 answer

Node stylus import structure - bootstrap and jeet

I'm new to css compiling. I currently have a node.js app using express and precompiled bootstrap 3 files, and I'm diving into Stylus to make this better. I want to compile Stylus and import bootstrap with jeet for grid system. My question is, how…
Omid Ahourai
  • 1,409
  • 2
  • 14
  • 18
0
votes
1 answer

Borders breaking col() and span() in Jeet.gs

Adding a border to an element which is layed out using span() or col() from jeet.gs causes each element to be too wide for the parent container. Is there a way to fix this? some examples in…
0
votes
1 answer

equivalent of omega() in jeet?

using jeet.gs i have two classes taking up one half each of the total width of their parent container. something like this (stylus notation): .wrapper .alpha .beta col(1/2) now, when i write some jade like this: .wrapper .alpha p…
user973612
  • 105
  • 9
0
votes
2 answers

how to uncycle and change column ratio with jeet

I am trying to break from 4 columns to 3 by uncycling, the initial ratio looks like this col(1/4, gutter: .5, cycle: 4) then i try changing it at laptop resolution to only 3 columns uncycle() col(1/3, gutter: .5, cycle: 3) is there any way to…
Stothertk
  • 107
  • 1
  • 1
  • 5
0
votes
1 answer

with jeet, how do i keep my columns ratio when using gutters

I am trying to have four columns in jeet with a gutter of .5 col(1/4, gutter: .5, cycle: 1/4) This causes the fourth column to break, giving me only 3. I tried it without a gutter and the same thing happens. col(1/4, cycle: 1/4)
Stothertk
  • 107
  • 1
  • 1
  • 5
-2
votes
1 answer

Jeet: Fixed width sidebar with fluid content area

I'm trying to figure out how to create a fluid layout with a fixed width sidebar and fluid content area using Jeet. HTML:
CSS: .wrapper { width:…
tamilsweet
  • 1,007
  • 8
  • 15
1
2