32 lines
398 B
CSS
32 lines
398 B
CSS
#creation-container {
|
|
width: 80%;
|
|
margin-top: 30px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.save-buttons {
|
|
width: 75%;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.save-button {
|
|
padding: 10px;
|
|
width: 40%;
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.form-data {
|
|
width: 100%;
|
|
flex-direction: row;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.form-data-label {
|
|
width: 30%;
|
|
}
|
|
|
|
.form-data-element {
|
|
width: 60%;
|
|
} |