Base creation page

This commit is contained in:
Jai A
2020-06-22 21:04:17 -07:00
parent 1f4985c7dd
commit 23503dc439
10 changed files with 123 additions and 22 deletions

View File

@@ -16,7 +16,7 @@ progress::-moz-progress-bar { background: #0b75d8; }
border: none;
height: 20px;
background: #999;
background: white;
color: #0b75d8;
margin: 10px 0 0 0;
@@ -40,9 +40,69 @@ progress::-moz-progress-bar { background: #0b75d8; }
.creation-parts {
margin-top: 30px;
background: #fff;
}
.creation-part {
padding: 5px;
}
.base-info label {
margin-top: 10px;
display: flex;
flex-direction: column;
}
.info-display {
display: flex;
flex-direction: row;
}
.info-display-inputs {
margin: 10px 20px;
width: 100%;
display: flex;
flex-direction: column;
}
.info-body {
margin-top: 20px;
}
.info-body textarea {
width: 100%;
height: 500px;
resize: vertical;
}
.button-container {
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-top: 10px;
}
.next-button {
font-weight: bold;
color: white;
background-color: #69E781;
border-radius: 5px;
padding: 10px;
}
.draft-button {
margin-right: 10px;
font-weight: bold;
color: wheat;
background-color: #e1a15a;
border-radius: 5px;
padding: 10px;
}
.discard-button {
margin-right: 10px;
font-weight: bold;
color: white;
background-color: red;
border-radius: 5px;
padding: 10px;
}