-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
47 lines (38 loc) · 751 Bytes
/
responsive.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
/* @media screen and (max-width: 700px) {
.logo {
background-color: red;
}
} */
@media only screen and (min-width: 0px) and (max-width: 500px) {
/* nav start */
nav {
flex-direction: column;
justify-content: space-between;
align-items: center;
}
/* banner */
.banner-container {
flex-direction: column-reverse;
margin-top: 40px;
}
.banner-title {
width: 100%;
text-align: center;
}
.banner-image {
justify-content: center;
width: 100%;
}
/* recent post */
.post-container {
flex-direction: column;
}
/* featured items */
.f-one{
display: flex;
flex-direction: column;
gap: 15px;
}
}
@media only screen and (min-width: 501px) and (max-width: 800px) {
}