|
@@ -1477,6 +1477,29 @@ a.badge:hover {
|
|
|
color: rgba(0,0,0,.68);
|
|
|
}
|
|
|
|
|
|
+.tag-cloud a {
|
|
|
+ display: inline-block;
|
|
|
+ position: relative;
|
|
|
+ margin: 5px 10px;
|
|
|
+ word-wrap: break-word;
|
|
|
+ transition-duration: .2s;
|
|
|
+ transition-property: transform;
|
|
|
+ transition-timing-function: ease-out;
|
|
|
+}
|
|
|
+
|
|
|
+.tag-cloud a:active,
|
|
|
+.tag-cloud a:focus,
|
|
|
+.tag-cloud a:hover {
|
|
|
+ color: {{ .Get "primary_dark" }};
|
|
|
+ transform: scale(1.2);
|
|
|
+}
|
|
|
+
|
|
|
+.dark .tag-cloud a:active,
|
|
|
+.dark .tag-cloud a:focus,
|
|
|
+.dark .tag-cloud a:hover {
|
|
|
+ color: {{ .Get "primary_light" }};
|
|
|
+}
|
|
|
+
|
|
|
/*************************************************
|
|
|
* Button size override
|
|
|
*************************************************/
|