-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform2.css
56 lines (52 loc) · 951 Bytes
/
form2.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
51
52
53
54
55
body{
margin: 15px 30px;
padding: 8px;
}
.new{
background-color: #f2f2f2;
padding: 5px 20px 15px 20px;
border: 1px solid lightgray;
}
*{
box-sizing: border-box;
}
.intro{
background-color: rgb(233, 233, 97);
border: none;
padding: 1px;
margin: 2px -15px;
}
.first{
color: green;
}
.sec input[type="text"],input[type="password"]{
width: 25%;
padding: 3px;
}
input[type="text"],input[type="email"]{
width: 20%;
padding: 3px;
}
.fpara{
font-weight: bolder;
}
footer{
border-top: 1px solid black;
border-bottom: 1px solid black;
margin: -2px;
padding: 16px;
background-color: rgb(252, 252, 199);
}
input[type="submit"]{
border: none;
background-color: rgb(57, 240, 57);
border: 1px solid green;
border-radius: 3px;
padding: 7px 7px;
color: white;
word-spacing: 3px;
cursor: pointer;
}
input[type="submit"]:hover{
color: darkgreen;
}