66 lines
915 B
CSS
66 lines
915 B
CSS
|
.container{
|
||
|
margin-left: 355px;
|
||
|
margin-right: 355px;
|
||
|
padding: 75px;
|
||
|
padding-top: 70px !important;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
gap: 10%;
|
||
|
margin-bottom: 2vh;
|
||
|
}
|
||
|
|
||
|
.column {
|
||
|
flex: 1;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.column:last-child {
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
|
||
|
.col{
|
||
|
height: 100% !important;
|
||
|
}
|
||
|
|
||
|
input.no-margin{
|
||
|
margin: 0 !important;
|
||
|
}
|
||
|
|
||
|
input[type="text"] {
|
||
|
width: 100%;
|
||
|
height: 2vh;
|
||
|
padding: 10px;
|
||
|
margin-bottom: 10px;
|
||
|
border-radius: 17px;
|
||
|
border: none;
|
||
|
background-color: #F3F3F3;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
padding: 10px 20px;
|
||
|
background-color: #007bff;
|
||
|
color: #fff;
|
||
|
border: none;
|
||
|
cursor: pointer;
|
||
|
width: 50%;
|
||
|
border-radius: 17px;
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
background-color: #0056b3;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
width: 100%;
|
||
|
height: 200px;
|
||
|
padding: 10px;
|
||
|
border-radius: 17px;
|
||
|
border: none;
|
||
|
background-color: #F3F3F3;
|
||
|
color: black;
|
||
|
}
|