70 lines
988 B
CSS
70 lines
988 B
CSS
|
|
form{
|
|
width:100%;
|
|
height: 100%;
|
|
display:flex;
|
|
flex-direction:row;
|
|
overflow: auto;
|
|
}
|
|
|
|
#description{
|
|
font-size: 40px;
|
|
text-align: center;
|
|
color:white;
|
|
}
|
|
|
|
|
|
.btn-primary{
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
background-color: #205985;
|
|
--bs-btn-border-color:transparent;
|
|
}
|
|
|
|
.upload_field {
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: right;
|
|
flex-basis: auto;
|
|
padding: 15px;
|
|
}
|
|
|
|
|
|
.upload_button{
|
|
display:flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.upload_button p{
|
|
display:none
|
|
}
|
|
|
|
|
|
.upload_field label img{
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#image-preview{
|
|
max-width:640px;
|
|
max-height:460px;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 70%;
|
|
}
|
|
|
|
#image-preview:hover{
|
|
border: 3px solid #1a496d;
|
|
}
|
|
|
|
.carousel-control-prev, .carousel-control-next{
|
|
display: none !important;
|
|
}
|
|
|
|
#spinner{
|
|
margin-top:15px;
|
|
margin-left:47%;
|
|
}
|