-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmedia_query.css
103 lines (95 loc) · 1.7 KB
/
media_query.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@media all and (max-width:1250px){
#image_art{
width: 90%;
}
#service_card{
width: 90%;
}
.background_svg {
width: 90%;
}
#container-2{
width: 90%;
}
#view_division{
width: 90%;
}
}
@media all and (max-width:1040px){
#service_card{
width: 80%;
grid-template-columns: repeat(4,1fr);
}
.top{
flex-direction: column;
align-items: flex-start;
}
.bottom>div {
grid-template-columns: 1fr
}
#container-2{
width: 70%;
}
#tags {
width: 80%;
gap: 10px;
flex-wrap: wrap;
}
}
@media all and (max-width:750px){
#image_art{
display: none;
}
#view_division{
grid-template-columns: 1fr;
}
#service_card{
width: 80%;
grid-template-columns: repeat(3,1fr);
}
#landing>h1,#landing2>h1{
width: 80%;
font-size: 50px;
}
#email,#email2{
width: 90%;
}
#container-2{
grid-template-columns: 1fr;
width: 80%;
}
#tabs{
width: 90%;
}
#division>div{
grid-template-columns: 1fr;
}
}
@media all and (max-width:570px){
#service_card{
width: 70%;
grid-template-columns: repeat(2,1fr);
}
#landing>h1 , #getemail2>p{
width: 80%;
font-size: 25px;
}
#email,#email2{
width: 95%;
}
#email>input,#email2>input {
font-size: 15px;
padding-left: 10px;
}
#email>:last-child ,#email2>:last-child {
background-color: #ff7342;
padding: 5px;
}
#check_list,#check_list2 {
width: 90%;
}
#check_list>div,#check_list2>div{
font-size: 15px;
justify-content: space-evenly;
}
}