55 lines
871 B
CSS
55 lines
871 B
CSS
.errored {
|
|
animation: shake 300ms;
|
|
color: #eb3434 !important;
|
|
background-color: #fef2f2 !important;
|
|
border: 1px solid #eb3434 !important;
|
|
}
|
|
|
|
.image-show {
|
|
width: 100%;
|
|
}
|
|
|
|
.image-show img {
|
|
width: 100%;
|
|
object-fit: contain;
|
|
height: 350px;
|
|
background-color: #D9D9D9;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.width-btn {
|
|
width: 550px;
|
|
margin: auto;
|
|
}
|
|
|
|
.btn-register {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
background-color: #84CC16;
|
|
color: #FFFFFF;
|
|
border-radius: 8px;
|
|
padding: 10px 70px;
|
|
}
|
|
|
|
.btn-cancel2 {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
background-color: #454D5C;
|
|
color: #FFFFFF;
|
|
border-radius: 8px;
|
|
padding: 10px 70px;
|
|
}
|
|
|
|
.btn-register:hover, btn-cancel2:hover {
|
|
opacity: .7;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.width-btn {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
} |