Vulcan/client/sass/partials/_markdown.scss

50 lines
522 B
SCSS
Raw Normal View History

2012-09-08 11:54:08 +09:00
.markdown{
strong{
font-weight:bold;
}
em{
font-style:italic;
}
2012-09-13 10:55:05 +09:00
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;
}
2012-09-08 11:54:08 +09:00
}