forked from hackerwhale/free-cybersecurity-ebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (59 loc) · 1.01 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
/* Flex container */
.container {
flex-wrap: wrap;
justify-content: center;
align-items: center;
grid-gap: 10px;
max-width: 1000px;
height: 700px;
}
/* Flex item */
.book {
display: flex;
flex-direction: column;
align-items: center;
height: 650px;
width: 300px;
padding-bottom: 50px;
}
.book img {
max-width: 100%;
height: auto;
}
.book h2 {
margin-top: 5px;
font-size: 1.2rem;
text-align: center;
}
.footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #28a745;
color: #fff;
padding: 40px 0;
height: 20px;
}
.footer-content {
text-align: center;
margin-bottom: 20px;
}
.footer ul {
padding: 0;
list-style: none;
}
.footer ul li {
margin-bottom: 10px;
}
.footer ul li a {
color: #fff;
text-decoration: none;
}
.footer .copyright {
font-size: 14px;
}
.horizontal-icons li {
display: inline-block;
margin-right: 10px;
}