corrections BP grilles inégales

This commit is contained in:
Raphael Goetter 2015-08-06 15:41:56 +02:00
parent 061191ac71
commit e66ed5801d
4 changed files with 8 additions and 2 deletions

View File

@ -26,6 +26,9 @@
@primary-color : #000; // text color on primary elements
@secondary-color : #000; // text color on secondary elements
@headings-color : #000; // text color on headings
@headings-1-color : #000; // text color on headings level 1
@headings-2-color : #000; // text color on headings level 2
@headings-3-color : #000; // text color on headings level 3
@base-color-link : #333; // base links color
@base-color-link-hover : #000; // base hovered/focused links color

View File

@ -138,7 +138,7 @@
@size: (@right / (@left + @right)) * 100%;
width: ~'calc(@{size} - @{gutter} - .01px)';
}
@media (max-width: @tiny-screen) {
@media (max-width: @small-screen) {
& > *:nth-child(n) {
width: ~'calc(100% - @{gutter} - .01px)';
}

View File

@ -26,6 +26,9 @@ $base-color : #000 !default; // text color on body and content
$primary-color : #000 !default; // text color on primary elements
$secondary-color : #000 !default; // text color on secondary elements
$headings-color : #000 !default; // text color on headings
$headings-1-color : #000 !default; // text color on headings level 1
$headings-2-color : #000 !default; // text color on headings level 2
$headings-3-color : #000 !default; // text color on headings level 3
$base-color-link : #333 !default; // base links color
$base-color-link-hover : #000 !default; // base hovered/focused links color

View File

@ -147,7 +147,7 @@
$size: ($right / ($left + $right)) * 100%;
width: calc(#{$size} - #{$gutter});
}
@media (max-width: $tiny-screen) {
@media (max-width: $small-screen) {
& > *:nth-child(n) {
width: calc(100% - #{$gutter});
}