-
Notifications
You must be signed in to change notification settings - Fork 1
/
style1.css
56 lines (54 loc) · 993 Bytes
/
style1.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
56
*{
margin: 0px;
box-sizing: border-box;
}
.body{
background-image: url(bg.jpg);
}
.fieldsetalign{
border-radius: 25px;
margin-left: 20%;
margin-right: 20%;
border: 3.5px solid #4CAF50;
}
legend{
font-size: 35px;
color:#fff;
padding: 5px;
}
.tableset{
width: 90%;
}
label{
font-size: 20px;
color: #fff;
}
.required{
color: red;
font-size: 15px;
}
input[type="text"],input[type="password"],input[type="email"]{
padding:5px;
margin-bottom:7px;
margin-top:7px;
margin-left: 15px;
width: 300px;
border-radius: 10px;
border: 2px solid #4CAF50;
}
input[type="text"]:hover,input[type="password"]:hover,input[type="email"]:hover{
border-radius: 10px;
border: 2px solid #4CAF50;
background-color: lightgray;
}
.center-button{
margin-left: 70px;
}
button{
padding: 5px;
border: 3px solid blue;
border-radius: 4px;
background-color: blue;
color: #fff;
cursor: pointer;
}