extract more constants into less variables

This commit is contained in:
ansuz
2017-01-03 12:19:07 +01:00
parent 27d5559b0c
commit 7b87213ec3
6 changed files with 36 additions and 23 deletions

View File

@@ -30,18 +30,18 @@
}
.big {
@media screen and (max-width: 800px) {
@media screen and (max-width: @media-not-big) {
display: none;
}
@media screen and (min-width: 801px) {
@media screen and (min-width: @media-not-small) {
display: inline-block;
}
}
.small {
@media screen and (max-width: 800px) {
@media screen and (max-width: @media-not-big) {
display: inline-block;
}
@media screen and (min-width: 801px) {
@media screen and (min-width: @media-not-small) {
display: none;
}
img {