1
0
mirror of https://github.com/danbee/cv synced 2025-03-04 08:59:12 +00:00
cv/source/css/elements/_lists.scss
Dan Barber 4346f8a3ba Lots of changes and updates
* Start organizing CSS according to ITCSS

* Replace logo with rainbow db

* Add Imagine Learning to experience

* Refactor layout to use CSS grid
2023-06-25 18:13:26 -05:00

28 lines
241 B
SCSS

ul,
ol {
margin: 0 0 0 -24px;
padding-left: 24px;
}
ul {
ul {
padding-left: 0;
}
list-style-type: disc;
}
ol {
list-style-type: decimal;
}
li {
ul,
ol {
margin: 0;
font-size: 1em;
/* 16 / 16 = 1 */
}
}