You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
1.1 KiB
CSS
121 lines
1.1 KiB
CSS
.flex{
|
|
display: flex;
|
|
}
|
|
.flex-1{
|
|
flex: 1;
|
|
}
|
|
.wrap{
|
|
flex-wrap: wrap;
|
|
}
|
|
.row{
|
|
flex-direction: row;
|
|
}
|
|
.column{
|
|
flex-direction: column;
|
|
}
|
|
.ai-c{
|
|
align-items: center;
|
|
}
|
|
.jc-se{
|
|
justify-content: space-evenly;
|
|
}
|
|
.jc-sb{
|
|
justify-content: space-between;
|
|
}
|
|
.jc-c{
|
|
justify-content: center;
|
|
}
|
|
.mt-1{
|
|
margin-top: 10px;
|
|
}
|
|
.mt-2{
|
|
margin-top: 20px;
|
|
}
|
|
.mt-3{
|
|
margin-top: 30px;
|
|
}
|
|
.ml-1{
|
|
margin-left: 10px;
|
|
}
|
|
.ml-2{
|
|
margin-left: 20px;
|
|
}
|
|
.ml-3{
|
|
margin-left: 30px;
|
|
}
|
|
.mb-1{
|
|
margin-bottom: 10px;
|
|
}
|
|
.mb-2{
|
|
margin-bottom: 20px;
|
|
}
|
|
.mb-3{
|
|
margin-bottom: 30px;
|
|
}
|
|
.mr-1{
|
|
margin-right: 10px;
|
|
}
|
|
.mr-2{
|
|
margin-right: 20px;
|
|
}
|
|
.mr-3{
|
|
margin-right: 30px;
|
|
}
|
|
.ta-c{
|
|
text-align: center;
|
|
}
|
|
.ta-l{
|
|
text-align: left;
|
|
}
|
|
.cursor{
|
|
cursor: pointer;
|
|
}
|
|
.pos-r{
|
|
position: relative;
|
|
}
|
|
.pos-a{
|
|
position: absolute;
|
|
}
|
|
.pos-f{
|
|
position: fixed;
|
|
}
|
|
.max-w{
|
|
width: 100%;
|
|
}
|
|
.max-h{
|
|
height: 100%;
|
|
}
|
|
.fz-8{
|
|
font-size: 8px;
|
|
}
|
|
.fz-10{
|
|
font-size: 10px;
|
|
}
|
|
.fz-12{
|
|
font-size: 12px;
|
|
}
|
|
.fz-14{
|
|
font-size: 14px;
|
|
}
|
|
.fz-16{
|
|
font-size: 16px;
|
|
}
|
|
.fz-18{
|
|
font-size: 18px;
|
|
}
|
|
.fz-20{
|
|
font-size: 20px;
|
|
}
|
|
.fc-w{
|
|
color: white;
|
|
}
|
|
.fc-b{
|
|
color: black;
|
|
}
|
|
.fc-r{
|
|
color: red;
|
|
}
|
|
.fw-b{
|
|
font-weight: bold;
|
|
}
|