-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
222 lines (182 loc) · 2.89 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
line-height: 24px;
font-weight: normal;
font-family: 'Balsamiq Sans', cursive;
font-style: normal;
}
ul,
li {
list-style: none;
}
a {
text-decoration: none;
color: black;
}
button {
border: none;
border-radius: 0;
}
button:hover {
cursor: pointer;
opacity: 0.8;
}
button:active {
opacity: 0.5;
}
.d-flex-2 {
display: flex;
flex-direction: column;
align-items: center;
}
.d-flex-only {
display: flex;
}
.text-center {
text-align: center;
}
.active {
color: blue;
}
.br {
border-right: 0.3em solid black;
}
header {
border: 0.3em solid black;
padding: 8px 16px 8px 12px;
}
header .container {
width: 100%;
justify-content: space-between;
align-items: center;
}
section.bk-sect {
padding: 24px;
}
section.bk-form form {
padding: 24px 0;
gap: 12px;
width: 100%;
}
section.bk-sect h1,
section.bk-form h2 {
text-align: center;
font-weight: 500;
}
section.bk-form form input {
outline: none;
width: 98%;
height: 32px;
padding: 2px 16px 2px 15px;
border: 2px solid black;
}
.border {
border: 2px solid black;
}
section.main-book ul {
margin: 32px 0;
}
section.main-book ul li {
padding: 0 8px;
height: 48px;
width: 100%;
display: flex;
justify-content: space-between;
}
section.main-book ul li div h2 {
font-size: 14px;
align-self: flex-start;
}
section.main-book ul li div {
display: flex;
align-self: flex-start;
margin: auto 0;
gap: 4px;
width: 100%;
flex-wrap: wrap;
}
section.bk-form form button,
section.main-book ul li button {
box-shadow: 0.17em 0.17em;
border: 2px solid black;
padding: 8px;
align-self: flex-end;
font-weight: bold;
}
section.main-book ul li button {
margin: auto 0;
}
.hide {
display: none;
}
.mr-4 {
margin-right: 4px;
}
.p-tb {
padding-top: 40px;
padding-bottom: 40px;
}
footer p {
font-size: 20px;
padding: 15px 20px;
border: 0.3em solid black;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: white;
}
section.contact-sect p {
margin: 20px auto;
}
section.contact-sect ul li {
align-self: flex-start;
margin: 0 24px;
list-style: disc;
}
header .container nav ul li {
display: inline-block;
padding: 5px;
}
section.main-book ul li:nth-child(odd) {
background-color: rgba(128, 128, 128, 0.5);
}
footer p a {
color: blue;
}
.date {
display: flex;
justify-content: flex-end;
margin: 20px;
}
@media screen and (min-width: 768px) {
section.bk-sect {
padding: 4% 10%;
}
section.main-book ul {
max-width: 600px;
margin: 32px auto;
}
.p-tb-lg {
padding-top: 8%;
padding-bottom: 8%;
}
section.bk-form form {
max-width: 300px;
margin: 0 auto;
}
section.contact-sect p {
max-width: 444px;
text-align: left;
margin: 40px auto;
}
header .container nav ul li {
padding: 0.3em 3em;
}
}