mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
66 lines
932 B
SCSS
66 lines
932 B
SCSS
@import "_mixins", "_vars";
|
|
|
|
ul.default li {
|
|
margin: 5px 0 5px 0;
|
|
|
|
&:first-child {
|
|
margin: 0 0 5px 0;
|
|
}
|
|
|
|
&:last-child {
|
|
margin: 5px 0 0 0;
|
|
}
|
|
}
|
|
|
|
ul.boxed {
|
|
background: #fff;
|
|
padding: 5px;
|
|
@include border-radius(3px);
|
|
border: 1px solid $content-border-color;
|
|
|
|
li {
|
|
margin: 5px 0 5px 0;
|
|
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
ul.h-list li {
|
|
display: inline-block;
|
|
|
|
margin: 5px 10px 5px 10px;
|
|
}
|
|
|
|
.bullet-list {
|
|
margin: 0;
|
|
padding: 0;
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
|
|
td:first-child {
|
|
padding-right: 20px;
|
|
}
|
|
|
|
span {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.bullet {
|
|
width: 7px;
|
|
height: 7px;
|
|
border-radius: 30px;
|
|
background: #ccc;
|
|
display: inline-block;
|
|
|
|
&.active {
|
|
background: #000;
|
|
}
|
|
}
|