40 lines
No EOL
387 B
CSS
40 lines
No EOL
387 B
CSS
body {
|
|
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.flex.col {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex.row {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex .flex1 {
|
|
flex: 1;
|
|
}
|
|
|
|
.flex.align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.flex.center {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex.small-gap {
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.flex.medium-gap {
|
|
gap: 1rem;
|
|
}
|
|
.flex.large-gap {
|
|
gap: 2rem;
|
|
} |