-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (86 loc) · 1.39 KB
/
styles.css
File metadata and controls
100 lines (86 loc) · 1.39 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
a {
text-decoration: none;
color: green;
}
.cover {
object-fit: cover;
height: 150px;
max-width: 120px;
margin: 10px;
padding: 0px;
box-shadow: 0px 3px 8px #aaa;
}
.hidden {
display: none;
font-size: 1.6em;
line-height: 1.4em;
text-align: center;
font-family: 'Open Sans';
}
.author {
font-size: 0.8em;
font-style: italic;
}
#bookTable {
font-family: 'Open Sans';
font-size: 0.9em;
border-collapse: collapse;
font-weight: 400;
width: 100%;
}
#bookTable th, tr, td {
border: 0;
padding: 15px;
vertical-align: top;
}
#bookTable th {
padding: 5px;
background-color: rgb(29, 91, 48);
color: #fff;
font-weight: 600;
cursor: default;
font-size: 1.1em;
text-transform: uppercase;
}
#bookTable tr:nth-child(even) {
background-color: rgb(240, 246, 245);
}
#bookTable tr:nth-child(odd) {
background-color: #fff;
}
#bookTable .cover_td {
text-align: center;
padding: 0;
}
#bookTable .title_td {
width: 190px;
font-weight: 700;
}
#bookTable .author_td {
width: 160px;
}
#bookTable .summary_td {
line-height: 1.6em;
min-width: 300px;
font-size: 0.85em;
}
#bookTable .grade_td {
width: 80px;
text-align: center;
}
#bookTable .copies_td {
width: 70px;
text-align: center;
}
#books {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
#selector {
font-family: 'Open Sans';
font-size: 1em;
text-align: right;
font-variant: small-caps;
padding-right: 10px;
}