-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForms.css
More file actions
49 lines (44 loc) · 853 Bytes
/
Forms.css
File metadata and controls
49 lines (44 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* *{
display: none;
} */
body{
background-color:burlywood;
padding: 100px;
}
label{
color: crimson;
padding: 5px;
font-size: 20px;
}
button{
color: brown;
}
textarea:hover{
background-color: bisque;
}
input:hover{
background-color: antiquewhite;
}
input:text{
padding: 5px;
}
.link{
margin: 0 0 20px 0;
}
a{
text-decoration: none;
border: 1px solid brown;
background-color:burlywood;
color: white;
padding: 5px 20px;
border-radius: 20px;
transition: 1s;
}
a:hover{
background-color: black;
padding: 5px 40px;
}
h1{
text-align: center;
color: black;
}