mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
429 B
21 lines
429 B
// |
|
// Grid system |
|
// -------------------------------------------------- |
|
|
|
|
|
// Fixed (940px) |
|
#grid > .core(@gridColumnWidth, @gridGutterWidth); |
|
|
|
// Fluid (940px) |
|
#grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth); |
|
|
|
// Reset utility classes due to specificity |
|
[class*="span"].hide, |
|
.row-fluid [class*="span"].hide { |
|
display: none; |
|
} |
|
|
|
[class*="span"].pull-right, |
|
.row-fluid [class*="span"].pull-right { |
|
float: right; |
|
}
|
|
|