-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
48 lines (47 loc) · 1.01 KB
/
responsive.css
File metadata and controls
48 lines (47 loc) · 1.01 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
@media (max-width:950px) {
.products-section {
grid-template-columns: 1fr 1fr;
}
.banner-left-section h1 {
font-size: 35px;
}
.middle-logos {
display: none;
}
}
@media (max-width:800px) {
.banner-section {
grid-template-columns: 1fr;
height: fit-content;
align-items: center;
}
.products-section,
.contact {
grid-template-columns: 1fr;
}
.banner-left-section {
order: 2;
padding: 50px 0;
}
.nav-toggler-icon {
display: block;
}
.navigation-section {
position: absolute;
top: 80px;
left: 0;
width: 100%;
flex-direction: column;
align-items: center;
background-color: white;
padding: 20px 0;
transform: translateY(-360px);
transition: .5s ease-in-out;
}
.navigation-section li a {
color: #121212;
}
#nav-toggler:checked~.navigation-section {
transform: translateY(0px);
}
}