-
Notifications
You must be signed in to change notification settings - Fork 0
/
mediaquery.css
126 lines (115 loc) · 2.48 KB
/
mediaquery.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/* Extra Small Devices */
/* (phones (phones)) -CSS rules for extra small screens */
@media (max-width: 575.98px) {
.btn-overlay-cs {
letter-spacing: 3px;
font-size: 0.6rem;
}
#toastfooter {
position: fixed;
bottom: 0;
padding: 0;
}
.main-container-home-cards-hero {
height: 40vh;
}
.carousel-home-cards-hero {
height: max-content;
}
.container-icons-colors a {
display: inline-block;
}
.container-icons-colors span {
display: inline-block;
margin: 0;
padding: 0;
}
}
/* Small Devices */
/* (tablets (tablets)) -CSS rules for small screens */
@media (min-width: 576px) and (max-width: 767.98px) {
#cartButton {
margin-bottom: -10px;
}
.btn-overlay-cs {
letter-spacing: 7px;
font-size: 1rem;
}
#toastfooter {
position: fixed;
bottom: 0;
width: 100%;
padding: 20px 0;
}
.main-container-home-cards-hero {
height: 45vh;
}
.carousel-home-cards-hero {
height: max-content;
}
.container-icons-colors span {
display: inline-block;
margin: 0;
padding: 0;
}
}
@media (min-width: 768px) {
#containeritems {
grid-template-columns: repeat(4, 1fr);
}
}
/* Medium Devices */
/* ( (laptops, desktops)) -CSS rules for medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
#toastfooter {
position: fixed;
bottom: 0;
width: 100%;
padding: 20px 0;
}
.main-container-home-cards-hero {
height: 45vh;
}
.carousel-home-cards-hero {
height: max-content;
}
.container-icons-colors span {
display: inline-block;
margin: 0;
padding: 0;
}
}
/* Large Devices */
/* (desktops (desktops)) -CSS rules for large screens */
@media (min-width: 992px) and (max-width: 1199.98px) {
#toastfooter {
position: fixed;
bottom: 0;
width: 100%;
padding: 20px 0;
}
.main-container-home-cards-hero {
height: 55vh;
}
.carousel-home-cards-hero,
.carousel-inner {
height: fit-content;
}
}
/* Extra Large Devices */
/* (extra-large desktops (large desktops, TVs)) -CSS rules for extra-large screens */
@media (min-width: 1200px) and (min-height: 1080px) {
#toastfooter {
position: fixed;
bottom: 0;
width: 100%;
padding: 20px 0;
}
.main-container-home-cards-hero {
height: 60vh;
}
.carousel-home-cards-hero,
.carousel-inner {
height: fit-content;
}
}