-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
177 lines (145 loc) · 2.3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
* {
box-sizing: border-box;
margin: 0;
}
body {
font-family: 'Roboto', sans-serif;
}
ul {
list-style-type: none;
}
a {
text-decoration: none;
color: black;
cursor: pointer;
}
nav {
display: flex;
justify-content: space-between;
margin: 50px 10% 15px 10%;
width: 80vw;
border: 2px solid black;
padding: 5px 10px;
}
.navLinkCont {
display: flex;
}
.navLink {
border: none;
background-color: white;
cursor: pointer;
}
.date {
float: right;
margin-right: 9.3%;
}
main {
margin: 75px 25px;
text-align: center;
font-family: 'Roboto', sans-serif;
}
h1 {
font-family: 'Bebas Neue', cursive;
margin-bottom: 10px;
align-self: center;
color: rgb(221, 205, 62);
font-size: 3rem;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
#bookContainer {
border: solid 3px rgb(221, 205, 62);
padding: 5px 10px 0 10px;
width: 80vw;
margin-bottom: 25px;
}
#bookList {
display: flex;
flex-direction: column;
align-items: center;
}
.bookCont {
display: flex;
justify-content: space-between;
padding-bottom: 5px;
}
.bookCont:nth-child(even) {
background-color: #f2f2f2;
}
/* #author {
margin-left: -40px;
} */
#author > span {
margin-right: 5px;
}
.btnShadow {
box-shadow: 2px 2px darkgrey;
}
.align-right {
text-align: right;
background-color: rgb(255, 99, 71);
}
hr {
display: none;
}
.subheading {
margin-bottom: 10px;
color: rgb(221, 205, 62);
font-weight: bold;
}
.formCont {
display: flex;
flex-direction: column;
align-items: center;
}
.separator {
display: block;
width: 50%;
margin-bottom: 15px;
height: 4px;
background-color: darkgrey;
border-radius: 5px;
}
#add {
align-self: flex-end;
background-color: rgb(221, 205, 62);
}
.inputField {
border: 2px solid black;
padding: 5px 2px;
width: 100%;
}
.inputField:hover {
border: 4px solid rgb(221, 205, 62);
}
.greyBackground {
background-color: darkgrey;
}
.btnHover:hover {
border: 4px solid rgb(221, 205, 62);
}
.contact {
display: flex;
flex-direction: column;
align-items: center;
}
.addMargin {
line-height: 1.5rem;
margin-bottom: 10px;
margin-top: 20px;
}
.alignLeft {
text-align: left;
}
footer {
margin: 50px 10% 15px 10%;
width: 80vw;
border: 2px solid black;
padding: 5px 10px;
}
.hidden {
display: none;
}