mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
Hotfix: Article header box sizing CSS
This commit is contained in:
parent
8c9debefc3
commit
69213fc205
2 changed files with 7 additions and 1 deletions
|
@ -33,4 +33,9 @@ $bg_sub: #fdfdfd
|
||||||
padding: 5px 10px 0px 10px
|
padding: 5px 10px 0px 10px
|
||||||
border-radius: 5px 5px 0px 0px
|
border-radius: 5px 5px 0px 0px
|
||||||
background: url('/images/icons/article_head.png') repeat-x
|
background: url('/images/icons/article_head.png') repeat-x
|
||||||
color: #ffffff
|
color: #ffffff
|
||||||
|
|
||||||
|
@mixin box-sizing($box-model)
|
||||||
|
-webkit-box-sizing: $box-model
|
||||||
|
-moz-box-sizing: $box-model
|
||||||
|
box-sizing: $box-model
|
||||||
|
|
|
@ -17,6 +17,7 @@ div
|
||||||
&.article
|
&.article
|
||||||
> h1
|
> h1
|
||||||
@include shaded-top
|
@include shaded-top
|
||||||
|
@include box-sizing(border-box)
|
||||||
box-sizing: border-box
|
box-sizing: border-box
|
||||||
padding: 8px
|
padding: 8px
|
||||||
margin: 0
|
margin: 0
|
||||||
|
|
Loading…
Reference in a new issue