-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsty.css
More file actions
74 lines (73 loc) · 1.02 KB
/
sty.css
File metadata and controls
74 lines (73 loc) · 1.02 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
70
71
72
73
74
body{
background:#e8f3f8;
font:1em/1.5 sans-serif;
}
h1{
text-align:center;
font-size:50px;
color:steelblue;
}
form{
margin:20px auto;
width:320px;
color:steelblue;
}
input{
padding:10px;
font-size:inherit;
}
input[type="text"]
{
display:block;
margin-bottom:25px;
width:100%;
border:2px solid steelblue;
background:lightgreen;
}
input[type="password"]
{
display:block;
margin-bottom:25px;
width:100%;
border:2px solid steelblue;
background:lightgreen;
}
input[type="email"]
{
display:block;
margin-bottom:25px;
width:100%;
border:2px solid steelblue;
background:lightgreen;
}
input[type="radio"]
{
margin:0px 8px 25px 18px;
}
input[type="radio"]:first-child{
margin-left:0px;
}
input[type="submit"]
{
width:344px;
height:45px;
border:none;
background:steelblue;
color:white;
}
input:focus{
background:white;
}
input[type="radio"]:checked+ label
{
font-weight:bold;
font-size:18px;
}
input[type="submit"]:focus
{
width:344px;
height:45px;
border:solid steelblue;
background:white;
color:steelblue;
}