-
Notifications
You must be signed in to change notification settings - Fork 0
/
section5.css
81 lines (69 loc) · 1.3 KB
/
section5.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
.section5 {
display: flex;
width: 100vw;
height: fit-content;
padding-right: 2rem;
align-items: center;
gap: 8rem;
.right {
display: flex;
flex-direction: column;
max-width: 600px;
gap: 1rem;
transform: translateY(10%);
h1 {
font-size: 2.5rem;
padding-bottom: 1rem;
}
p {
color: var(--gray);
font-weight: 500;
}
}
}
@media screen and (max-width: 1450px) {
.section5 {
gap: 4rem;
}
}
@media screen and (max-width: 1350px) {
.section5 {
gap: 0rem;
.left {
&>* {
max-width: 45vw;
}
}
}
}
@media screen and (max-width: 1350px) {
.section5 {
.left {
&>* {
max-width: 45vw;
}
}
.right {
h1 {
font-size: 2rem;
}
p {
font-size: 0.8rem;
}
}
}
}
@media screen and (max-width: 768px) {
.section5 {
padding-inline: 1.5rem;
.left {
display: none;
}
.right {
transform: translateY(0%);
h1 {
font-size: 2.1rem;
}
}
}
}