18 lines
322 B
CSS
Raw Normal View History

.terms-tags li {
display: inline-block;
margin: 10px;
2020-09-15 23:42:58 +05:30
font-weight: 500;
}
.terms-tags a {
display: block;
2020-09-15 23:42:58 +05:30
padding: 3px 10px;
background: var(--tertiary);
border-radius: 6px;
2020-09-06 22:00:35 +05:30
transition: transform 0.1s;
}
.terms-tags a:hover {
background: var(--tertiary);
2020-09-06 22:00:35 +05:30
transform: scale(0.96);
}