almost finished website

This commit is contained in:
2023-05-19 21:59:00 +02:00
parent 5f69d25662
commit 8e1d803d8d
13 changed files with 351 additions and 40 deletions

View File

@@ -0,0 +1,41 @@
.form {
width: 75%;
}
.input {
width: 100%;
border-radius: 500px;
padding: 20px;
color: white;
border: none;
background-color: rgb(44, 44, 44);
}
.textarea {
width: 100%;
border-radius: 10px;
padding: 20px;
resize: vertical;
color: white;
border: none;
background-color: rgb(44, 44, 44);
}
.label {
color: white;
}
.submit {
background: linear-gradient(90deg, rgb(30, 36, 131), rgb(87, 66, 184), rgb(105, 115, 214), rgb(30, 36, 131), rgb(41, 128, 109), rgb(146, 50, 47));
background-size: 300px;
padding: 10px 20px;
border: none;
border-radius: 20px;
cursor: pointer;
transition: all 3s;
}
.submit:hover {
background-size: 200%;
background-position: -100%;
}