Vulcan/client/sass/partials/_markdown.scss

25 lines
261 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;
}
}
2012-09-08 11:54:08 +09:00
}