First Version

This commit is contained in:
Fabian
2019-06-18 22:52:51 +02:00
commit 55b970f14a
17 changed files with 2910 additions and 0 deletions

25
src/_list.scss Normal file
View File

@ -0,0 +1,25 @@
.list {
padding: 0;
list-style: none;
li {
padding: .5rem;
}
}
.list-divider {
li:nth-child(n+2) {
// margin-top: 10px;
// padding-top: 10px;
border-top: 1px solid rgb(128, 128, 128);
}
}
.list-clickable {
li:hover {
background: darken-brighten-color($background, 5%);
}
}