aboutsummaryrefslogtreecommitdiff
path: root/assets/sass/_partial/_terms.scss
diff options
context:
space:
mode:
authorGNUxeava <bluenerd@protonmail.com>2022-03-11 10:32:10 +0530
committerGNUxeava <bluenerd@protonmail.com>2022-03-11 10:32:10 +0530
commitfecc9b268410c8fefcd1ca32bc4228bba9002178 (patch)
treeaa621093976dbbe8961f723ddb3569737e96932a /assets/sass/_partial/_terms.scss
parent2dfa39111cd76b102dbb3f58c1754b6c93b0265a (diff)
use theme
Diffstat (limited to 'assets/sass/_partial/_terms.scss')
-rw-r--r--assets/sass/_partial/_terms.scss46
1 files changed, 46 insertions, 0 deletions
diff --git a/assets/sass/_partial/_terms.scss b/assets/sass/_partial/_terms.scss
new file mode 100644
index 0000000..f498ffe
--- /dev/null
+++ b/assets/sass/_partial/_terms.scss
@@ -0,0 +1,46 @@
+// ==============================
+// General Terms(tags, categories, etc.)
+// =============================
+
+.terms {
+ margin: 2em 0 3em;
+ text-align: center;
+ font-family: $global-serif-font-family;
+
+ .terms-title {
+ display: inline-block;
+ font-size: $terms-title-size;
+ color: $theme-color;
+ border-bottom: $terms-title-border-bottom;
+ }
+
+ .terms-tags {
+ margin: 10px 0;
+
+ .terms-link {
+ display: inline-block;
+ position: relative;
+ margin: $terms-link-margin;
+ word-wrap: break-word;
+ transition-duration: 0.2s;
+ transition-property: transform;
+ transition-timing-function: ease-out;
+
+ .terms-count {
+ display: inline-block;
+ position: relative;
+ top: -8px;
+ right: -2px;
+ color: $theme-color;
+ font-size: $terms-count-font-size;
+ }
+
+ &:active,
+ &:focus,
+ &:hover {
+ color: $theme-color;
+ transform: scale(1.1);
+ }
+ }
+ }
+} \ No newline at end of file