69 lines
812 B
SCSS
Executable File
69 lines
812 B
SCSS
Executable File
@import "./vars";
|
|
@import "./tool";
|
|
body {
|
|
display: flex;
|
|
flex-flow: column;
|
|
min-height: 100vh;
|
|
}
|
|
main {
|
|
flex: 1;
|
|
// padding-top: 78px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.text-red{
|
|
color: $red !important;
|
|
}
|
|
|
|
.text-blue{
|
|
color: $blue !important;
|
|
}
|
|
|
|
.text-light-black{
|
|
color: $light-black !important;
|
|
}
|
|
|
|
.text-black{
|
|
color: $black !important;
|
|
}
|
|
|
|
.btn{
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 35px;
|
|
font-size: 16px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
background-color: #f0f4fa;
|
|
color: gray;
|
|
padding: 0;
|
|
&:hover{
|
|
color: $orange;
|
|
}
|
|
&.radius{
|
|
border-radius: 11px;
|
|
}
|
|
&.block{
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
&[disabled]{
|
|
opacity: .6;
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|