skill-assessment-app/app/assets/stylesheets/molecules/_lists.scss

36 lines
422 B
SCSS
Raw Permalink Normal View History

2016-07-28 12:52:54 -05:00
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;
2016-07-31 14:27:58 -05:00
content: asset_data_url('icon-unorderedlistbullet.png');
2016-07-28 12:52:54 -05:00
}
}
}