-
Notifications
You must be signed in to change notification settings - Fork 0
/
tablet.css
85 lines (71 loc) · 1.61 KB
/
tablet.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
@media only screen and (max-width: 900px) {
nav{
display: none;
}
.mobil-tablet-nav{
display: flex;
}
header{
flex-direction: column;
justify-content: center;
align-items: center;
}
header .left-section{
width: 100% !important;
flex-direction: column;
justify-content: center;
align-items: center;
}
header .left-section h2{
text-align: center;
}
header .left-section p{
text-align: center;
}
header .play-shop {
display: flex;
margin-top: 2em;
gap: 1.5em;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
margin-bottom: 6em;
}
main .web-design img{
width: 300px;
height: 300px;
}
main .top-section{
padding: 5em 5em;
gap: 2em;
}
main .features-section {
display: flex;
justify-content: center;
align-items: center;
padding: 5em 6em;
flex-direction: column-reverse;
flex-wrap: nowrap;
align-content: center;
}
main .features-section .features-details{
width: 100%;
margin-bottom: 5em;
gap: 5em;
}
main .features-section .mobileIMG-section .backOfMobile-circle{
display: none;
}
main .web-design {
padding: 5em 5em;
flex-direction: column;
}
main .web-design .inside-web h2{
width: 7em;
text-align: center;
}
main .web-design .inside-web p {
text-align: center;
}
}