-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.css
More file actions
40 lines (40 loc) · 735 Bytes
/
book.css
File metadata and controls
40 lines (40 loc) · 735 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
.form {
display: flex;
justify-content: center;
overflow: hidden;
}
.form label {
font-size: 1.2rem;
font-weight: 500;
font-family: Verdana, Geneva, Tahoma, sans-serif;
float: left;
padding-bottom: 10px;
margin-right: 40px;
}
.form input,
button {
float: right;
width: 250px;
border-style: none;
font-size: large;
align-items: center;
}
fieldset {
border-style: none;
}
.submit {
height: 35px;
font-weight: bold;
background-color: #CE9461;
color: #EEEEEE;
}
form label[class='error'] {
float: right;
font-size: 0.8rem;
font-weight: bold;
color: #F47C7C;
}
.form h2 {
color: #73777B;
margin-bottom: 20px;
}