Skip to content

Instantly share code, notes, and snippets.

@giltroymeren
Last active December 19, 2015 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giltroymeren/5897587 to your computer and use it in GitHub Desktop.
Save giltroymeren/5897587 to your computer and use it in GitHub Desktop.
Three and five-level outline styles
// three-level outline
ol,
ol.ol-default {
list-style: decimal;
ol { list-style: lower-alpha;
ol { list-style: lower-roman; }
}
}
// five-level outline
ol.ol-formal {
list-style: upper-roman;
ol { list-style: upper-alpha; @extend .ol-default; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment