-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (65 loc) · 1.23 KB
/
style.css
File metadata and controls
69 lines (65 loc) · 1.23 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
body{
background-color: aquamarine;
}
h1{
text-align: center;
font-size: 60px;
color: rgb(15, 15, 202);
}
form{
margin: 20px auto;
width: 320px;
color: rgb(27, 27, 126);
}
input{
padding: 10px;
font-size: inherit;
}
input[type="text"]{
display:block;
margin-bottom: 25px;
width: 100%;
border:3px solid rgb(47, 0, 255);
background:rgb(234, 241, 191);
}
input[type="password"]{
display:block;
margin-bottom: 25px;
width: 100%;
border:3px solid rgb(47, 0, 255);
background:rgb(234, 241, 191);
}
input[type="email"]{
display:block;
margin-bottom: 25px;
width: 100%;
border:3px solid rgb(47, 0, 255);
background:rgb(234, 241, 191);
}
input[type="radio"]{
margin: 0 8px 25px 8px;
}
input[type="radio"]:first-child{
margin-left: ;
}
input[type="submit"]{
width: 300px;
height:50px;
border:3px solid steelblue;
background-color: steelblue;
color: white;
}
input[type="submit"]:focus{
width: 300px;
height:50px;
border:3px solid steelblue;
background-color: whitesmoke;
color: steelblue;
}
input:focus{
background: white;
}
input[type="radio"]:checked+lable{
font-weight: bold;
font-size: larger;
}