mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
25 lines
No EOL
261 B
SCSS
25 lines
No EOL
261 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;
|
|
}
|
|
}
|
|
} |