Implement tag cloud on bookmark page

This commit is contained in:
Sascha Ißbrücker
2019-06-30 19:31:32 +02:00
parent accc360ae5
commit 9323b9da77
7 changed files with 75 additions and 5 deletions

View File

@@ -25,3 +25,20 @@ ul.bookmark-list {
}
}
}
.tag-cloud {
a {
color: $alternative-color;
}
.group {
margin-bottom: 0.4rem;
}
.group-label {
font-weight: bold;
text-transform: uppercase;
color: $alternative-color-dark;
}
}

View File

@@ -5,7 +5,8 @@ $alternative-color: #f45d00;
$alternative-color: #FF84E8;
$alternative-color: #98C1D9;
$alternative-color: #7B287D;
$alternative-color: #06c5c2;
$alternative-color: #05a6a3;
$alternative-color-dark: darken($alternative-color, 5%);
// Import Spectre CSS lib
@import "../../node_modules/spectre.css/src/spectre";