-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary_db.css
More file actions
110 lines (86 loc) · 1.38 KB
/
library_db.css
File metadata and controls
110 lines (86 loc) · 1.38 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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("bookshelf_tile3.png");
background-repeat: repeat;
background-attachment: fixed;
}
.heading {
text-align: center;
}
.heading > h2 {
margin: 0;
margin-bottom: 2%;
}
.search-form {
display: block;
text-align: left;
width: 520px;
background-color: aquamarine;
padding: 2%;
margin: 1%;
}
.search-columns {
display: grid;
grid-template-rows: 1fr 1fr;
}
.search-row {
display: grid;
grid-template-columns: 1fr 3fr 2fr 2fr;
}
#title-search, #author-search {
width: 200px;
}
.search-radio {
font-size: 12px;
}
table {
border-collapse: collapse;
}
td, th {
border: 1px solid black;
text-align: left;
}
td {
background-color: rgb(200, 200, 255);
}
th {
border-width: 2px;
background-color: skyblue;
}
.genre-columns {
display: grid;
grid-template-rows: 1fr 1fr 1fr 1fr;
}
.genre-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.genre-row > div {
font-size: 12px;
}
.submit-button {
text-align: center;
}
button {
font-size: 16px;
margin-top: 5%;
cursor: pointer;
border: 1px solid darkblue;
border-radius: 2%;
transition: font-weight 0.1s;
}
button:hover {
font-weight: bold;
}
button:active {
border-width: 2px;
}
.search-form, .output-table > table {
border: 2px solid rgb(0, 0, 120);
}
.search-form {
border-radius: 2%;
}