Adding font files

This commit is contained in:
Fabian
2019-07-26 16:04:31 +02:00
parent e394c002f4
commit efd539f456
12 changed files with 291 additions and 6 deletions

25
src/old/_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%);
}
}