zeus.ugent.be/content/assets/stylesheets/includes/blogpost.scss

41 lines
539 B
SCSS
Raw Normal View History

2016-10-31 01:23:28 +00:00
#markdown-toc {
@extend .menu-list;
&, ul {
2016-10-31 11:37:19 +00:00
margin: 0;
2016-10-31 01:23:28 +00:00
list-style: none;
}
}
2017-02-02 14:48:38 +00:00
$sel: '';
@for $i from 1 through 9 {
$sel: if($i == 1, "ul", selector-nest($sel, "ul")) !global;
#markdown-toc.toc-depth-#{$i} #{$sel} {
display: none;
}
}
// Definition list is not defined in bulma
2016-10-10 20:13:38 +00:00
dl {
dt {
display: inline;
font-weight: bold;
}
dd {
display: inline;
&::after {
content: "\A";
white-space: pre;
}
}
}
2016-10-06 12:21:01 +00:00
.blogwidth{
width: 75%;
margin:auto;
word-wrap: normal;
}