bondage-college-mirr/BondageClub/CSS/utilities.css
2025-08-11 14:27:23 -04:00

43 lines
No EOL
437 B
CSS

.light-label {
color: white;
}
.dark-label {
color: black;
}
.center-label {
text-align: center;
}
.left-label {
text-align: left;
}
.right-label {
text-align: right;
}
.flex {
display: flex;
}
.vertical {
flex-direction: column;
}
.horizontal {
flex-direction: row;
}
.space-between {
justify-content: space-between;
}
.space-around {
justify-content: space-around;
}
.center {
justify-content: center;
}