Susy is a responsive & semantic grid tool for the Compass CSS-Authoring framework.

learn more… | top users | synonyms

1
vote
1answer
10 views

Changing navigation using Susy

How can I change the layout of different elements of a page using Susy, for instance, change the top navigation of a page from a bar when on desktop, but a button with a dropdown when on mobile?
0
votes
1answer
24 views

How can I align my Left and Right borders that susy calculates?

I'm trying to design something similar to GitHubs sliding file browser It's mostly working but im trying to style it and I get this with my borders: .claim-header, .support-header{ ...
0
votes
0answers
23 views

Compiling sass via sass-maven-plugin and susy

I've been trying for a while now to get the sass-maven-plugin to use susy while compiling sass code via compass, without success. The latest try involves the following code, and the assumption that ...
0
votes
2answers
27 views

Compass compile error on Susy's at-breakpoint mixin

I'm using Susy/Compass/SASS for a simple responsive grid on my current project. However, the Compass compiler won't compile Susy's at-breakpoint mixin. Here's my grid: +border-box-sizing ...
1
vote
1answer
29 views

Weird misalignment in my Susy layout

The elements I set the Susy span-column() mixin to, do not obey to it. They are misaligned ever so slightly. How do I achieve perfect alignment of my HTML elements? Screenshot of full website ...
-1
votes
0answers
10 views

Right Div on above Left Div after

I created a page with two dives using Compass and Sussy grid. Now using the media query I want to bring the .right div on above of the .left div. How can I do that? Thanks for your help
0
votes
0answers
20 views

Compass/Susy at-breakpoint specificity issues

Often when writing the scss for new at-breakpoints--also even breakpoints that do not change the layout, but nonetheless still change styles at those breakpoints--if I do not specify exactly as I did ...
0
votes
1answer
38 views

How to obtain “stacking grid” in Susy (column on top of another)

Being completely new to susy and responsive web design, I'm trying to understand how to obtain this result with Susy (grid framework I've chosen): ...
0
votes
1answer
12 views

Susy parameters are producing an incorrect @container width

The following - $total-columns: 12; $column-width: 60px; $gutter-width: 20px; $grid-padding: 10px; $container-style: static; .centre { @include container; } Produces this css - width: 1020px; ...
0
votes
1answer
127 views

Mixin container takes 0 arguments but 2 were passed

I am trying to future-proof the css in a zinnia-django blog using compass, susy, and sass. I have successfully copied my zinnia templates into /var/www/static/zinnia by running python manage.py ...
0
votes
1answer
24 views

How to center the last line of uneven list items in a gallery

I try to make my toy project responsive at the moment and i ran into one issue i am unsure if it is possible to solve and if that fix makes sense at all. At the moment my Scss code looks like the ...
0
votes
1answer
48 views

Sass+Compass+Susy in Divshot

I'm looking for adequate tool to help with responsive design and, so far, Divshot looks as the best one. Considering that I plan to use Sass+Compass with Susy grid, I wonder if it's possible to use ...
0
votes
0answers
23 views

Compass/Susy Error When Using at-breakpoint

