59 lines
879 B
CSS
59 lines
879 B
CSS
.createButton {
|
|
font-size: 1.5rem;
|
|
color: black;
|
|
}
|
|
|
|
.createButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
border-radius: 50% !important;
|
|
width: 55px !important;
|
|
height: 55px !important;
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
.createButton:hover {
|
|
transform: translateY(-5px);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inputContainer {
|
|
|
|
h2 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
margin: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.input {
|
|
width: 70%;
|
|
}
|
|
|
|
.create {
|
|
align-self: center;
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.dateInputContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.dateInput {
|
|
margin: 1em;
|
|
} |