-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
135 lines (116 loc) · 1.83 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
* {
font-family: sans-serif;
margin: 0;
}
.d-flex {
display: flex !important;
}
.d-none {
display: none !important;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
}
.title {
text-align: center;
font-size: 90px;
}
.display-books {
border: 5px solid;
width: 100%;
}
.book-container {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 19px;
font-size: 30px;
}
.book-author {
font-size: 26px;
font-weight: 400;
}
.sub-title {
font-size: 48px;
margin-bottom: 43px;
}
.add-book {
width: 40%;
display: flex;
flex-direction: column;
align-items: center;
}
form {
display: flex;
flex-direction: column;
align-items: flex-end;
width: 100%;
}
input {
border: 2px solid;
border-radius: 5px;
width: 100%;
height: 38px;
}
button {
font-size: 32px;
border: 77px 59px black;
padding: 4px;
box-shadow: 7px 6px #000;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 25px;
border: 4px solid;
padding: 0 10px;
border-radius: 14px;
height: 75px;
align-items: center;
width: 97%;
margin-top: 7px;
}
.nav-list {
list-style: none;
display: flex;
gap: 25px;
}
a {
text-decoration: none;
}
.contact-section {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
padding-top: 100px;
font-size: 40px;
}
footer {
position: fixed;
bottom: 13px;
height: 82px;
padding: 28px;
box-sizing: border-box;
padding-top: 20px;
border-radius: 13px;
font-size: 26px;
font-weight: 700;
border: 5px solid;
width: 97%;
}
.time {
width: 341px;
height: 50px;
align-self: flex-end;
margin-right: 17px;
color: #c8b4b4;
font-size: 23px;
font-weight: 600;
}