mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 13:09:59 +01:00
old stuff
This commit is contained in:
parent
fc385a818d
commit
20c9e4212c
8 changed files with 158 additions and 0 deletions
41
Certified_Full_Stack_Developer/CSS/Contact_Form/styles.css
Normal file
41
Certified_Full_Stack_Developer/CSS/Contact_Form/styles.css
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: aquamarine;
|
||||
}
|
||||
|
||||
.form-container {
|
||||
border-radius: 25px;
|
||||
padding: 20px;
|
||||
width: 50%;
|
||||
background-color: aliceblue;
|
||||
display: center;
|
||||
}
|
||||
|
||||
label {
|
||||
margin: 10px;
|
||||
color: brown;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 90px;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
textarea {
|
||||
width: 90px;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
button {
|
||||
background-color: rgb(82, 90, 90);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: green;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue