-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
135 lines (114 loc) · 1.7 KB
/
styles.css
File metadata and controls
135 lines (114 loc) · 1.7 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav {
display: flex;
justify-content: space-between;
border: 2px solid #000;
margin: 5px 15px;
padding: 5px 10px;
box-shadow: 2px 2px #000;
}
.time {
margin: 5px 15px;
padding: 5px 10px;
display: flex;
justify-content: end;
}
nav a {
color: #000;
cursor: pointer;
text-decoration: none;
}
nav ul a:hover {
color: rgb(48, 48, 241);
}
nav ul {
list-style: none;
display: flex;
justify-content: space-between;
gap: 30px;
}
.nav-item:focus {
color: rgb(48, 48, 241);
}
.container {
margin: 25px;
min-width: 500px;
}
.container h1 {
border-bottom: 2px solid #000;
margin: 10px 0;
text-align: center;
}
.container ul {
margin: 20px 0;
padding: 0 20px;
border: 2px solid #000;
}
.container ul li {
margin: 20px 0;
display: flex;
gap: 50px;
justify-content: space-between;
}
.list-items {
display: flex;
gap: 10px;
}
.container hr {
border: 1px solid #000;
width: 50%;
font-weight: bold;
margin: 5px auto;
}
.new-book {
display: none;
}
.books {
list-style: none;
}
.remove,
button {
border: 2px solid #000;
padding: 3px;
box-shadow: 2px 2px #000;
}
h2 {
text-align: center;
padding: 5px;
}
form {
text-align: center;
padding: 7px;
}
input {
margin: 5px;
border: 2px solid #000;
border-radius: 2px;
padding: 8px 15px;
width: 400px;
}
.btn {
float: right;
margin-right: 37%;
}
.contact {
text-align: center;
margin: 45px 0;
gap: 20px;
display: none;
flex-direction: column;
}
footer {
border: 2px solid #000;
box-shadow: 2px 2px #000;
text-align: center;
margin: 5px 15px;
padding: 5px 10px;
bottom: 0;
position: fixed;
width: 97.7%;
}