blob: 8c357972212276aee7fc75727ebf0de5d1ad8132 (
plain)
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
|
.packages-container {
max-width: 1236px;
margin: 20px auto;
}
img[alt*="www.000webhost.com"] {
display: none;}
.package-container {
width: 28%;
min-width: 320px !important;
margin: 2.15%;
display: inline-block;
}
.package-label {
display: block;
text-align: left;
font-weight: 600;
color: #111;
font-size: 15px;
line-height: 1.2;
}
.package-label-value {
text-align: right;
font-size: 13px;
padding-top: 1px;
padding-bottom: 1px;
color: #777;
float: right;
}
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
.package-container {
max-width: 100%;
width: 100%;
padding: 0px;
display: inline-block;
margin: 0px;
}
}
/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
/* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {
/* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* Styles */
}
/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* Styles */
}
/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* Styles */
}
/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {
/* Styles */
}
/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {
/* Styles */
}
|