Te error: css/chpw.scss (Line 13: Mixin "at-breakpoint" does not accept a content block.) The scss: @import "compass"; @import "compass/reset"; @import "susy"; @include at-breakpoint(30em 12) { ...
0
votes
1answer
30 views

Susy $container-style static — changing to magic

Question Is it possible to do the inverse of Susy: fluid layout up to the second breakpoint -- or, in other words, have a Susy grid that is static up until a break and then magic beyond that point? ...
0
votes
3answers
64 views

Using Susy's isolate-grid() at multiple breakpoints

I'm trying to use different isolate-grid() settings at multiple breakpoints like so: Markup: <div class="boxes"> <div class="box"> Box 1 </div> <div class="box"> ...
0
votes
0answers
29 views

Susy: fluid layout up to the second breakpoint

If I understand correctly, Susy's $container-style variable is a global setting. This means that if you use the following code, both layouts will be fluid. $total-columns: 4; $total-columns-large: 8; ...
0
votes
1answer
45 views

Highcharts - Hidden charts don't get re-size properly

I currently have a 3 tabbed page. Each tab is a div that is set to display: hidden when not selected. In these tabs I have a Grid system created with Susy (compass plugin). Also each tab page has a ...
0
votes
1answer
64 views

Susy media query output & “screen”

Is there a particular reason that Susy doesn't use the common @media screen and (min-width: 460px) syntax for its media queries? (or perhaps this is better asked as "why does almost everyone use ...
0
votes
1answer
50 views

Susy: mixin applies, but throws error

I just started to use Susy. When I apply span-columns() mixins, the markup does applies correctly, but sass throws an error: (Line 276: Undefined mixin 'span-columns'.) #element-1 { @include ...
0
votes
1answer
61 views

How to apply span-column within at-breakpoint with Susy?

Now, I am almost having a responsive header as my original question was How to make a header responsive? . Still I am bit stuck with having the width of elements right. I am using the following ...
0
votes
1answer
21 views

How to have dynamic left-margin with Susy?

I am playing with the positioning of a .logo in this HTML: <div class="mod-header"> <a class="logo" href="#"></a> </div> The logo width is fixed, however I wonder if I ...
0
votes
0answers
62 views

How to make a header responsive?

I am having the following HTML: <div class='layout-wrap'> <div class='mod-header'> <a class='logo' href="#"></a> <nav> <a class="action" ...
1
vote
1answer
51 views

SUSY how to keep rows separate

If with a SUSY grid I want [column1 of copy] [column2 of copy] [column3 of copy now on a new row] [column4 of copy] ...that is I want a new row for my column3 and column4 text regardless of how ...
1
vote
2answers
118 views

Rem/Em Confusion

I've been having a play around using em's/rem's today on a new site and have several things i'd like to discuss/ask on here. For many years I have been totally a pixel based person with a few ...
1
vote
1answer
72 views

Changing from 4 to 3 columns with omega with Susy fails

This is certainly easiest to show with some code: .container{ .gallery { ul { @include clearfix; } li { @include span-columns(1,4); ...
0
votes
1answer
76 views

Susy Compass omega is adding #margin-left: -1em;

I am using the Susy framework to create a grid for my website and am really liking it. I can't figure out why #margin-left: -1em is being added when I use omega in span columns. I cannot seem to ...
3
votes
2answers
331 views

Susy: Omega and Responsive Grids

When using Susy, you put an "omega" flag on the last item of a row to remove its margin-right. For example, let's say we have a bunch of items we need to lay out on a 12-column grid: <div ...
0
votes
1answer
61 views

Mixin “with-grid-settings” does not accept a content block

Mixin "with-grid-settings" does not accept a content block. Trying to solve this, searched about it, but cannot find any info. Thanks, Ilia
0
votes
1answer
69 views

Fixed element in a susy grid not working in IE10

I'm using Susy grids and utilizing the method described in this post A `position:fixed` sidebar whose width is set in percentage? to set a fixed sidebar. It work's well on Chrome but testing it out in ...
1
vote
1answer
74 views

Susy Nested Grids

I created a susy grid and am trying to use it for a complex nested navigation. The problem I'm having is that I want to have a 0em $gutter-width in the scope of the header (tag where I'm working with ...
1
vote
1answer
66 views

susy grid background display

I am unable to get the susy-grid-background mixin to display my grid. I have set the grid related variables to true and supplied a grid color, but no matter what I do the grid does not show. If I run ...
0
votes
2answers
120 views

Combining Susy at-breakpoint() and device orientation media queries

I'm relatively new to Susy and responsive design. I've managed to setup my grid and using at-breakpoint(), I've made the page fully responsive as required first by testing it while resizing the ...
0
votes
0answers
126 views

Compass plugin Susy not found

I'm running a Rails 4 app and trying to get compass and susy running. I'm getting the following error: File to import not found or unreadable: susy. My gemfile group: group :assets do gem ...
0
votes
1answer
238 views

Cleanest way to run susy, compass, and sass within jruby-complete?

why can jruby find require 'susy' in my compass config.rb, but @import 'susy' within *.scss files produces the issue: [java] error Web Content/common/sass/base/foundation_de_DE.scss (Line 9: ...
0
votes
0answers
36 views

grid padding not showing on 320 width using susy/compass

I've gone through and followed the demos I've found including Susy demo but when I reduce the window to 320px wide, the outer grid padding disappears. The outermost items are the first & last ...
0
votes
0answers
92 views

How to use Susy break point like bootstrap span's

Hey I'm working on a project that uses Ruby on Rails, scss, compass, and "Susy". Susy is suppose to be a grid library like bootstrap responsive but how would I add this to a class. Bootstrap: ...
1
vote
1answer
142 views

How to solve and compensate the sub-pixel rounding issue?

I try to iron out the sub-pixel rounding error for quite a while now, but so far i've failed miserably again and again. I try to accomplish that endeavour with the help of Sass and Susy. The mixin ...
0
votes
0answers
61 views

Syntax error with at-breakpoint

I'am using fire.app This is the error I get when I use an "at-breakpoint" mixin: Syntax error: Mixin adjust-suppport-for doesn't have an argument named $legacy_ie **on line 56 of ...
0
votes
0answers
54 views

How can I implement a non semantic grid with Susy?

First, I do use the Susy grid for custom semantic markup. It's awesome! But I'm thinking about sharing a stylesheet that might be used outside of a css preprocessor. For example, some people might ...
0
votes
1answer
125 views

Susy Multiple Responsive Mixin Failing

This one is going to send me to an early grave, Thanks in advance for any help pulling me out. Short story: multiple at-breakpoints on a list element is failing when breaking from a tablet grid to a ...
0
votes
1answer
120 views

Grid width is not 960px

I might be missing something basic, but why susy grid does not amount to 960px? $total-columns : 12; // a 12-column grid $column-width : 60px; // each column is 4em wide ...
0
votes
2answers
54 views

SUSY organization files?

I use method mobile first or a reponive webite and i use susy. How organize files _forms _typo _layout,_mixins etc.. for mobile (default) and breakpoints (tablet, desktop) and to have output files : ...
0
votes
1answer
122 views

What is the trick to getting a background to expand past the container?

I am trying to achieve what is in this image: http://grab.by/jUFy edit: fixed link. Sorry, Eric I have a main content div, nesting a content and sidebar div. My content section is a ...
0
votes
1answer
107 views

Compass/Susy Disable automatic clearfix?

I'm using Compass/Susy for the first time. I'm having an issue when using the @include container mixin. It's automatically applying a clearfix to it. This is not desired. Is there a way to turn this ...
0
votes
2answers
125 views

Susy getting footer at bottom

Using Susy Grids, how do you force the container to be min-height 100% and footer to be at the bottom of the page. html <div class="page"> <header ...
0
votes
1answer
225 views

Susy center content within a full width div

I want to center content within a div while allowing the div to assume the full width of the screen. I have a background image in the header that repeats x and must stretch the full length of the ...
0
votes
0answers
69 views

Looking for a cleaner way of coding this susy-based multi-column grid

Lets say I have the following HTML: <ul class="feature-list"> <li> <h3>1st Title</h3> <p>Pulvinar pulvinar facilisis tristique egestas ...
0
votes
1answer
111 views

How to get a 1px border between columns?

What is the preferred / cleanest method to draw a 1px border between two Susy grid items, in the center of the gutter? Susy creates a gutter by adding a margin-right to a grid item, so I can't simply ...
1
vote
2answers
171 views

Sass/CSS Grid and same height/width

I have defined a grid with columns widths to fit my desired content. Say, I then wish to place an element using the grid so I have it span 3 of the 9 columns for an approx width of 33.3% I then wish ...
0
votes
1answer
151 views

how to use susy with compass.app

I'm using compass.app from compass.handlino.com and I'm wondering if it's possible to use the Susy responsive grid system without have to use the command line. I chose Compass.app because it allows ...

1 2 3