-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
75 lines (60 loc) · 1.13 KB
/
Copy pathresponsive.css
File metadata and controls
75 lines (60 loc) · 1.13 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
@media screen and (max-width: 900px) {
.home {
display: flex;
flex-direction: column-reverse;
}
.pic img {
width: 80%;
margin-right: 0;
margin-top: 10%;
}
.home .container {
width: 100vw;
}
.hero-description {
padding-left: 20px;
padding-right: 20px;
}
.hero-heading {
padding-left: 20px;
}
/* ------------------home------------ */
.home {
height: max-content;
}
.fa-solid {
margin-left: 0px;
}
}
@media screen and (max-width:700px) {
.brand{
display: none;
}
}
@media screen and (max-width: 600px) {
.gif{
display: none;
}
}
@media screen and (max-width: 350px) {
/* ------------from home------- */
.wave {
line-height: 23px;
font-size: 15px;
}
.hero-description {
padding-left: 0px;
padding-right: 0px;
word-break: break-all;
line-height: 30px;
}
.btn {
text-align: center;
}
.btn button {
margin-top: 10px;
}
.pic {
text-align: center;
}
}