leilukin-site/src/assets/css/utility.css
2024-07-14 12:22:13 +08:00

41 lines
652 B
CSS

/* UTILITY CLASSES */
.bold-text { font-weight: 700; }
.center-text { text-align: center; }
.center-el {
display: grid;
place-content: center;
}
.indent-text {
padding: 1em 0 1em 2em;
display: grid;
gap: 1em;
}
.date-style {
font-weight: 700;
color: var(--clr-dates);
}
.inline-icon {
vertical-align: -10%;
height: 1em;
fill: currentColor;
}
.hidden { display: none; }
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
outline: 0;
outline-offset: 0;
}