-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
106 lines (92 loc) · 1.57 KB
/
style.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
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
height: 100vh;
background-color: #f4f4f4;
}
h1 {
color: #333;
text-align: center;
margin-top: 20px;
}
#book-list {
list-style: none;
padding: 0;
margin: 20px;
}
#book-list li {
background-color: #fff;
border: 1px solid #ddd;
margin-bottom: 10px;
padding: 10px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
#book-list li:hover {
background-color: #f0f0f0;
}
.modal {
border: none;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
background-color: #fafafa;
max-width: 400px;
}
.modal:focus {
outline: none;
border: none;
}
h2 {
color: #333;
margin-bottom: 10px;
}
p {
color: #666;
margin: 0;
}
#search {
display: flex;
justify-content: center;
align-items: center;
margin-top: 50px;
}
#input {
padding: 10px;
border: none;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
font-size: 16px;
width: 200px;
margin-right: 10px;
outline: none;
}
#input:focus {
box-shadow: 0 0 5px rgba(0, 123, 255, 0.8);
}
input[type="submit"] {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #3d96f6;
color: #fff;
font-size: 16px;
cursor: pointer;
outline: none;
}
input[type="submit"]:hover {
background-color: #446d99;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #3d96f6;
color: #fff;
font-size: 16px;
cursor: pointer;
outline: none;
margin: 20px;
}
button:hover {
background-color: #446d99;
}