New feedback page #7

This commit is contained in:
MrFry 2020-03-23 11:09:02 +01:00
parent a78ac0f8f2
commit 978dfcd382
5 changed files with 299 additions and 64 deletions

View file

@ -0,0 +1,33 @@
.feedback {
color: var(--text-color);
background-color: var(--background-color);
font-size: 18px;
width: 100%;
box-sizing: border-box;
height: 120px;
}
.textTitle {
color: var(--text-color);
font-size: 26px;
}
.button {
background-color: var(--text-color);
border: none;
padding: 10px 30px;
color: white;
}
.textInputArea {
margin: 10px;
}
.fileInput {
margin: 10px;
color: var(--text-color);
}
.errorMsg {
color: red;
}