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

github.com/mismith0227/hugo_theme_pickles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/object/component/tag.scss')
-rw-r--r--src/scss/object/component/tag.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/scss/object/component/tag.scss b/src/scss/object/component/tag.scss
new file mode 100644
index 0000000..860d814
--- /dev/null
+++ b/src/scss/object/component/tag.scss
@@ -0,0 +1,16 @@
+.c-tag {
+ display: inline-block;
+ margin: 8px 6px 0 0;
+ padding: 4px;
+ font-size: 1.6rem;
+ color: #555;
+ &::before {
+ content: "#";
+ display: inline-block;
+ margin-right: 2px;
+ color: currentColor;
+ }
+ &:hover {
+ background: #fafafa;
+ }
+}