forked from easysIT/doit_HTML-CSS-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattr.css
More file actions
53 lines (46 loc) · 676 Bytes
/
attr.css
File metadata and controls
53 lines (46 loc) · 676 Bytes
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
* {
margin: 0;
padding: 0;
}
body {
background: #ccc;
padding: 20px;
}
form {
background:#fff;
border:1px solid #222;
border-radius: 5px;
padding: 20px;
width: 400px;
margin:30px auto;
}
fieldset {
border: 1px solid #ccc;
margin-bottom: 30px;
}
legend {
font-size: 16px;
font-weight: bold;
padding-left:5px;
padding-bottom: 10px;
}
form ul li {
line-height: 30px;
list-style: none;
padding: 5px 10px;
margin-bottom: 2px;
}
form label {
float: left;
font-size: 13px;
width: 110px;
}
form button {
border: 1px solid #222;
border-radius: 20px;
display: block;
font: 16px;
letter-spacing: 1px;
margin: auto;
padding: 7px 25px;
}