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.
28 lines
565 B
28 lines
565 B
// |
|
// Responsive: Large desktop and up |
|
// -------------------------------------------------- |
|
|
|
|
|
@media (min-width: 1200px) { |
|
|
|
// Fixed grid |
|
#grid > .core(@gridColumnWidth1200, @gridGutterWidth1200); |
|
|
|
// Fluid grid |
|
#grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200); |
|
|
|
// Input grid |
|
#grid > .input(@gridColumnWidth1200, @gridGutterWidth1200); |
|
|
|
// Thumbnails |
|
.thumbnails { |
|
margin-left: -@gridGutterWidth1200; |
|
} |
|
.thumbnails > li { |
|
margin-left: @gridGutterWidth1200; |
|
} |
|
.row-fluid .thumbnails { |
|
margin-left: 0; |
|
} |
|
|
|
}
|
|
|