33 lines
614 B
CSS
33 lines
614 B
CSS
.admin-project-fields-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
|
|
width: 80%;
|
|
max-width: 750px;
|
|
}
|
|
|
|
.admin-project-field-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
}
|
|
|
|
.admin-project-field-label {
|
|
font-family: Source Sans Pro;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
}
|
|
.admin-project-textfield {
|
|
height: 50px;
|
|
background-color: white;
|
|
border: solid 0.5px #d8d8d8;
|
|
|
|
width: 100%;
|
|
text-indent: 10px;
|
|
} |