19 lines
357 B
CSS
Raw Normal View History

.terms-tags li {
display: inline-block;
margin: 10px;
font-weight: 600;
}
.terms-tags a {
display: block;
padding: 5px 14px;
2020-07-26 20:40:29 +05:30
color: var(--primary);
background: var(--border);
border-radius: var(--radius);
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);
}