65 lines
658 B
Plaintext
65 lines
658 B
Plaintext
.m-b-20 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.m-l-10 {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.m-l-5 {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.m-l-8 {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.m-r-10 {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.m-r-5 {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.m-r-8 {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
// space-between
|
|
.flex-between {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.justify-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
// align-items: center
|
|
.flex-center {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-gap-2 {
|
|
display: flex;
|
|
gap: 2px;
|
|
}
|
|
|
|
.opct-7 {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.opct-8 {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.flex-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|