2015-07-20 22:23:06 +02:00

32 lines
555 B
Stylus

// content.styl: Content margins and link styling
.content
margin 0 20%
a
color hsl(0, 0%, 0%)
border-bottom 1px solid hsl(0, 0%, 0%)
transition .15s
&:hover,
&:focus
color hsl(100, 30%, 30%)
border-bottom 1px solid hsl(100, 30%, 30%)
text-decoration none
&:active
color hsl(100, 40%, 40%)
border-bottom 1px solid hsl(100, 40%, 40%)
@media (max-width 992px)
.content
margin 0 10%
@media (max-width 768px)
.content
margin 0 5%
@media (max-width 480px)
.content
margin 0 2%