Fix IE9 author sidebar styling
This commit is contained in:
parent
a2a4f84580
commit
0cf5f3d9bc
5 changed files with 11 additions and 13 deletions
|
@ -77,6 +77,9 @@ a:hover {
|
||||||
}
|
}
|
||||||
.archive__item-teaser {
|
.archive__item-teaser {
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@include breakpoint($small) {
|
@include breakpoint($small) {
|
||||||
@include gallery(5 of 10);
|
@include gallery(5 of 10);
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
BASE ELEMENTS
|
BASE ELEMENTS
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
@include border-box-sizing;
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
STYLE RESETS
|
STYLE RESETS
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
|
@include border-box-sizing;
|
||||||
|
|
||||||
html {
|
html {
|
||||||
/* apply a natural box layout model to all elements */
|
/* apply a natural box layout model to all elements */
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -17,11 +19,6 @@ html {
|
||||||
-ms-text-size-adjust: 100%;
|
-ms-text-size-adjust: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* apply a natural box layout model to all elements */
|
|
||||||
*, *:before, *:after {
|
|
||||||
box-sizing: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Remove margin */
|
/* Remove margin */
|
||||||
|
|
||||||
body { margin: 0; }
|
body { margin: 0; }
|
||||||
|
|
|
@ -61,8 +61,8 @@
|
||||||
height: 36px;
|
height: 36px;
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
display: block;
|
display: block;
|
||||||
width: initial;
|
width: 100%;
|
||||||
height: initial;
|
height: 100%;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
max-width: 110px;
|
max-width: 110px;
|
||||||
|
@ -142,12 +142,12 @@
|
||||||
box-shadow: 0 0 10px rgba(#000, 0.25);
|
box-shadow: 0 0 10px rgba(#000, 0.25);
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
display: block;
|
display: block;
|
||||||
position: initial;
|
position: relative;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
background: initial;
|
background: transparent;
|
||||||
box-shadow: initial;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
&:before {
|
&:before {
|
||||||
content: "";
|
content: "";
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue