scss: add support for ol
This commit is contained in:
parent
8d71f9dfb8
commit
e3716657e7
2 changed files with 20 additions and 0 deletions
|
@ -72,6 +72,15 @@ ul {
|
||||||
ul li {
|
ul li {
|
||||||
margin-left: 1.5em; }
|
margin-left: 1.5em; }
|
||||||
|
|
||||||
|
ol {
|
||||||
|
padding: 0;
|
||||||
|
padding-bottom: 1.5em;
|
||||||
|
margin: 0; }
|
||||||
|
ol ol {
|
||||||
|
padding-bottom: 0; }
|
||||||
|
ol li {
|
||||||
|
margin-left: 1.5em; }
|
||||||
|
|
||||||
::selection {
|
::selection {
|
||||||
background: #2484c1;
|
background: #2484c1;
|
||||||
color: #fff; }
|
color: #fff; }
|
||||||
|
|
|
@ -96,6 +96,17 @@ ul {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
@include paragraph();
|
||||||
|
ol {
|
||||||
|
padding-bottom:0;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
margin-left:1.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
::selection { background: #2484c1; color: #fff; }
|
::selection { background: #2484c1; color: #fff; }
|
||||||
::-moz-selection { background: #2484c1; color: #fff; }
|
::-moz-selection { background: #2484c1; color: #fff; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue