Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/sass/components/_tag.scss')
-rw-r--r--assets/sass/components/_tag.scss29
1 files changed, 29 insertions, 0 deletions
diff --git a/assets/sass/components/_tag.scss b/assets/sass/components/_tag.scss
new file mode 100644
index 0000000..f1c9590
--- /dev/null
+++ b/assets/sass/components/_tag.scss
@@ -0,0 +1,29 @@
+.tag {
+ display: inline-block;
+ margin: 0.25rem 0.4rem;
+ text-decoration: none !important;
+
+ @include themify($themes) {
+ color: darken(themed('subtitle-color'), 5%);
+ @include on-event {
+ color: themed('link-hover');
+ }
+ }
+
+ &__wrapper {
+ padding: 0.3rem 0;
+ margin: auto 0;
+ }
+
+ &__text {
+ font-size: 0.95rem;
+ font-weight: bold;
+ color: inherit;
+ }
+
+ &__num {
+ font-size: 0.75rem;
+ font-weight: bold;
+ color: inherit;
+ }
+} \ No newline at end of file