mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2026-05-01 22:00:31 +00:00
43 lines
No EOL
437 B
CSS
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;
|
|
} |