-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfavorite.css
More file actions
43 lines (40 loc) · 743 Bytes
/
favorite.css
File metadata and controls
43 lines (40 loc) · 743 Bytes
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
.main_fav {
width: 90%;
margin: 30px auto 70px;
text-align: center;
min-height: 100vh;
}
.main_fav h2 {
text-align: center;
margin-top: 8rem;
}
.products_section{
margin-left:2.5rem;
}
.products_section p {
margin-left: 6rem;
text-align: center;
justify-content: center;
color: var(--secondary-color);
font-size: x-large;
}
/* ==> ----------------- responsive ----------------- <== */
@media (max-width: 768px) {
.products_section {
grid-template-columns: 1fr;
gap: 15px;
}
.main_fav {
width: 90%;
margin: 20px 0.1rem 50px;
}
.main_fav h2 {
margin-left: 2rem;
margin-top: 7rem;
font-size: 1.3rem;
}
.products_section p {
margin-left: 2rem;
text-align: center;
}
}