corrections BP grilles inégales
This commit is contained in:
parent
061191ac71
commit
e66ed5801d
4 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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)';
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue