modify media queries
This commit is contained in:
parent
8a52e30506
commit
088e68cb4f
5 changed files with 160 additions and 144 deletions
|
@ -1209,18 +1209,6 @@ s,m,l,n = small, medium, large, none
|
|||
/* ==Responsive small */
|
||||
/* ---------------------------------- */
|
||||
@media (min-width: 481px) and (max-width: 768px) {
|
||||
/* quick small resolution reset */
|
||||
.mod,
|
||||
.col,
|
||||
fieldset {
|
||||
display: block !important;
|
||||
float: none !important;
|
||||
clear: none !important;
|
||||
width: auto !important;
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
border: 0;
|
||||
}
|
||||
/* quick reset in small resolution and less */
|
||||
.w600p,
|
||||
.w700p,
|
||||
|
@ -1312,6 +1300,18 @@ s,m,l,n = small, medium, large, none
|
|||
/* ==Responsive tiny */
|
||||
/* ---------------------------------- */
|
||||
@media (max-width: 480px) {
|
||||
/* quick tiny resolution reset */
|
||||
.mod,
|
||||
.col,
|
||||
fieldset {
|
||||
display: block !important;
|
||||
float: none !important;
|
||||
clear: none !important;
|
||||
width: auto !important;
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
border: 0;
|
||||
}
|
||||
.w300p,
|
||||
.w400p,
|
||||
.w500p {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -40,7 +40,23 @@ HTML :
|
|||
|
||||
### Centrer verticalement
|
||||
|
||||
HTML :
|
||||
![centrer verticalement](https://raw.githubusercontent.com/raphaelgoetter/KNACSS/master/doc/illust/02-layout.png)
|
||||
|
||||
Version table-cell (HTML) :
|
||||
```html
|
||||
<section class="col">
|
||||
<div class="w50 center">centré horizontalement et verticalement</div>
|
||||
</section>
|
||||
```
|
||||
|
||||
Version table-cell (CSS) :
|
||||
```css
|
||||
section {
|
||||
vertical-align: middle;
|
||||
}
|
||||
```
|
||||
|
||||
Version flexbox (HTML):
|
||||
```html
|
||||
<section class="flexbox-v">
|
||||
<div class="center w50">centré horizontalement et verticalement</div>
|
||||
|
|
|
@ -165,19 +165,6 @@
|
|||
|
||||
@media (min-width: (@tiny-screen + 1)) and (max-width: @small-screen) {
|
||||
|
||||
/* quick small resolution reset */
|
||||
.mod,
|
||||
.col,
|
||||
fieldset {
|
||||
display: block !important;
|
||||
float: none !important;
|
||||
clear: none !important;
|
||||
width: auto !important;
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* quick reset in small resolution and less */
|
||||
.w600p,
|
||||
.w700p,
|
||||
|
@ -288,6 +275,19 @@
|
|||
|
||||
@media (max-width: @tiny-screen) {
|
||||
|
||||
/* quick tiny resolution reset */
|
||||
.mod,
|
||||
.col,
|
||||
fieldset {
|
||||
display: block !important;
|
||||
float: none !important;
|
||||
clear: none !important;
|
||||
width: auto !important;
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.w300p,
|
||||
.w400p,
|
||||
.w500p {
|
||||
|
|
|
@ -164,19 +164,6 @@
|
|||
|
||||
@media (min-width: ($tiny-screen + 1)) and (max-width: $small-screen) {
|
||||
|
||||
/* quick small resolution reset */
|
||||
.mod,
|
||||
.col,
|
||||
fieldset {
|
||||
display: block !important;
|
||||
float: none !important;
|
||||
clear: none !important;
|
||||
width: auto !important;
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* quick reset in small resolution and less */
|
||||
.w600p,
|
||||
.w700p,
|
||||
|
@ -287,6 +274,19 @@
|
|||
|
||||
@media (max-width: $tiny-screen) {
|
||||
|
||||
/* quick small resolution reset */
|
||||
.mod,
|
||||
.col,
|
||||
fieldset {
|
||||
display: block !important;
|
||||
float: none !important;
|
||||
clear: none !important;
|
||||
width: auto !important;
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.w300p,
|
||||
.w400p,
|
||||
.w500p {
|
||||
|
|
Loading…
Reference in a new issue