Vulcan/client/sass/partials/_markdown.scss
2012-12-16 18:19:12 +01:00

50 lines
No EOL
522 B
SCSS

.markdown{
strong{
font-weight:bold;
}
em{
font-style:italic;
}
ul, ol{
padding-left:18px;
}
ul{
list-style-type:disc;
}
ol{
list-style-type:decimal;
}
a{
&:link, &:visited, &:active{
color:$blue;
}
&:hover{
color:$red;
}
}
p{
margin-bottom:1em;
&:last-child{
margin-bottom:0;
}
}
h1, h2, h3, h4, h5{
font-weight:bold;
margin-bottom:0;
}
h1{
font-size:36px;
}
h2{
font-size:24px;
}
h3{
font-size:18px;
}
h4{
font-size:16px;
}
h5{
font-size:14px;
}
}