You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
760 B

// ==============================
// Tags
// =============================
.tag-cloud {
margin: 2em 0 3em;
text-align: center;
font-family: $global-serif-font-family;
.tag-cloud-title {
display: inline-block;
font-size: $tag-cloud-title-size;
color: $theme-color;
border-bottom: $tag-cloud-title-border-bottom;
}
.tag-cloud-tags {
margin: 10px 0;
a {
display: inline-block;
position: relative;
margin: $tag-cloud-tags-link-margin;
word-wrap: break-word;
transition-duration: 0.2s;
transition-property: transform;
transition-timing-function: ease-out;
&:active,
&:focus,
&:hover {
color: $theme-color;
transform: scale(1.1);
}
}
}
}