forked from Technigo/project-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (60 loc) · 1015 Bytes
/
style.css
File metadata and controls
72 lines (60 loc) · 1015 Bytes
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
body {
font-family: Arial, Helvetica, sans-serif;
}
header {
width: 100%;
/*justify-content: center;
display: flex;
flex-wrap: wrap;*/
text-align: center;
}
p {
font-size: 20px;
}
#filterDropdown {
margin-bottom: 14px;
height: 20px;
}
#container {
width: 100%;
justify-content: center;
display: flex;
flex-wrap: wrap;
}
.card {
min-height: 300px;
width: 300px;
vertical-align: text-top;
background: #f5f5f5;
border-radius: 3px;
border: 1px solid #ddd;
margin: 10px;
padding: 10px;
}
.card img {
width: 100%;
max-height: 150px;
object-fit: cover;
margin: 0px 0 20px 0;
}
.card p {
font-size: 16px;
}
.card p.title {
font-size: 18px;
font-weight: bold;
}
.card p.author,
.card p.publication-year,
.card p.description {
font-size: 16px;
margin: 10px 0px;
}
.card p.rating {
margin-top: 40px;
}
button {
background-color: #fff;
border: none;
text-decoration: underline;
}