-
Notifications
You must be signed in to change notification settings - Fork 0
/
responsive.css
80 lines (76 loc) · 1.35 KB
/
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
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
@media only screen and (max-width: 1050px) {
.bottom__title-section1 {
opacity: 0;
visibility: hidden;
}
}
@media only screen and (max-width: 781px) {
.section1 .background {
background-image: url(./img/iPhone12.jpg);
/* position: absolute; */
top: 3%;
transform: scale(1.2);
}
}
@media only screen and (max-width: 415px) {
.section3 .background {
bottom: -27px;
}
}
@media only screen and (max-width: 800px) {
header{
overflow: hidden;
}
header ul{
display: flex;
flex-direction: column;
}
header ul li{
margin-top: 7px;
margin-bottom: 3px;
}
}
@media only screen and (max-width: 800px) {
.content_fix{
font-size: 40px !important;
}
.footer1__copyright{
display: none;
}
}
@media only screen and (max-width: 800px) {
#header__home2{
display: none;
}
}
@media only screen and (min-width: 800px) {
#header__home1{
display: none;
}
}
@keyframes zoomin {
to{
height: 390px;
}
}
@keyframes zoomout {
from{
height: 390px;
}
to{
height: 50px;
}
}
@keyframes zoomin1 {
to{
height: 450px;
}
}
@keyframes zoomout1 {
from{
height: 450px;
}
to{
height: 50px;
}
}