-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (54 loc) · 1.08 KB
/
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
form {
display: flex;
flex-direction: column;
width: 360px;
padding: 30px;
background-color: var(--cream);
}
body {
background-color: antiquewhite;
}
h1 {
margin-left: 15px;
font-size: 40px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color:rgb(168, 129, 82);
background-color: rgb(255, 240, 217);
padding: 7px;
}
#author,
#title,
#pages,
#description {
width: 100%;
padding: 15px 0 5px 0;
background-color: var(--cream);
border: none;
border-bottom: 2px dotted;
color: var(--blue);
}
#submit {
background-color: antiquewhite;
border: none;
margin: 10px;
margin-top: 20px;
padding: 10px
}
#formHolder {
margin: 10px;
background-color: rgb(255, 227, 192);
margin: none;
}
#newBookH3 {
margin-left: 15px;
font-size: 35px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color:rgb(168, 129, 82);
}
#container {
margin: 10px;
padding: 15px;
font-family: 'Times New Roman', Times, sans-serif;
font-size: large;
background-color: rgb(250, 224, 200);
}