1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-19 06:23:25 +01:00

More Sass optimisations.

This commit is contained in:
Markus Birth 2015-02-23 14:17:02 +01:00
parent c47f016cf7
commit eca5b333d7

View File

@ -40,14 +40,7 @@ li
h1 - project name
h2 - project description
header
background: rgba(black, 0.1)
width: 100%
border-bottom: 1px dashed $maincolor
padding: 20px 0
margin: 0 0 40px 0
header h1, #pagetitle
#pagetitle
+text-shadow
font:
size: 30px
@ -57,21 +50,29 @@ header h1, #pagetitle
color: $maincolor
-webkit-font-smoothing: antialiased
// Site name
header h1
letter-spacing: -1px
margin: 0 0 0 -40px
header
background: rgba(black, 0.1)
width: 100%
border-bottom: 1px dashed $maincolor
padding: 20px 0
margin: 0 0 40px 0
&:before
content: "./ "
font-size: 24px
// Site name
h1
@extend #pagetitle
letter-spacing: -1px
margin: 0 0 0 -40px
// Site description
header h2
font:
size: 18px
weight: 300
color: #666
&:before
content: "./ "
font-size: 24px
// Site description
h2
font:
size: 18px
weight: 300
color: #666
#downloads .btn
display: inline-block
@ -251,3 +252,5 @@ a
.cf
zoom: 1
// vim: set ts=4:sw=4:expandtab