1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
chota/src/_tag.css
Jenil Gogari c88bc51cb7 updates 🎨🔧💄🆗
* new variables
* error-success states
* striped tables
* button upgrades
* enhancements to colors and styles
* text styles
2018-07-29 17:46:04 -04:00

23 lines
351 B
CSS

.tag {
display: inline-block;
border: 1px solid var(--color-lightGrey);
text-transform: uppercase;
color: var(--color-grey);
padding: 0.5rem;
line-height: 1;
letter-spacing: 0.5px;
}
.tag.is-small {
padding: 0.4rem;
font-size: 0.75em;
}
.tag.is-large {
padding: 0.7rem;
font-size: 1.125em;
}
.tag+.tag {
margin-left: 1rem;
}