-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathadmission.css
50 lines (49 loc) · 971 Bytes
/
admission.css
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
50
form{
width: 50%;
padding: 10px;
margin: 20px 25%;
background: whitesmoke;
}
form:hover{
box-shadow: 5px 10px 20px rgb(133, 131, 131);
}
form label{
display: inline-block;
width: 200px;
padding: 20px 10px;
}
input[type="text"]{
height: 25px;
width: 300px;
border: 1px solid black;
border-radius: 5px;
}
input[type="email"]{
width: 300px;
height: 25px;
border: 1px solid black;
border-radius: 5px;
}
input[type="tel"]{
width: 150px;
height: 25px;
border: 1px solid black;
border-radius: 5px;
}
input[type="submit"]{
display: block;
margin: auto;
background: none;
padding: 10px;
border: 2px solid goldenrod;
transition: padding .3s;
}
input[type="submit"]:hover{
padding: 10px 20px;
background: goldenrod;
color:#004068;
box-shadow: 5px 5px 15px rgb(133, 131, 131);
}
.invalid{
border-color: red;
}