-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnav-style.css
115 lines (97 loc) · 1.77 KB
/
nav-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
107
108
109
110
111
112
113
114
115
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Indie Flower", cursive;
font-family: "Lato", sans-serif;
font-family: "Open Sans", sans-serif;
font-family: "Roboto", sans-serif;
}
header {
display: flex;
border: 2px solid #000;
padding: 8px 20px 8px 20px;
margin: 12px 0 20px 0;
}
.time {
text-align: right;
}
.awesome-books {
flex: 1;
}
.form-heading {
margin-bottom: 30px;
}
.nav-links {
display: flex;
list-style-type: none;
}
.link {
border-right: 1px solid #000;
padding: 5px 5px;
font-weight: bold;
font-family: "Indie Flower", cursive;
font-family: "Lato", sans-serif;
font-family: "Open Sans", sans-serif;
font-family: "Roboto", sans-serif;
}
.link:hover {
color: rgb(4, 4, 243);
cursor: pointer;
}
.link:focus {
color: rgb(4, 4, 243);
}
.active {
display: block;
}
.link:nth-child(3) {
border: none;
}
.all-awesome-books {
text-align: center;
margin-bottom: 20px;
font-family: "Indie Flower", cursive;
font-family: "Lato", sans-serif;
font-family: "Open Sans", sans-serif;
font-family: "Roboto", sans-serif;
}
.add-book,
.contact {
text-align: center;
display: block;
}
.books-img {
text-align: center;
width: 40px;
height: 40px;
}
.contact-info-container {
border: 3px solid #000;
padding: 15px;
text-align: start;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
line-height: 30px;
}
.contact-info-heading {
font-size: 33px;
padding-bottom: 15px;
text-align: center;
margin: 20px 20px;
}
footer {
margin-top: 3rem;
}
.footer {
border: 3px solid #000;
padding: 20px;
width: 97%;
margin: 0 auto;
}
.empty-footer {
width: 100%;
height: 50px;
background-color: rgb(163, 160, 160);
border: 3px solid #000;
margin-top: 15px;
}