skill-assessment-app/app/assets/stylesheets/molecules/_lists.scss
2016-07-28 12:58:09 -05:00

36 lines
430 B
SCSS
Executable File

ul, ol {
margin: 0;
padding: 0 0 0 1em;
li {
line-height: 2em;
}
}
dl {
margin: 0;
}
dt {
font-weight: 600;
margin: 0;
}
dd {
margin: 0;
}
ul {
list-style-type: none;
list-style-position: inside;
li {
position:relative;
padding-left:1em;
&:before {
position: absolute;
top: 3px;
left:0;
content:url('../../assets/images/icon-unorderedlistbullet.png');
}
}
}