Complete mobile reactiveness in CSS layer

This commit is contained in:
Andrew Miner
2016-04-30 11:31:49 -07:00
parent 545408a7e7
commit e7cd3f0549
10 changed files with 199 additions and 17 deletions
+71 -1
View File
@@ -102,7 +102,9 @@
font-family: $font-family-control;
font-size: $font-size-medium;
padding: $size-margin-small $size-margin-medium;
padding-left: $size-margin-medium + $size-margin-large;
line-height: $font-size-medium + 2 * $size-margin-small;
text-indent: -$size-margin-large;
&:before {
content: "";
@@ -118,3 +120,71 @@
}
}
}
@include screen-size(desktop) {
.view__header {
.top-row {
a {
img {
top : -$size-minecraft-block * 0.5;
left : -$size-minecraft-block * 0.5;
height : $size-minecraft-block * 2.0;
width : $size-minecraft-block * 2.0;
}
}
}
}
}
@include screen-size(tablet) {
.view__header {
.top-row {
h1 {
font-size : $font-size-xlarge;
}
}
}
}
@include screen-size(mobile) {
.view__header {
.top-row {
display : none;
a {
img {
}
}
h1 {
}
.addthis_sharing_toolbox {
display: none;
&.placeholder {
&:before {
}
}
}
}
.divider {
.button {
&:last-child {
}
}
}
.breadcrumbs {
&:before {
}
a {
}
span {
}
}
}
}