-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
340 lines (270 loc) · 4.83 KB
/
Copy pathstyle.css
File metadata and controls
340 lines (270 loc) · 4.83 KB
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
* {
/* Here, every single element gets this property.
And unless otherwise specified, it will hold it.
Every single element! Uncomment the line below,
inspect the page, and you will see it!
Yeah, do as recommended - a very insightful thing.*/
/* background-color: green; */
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
color: #444;
border-top: 10px solid #1098ad;
}
.container {
width: 1200px;
/* margin-left: auto;
margin-right: auto; */
margin: 0 auto;
position: relative;
}
h1,
h2,
h3 {
color: #1098ad;
}
.main-header {
background-color: #dcdcdc;
padding: 20px 40px;
/* margin-bottom: 60px; */
/* height: 80px;*/
}
.main-nav {
font-size: 18px;
text-align: center;
}
article {
/* margin-bottom: 60px; */
}
.post-header {
margin-bottom: 40px;
}
/*This is a class selector*/
.author {
font-size: 18px;
font-style: italic;
}
.img-code {
width: 100%;
height: auto;
/* We need this 'auto' because we made
specified height and width in HTML. If we
don't apply this line, our height will
always be as specified in the HTML.*/
}
h1 {
font-size: 26px;
text-transform: uppercase;
font-style: italic;
}
/* Pseudo-element */
h1::first-letter {
font-style: normal;
margin-right: 5px;
}
h2 {
font-size: 40px;
margin-bottom: 30px;
position: relative;
}
h2::after {
content: "TOP";
font-size: 16px;
font-weight: bold;
color: #444;
background-color: #ffe70e;
display: inline-block;
padding: 5px 10px;
position: absolute;
right: -26px;
top: -15px;
}
h3 {
font-size: 30px;
margin-top: 40px;
margin-bottom: 20px;
}
h4 {
font-size: 20px;
text-transform: uppercase;
text-align: center;
margin-bottom: 20px;
}
p {
font-size: 22px;
line-height: 1.5;
margin-bottom: 15px;
}
ul,
ol {
margin-left: 50px;
margin-bottom: 20px;
}
li {
font-size: 20px;
margin-bottom: 10px;
/* display: inline; */
}
li:last-child {
margin-bottom: 0;
}
/* footer p {
/*Descendant property: we want 'p'-s which are inside 'footer'.
In this way, we style only these 'p'-s - other 'p'-s
in the HTML are not changed.
font-size: 16px;
} */
/*This is an ID selector*/
#copyright {
font-size: 16px;
}
aside {
background-color: #dcdcdc;
border-top: 5px solid #1098ad;
border-bottom: 5px solid #1098ad;
padding: 50px 40px;
}
.related-author {
font-size: 18px;
font-weight: bold;
}
.related {
list-style: none;
margin-left: 0;
}
li:first-child {
font-weight: bold;
}
li:last-child {
font-style: italic;
}
a:link,
a:visited {
color: #1098ad;
text-decoration: none;
}
a:hover {
color: #1098ad;
font-weight: bold;
text-decoration: underline;
}
a:active {
background-color: black;
color: white;
font-style: italic;
}
/* When styling hyperlinks, this exact sequence
of 4 properties is held: LVHA */
.main-nav a:link {
margin-right: 30px;
/* margin-top: 10px; */
display: inline-block;
}
.main-nav a:link:last-child {
margin-right: 0;
}
button {
font-size: 20px;
padding: 10px;
cursor: pointer;
position: absolute;
bottom: 0;
right: 0;
}
/* Applying FLOAT
h1 {
background-color: red;
float: left;
}
nav {
background-color: yellow;
float: right;
}
.clearfix::after {
clear: both;
content: "";
display: block;
}
article {
width: 825px;
float: left;
}
aside {
width: 300px;
float: right;
}
footer {
clear: both;
} */
/* FLEXBOX */
.main-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.author-box {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.author {
margin-bottom: 0;
margin-left: 15px;
}
.related-post {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 30px;
}
.related-link:link {
font-size: 17px;
font-weight: bold;
font-style: normal;
display: block;
margin-bottom: 5px;
}
.related-author {
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
font-style: italic;
}
/* FLEXBOX LAYOUT */
/* .row {
display: flex;
align-items: flex-start;
gap: 75px;
margin-bottom: 60px;
}
article {
flex: 1;
flex-grow: 1 kyldyk. demek bar bos jerdi alatyn bolady bul element
margin-bottom: 0;
}
aside {
DEFAULTS
flex-grow: 0
flex-shrink: 1
flex-basis: auto
flex: 0 0 300px;
} */
/* CSS GRID */
.container {
display: grid;
grid-template-columns: 1fr 300px;
column-gap: 75px;
row-gap: 60px;
align-items: start;
}
.main-header {
grid-column: 1 / -1;
}
aside {
}
footer {
grid-column: 1 / -1;
}