-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
75 lines (64 loc) · 933 Bytes
/
styles.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
body {
font-family: sans-serif;
}
form {
max-width: 600px;
margin: 10px auto;
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: 1 1 2px rgba(0, 0, 0, 0.3);
padding: 10px;
display: flex;
flex-flow: column nowrap;
}
h1 {
text-align: center;
color: #333;
}
p {
margin: 10px auto;
line-height: 1.2em;
max-width: 500px;
}
div {
margin: 10px;
display: flex;
flex-flow: row nowrap;
justify-content: center;
}
label {
width: 120px;
text-align: right;
margin-right: 15px;
padding: 5px;
}
input,
textarea {
padding: 5px;
flex: 1;
border: 1px solid #ccc;
border-radius: 3px;
}
select {
flex: 1;
height: 24px;
border: 1px solid #ccc;
border-radius: 3px;
}
span {
color: #600;
font-weight: bold;
margin: 0 0 0 10px;
line-height: 26px;
}
button {
width: 80px;
display: block;
margin: 0 auto;
}
li {
display: inline-flex;
}
li span {
cursor: pointer;
}