-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive..css
More file actions
84 lines (78 loc) · 1.53 KB
/
responsive..css
File metadata and controls
84 lines (78 loc) · 1.53 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
76
77
78
79
80
81
82
83
84
@media only screen and (max-width: 600px) {
body{
background-color: red;
}
#circle{
display: none;
}
#secondHeading{
margin-left: 0vw;
}
#hero{
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#heroContainer h1{
font-size: 6rem;
/* font-size: 11vw; */
font-weight: 400;
opacity: 0.7;
line-height: 18vw;
/* letter-spacing: -5px; */
}
h6{
font-size: 1.2rem;
}
/* ..............................Banners.......................... */
.elem{
width: 100%;
}
.elem h1{
font-size: 3.5rem;
}
.banners{
padding-top: 10rem;
height: fit-content;
}
.about{
flex-direction: column;
width: 100%;
}
.aboutText{
width: 100%;
height: 50%;
}
.heading{
font-size: 1.5rem;
}
.contents{
font-size: 1.2rem;
}
#btn{
width: 7rem;
}
footer{
flex-direction: column-reverse;
align-items: flex-start;
gap: 15px;
}
.rightFooter h6{
font-size: 4vw;
}
}
@media only screen and (max-width: 446px){
#heroContainer h1{
font-size: 20vw;
}
h6{
font-size: 5vw;
}
h5{
font-size: 4vw;
}
.links div{
width: 40%;
}
}