media queries
unknown
css
5 years ago
648 B
8
Indexable
/* TABLET VIEW */
@media only screen and (max-width: 720px) {
.homeH {
bottom: 38%;
}
.homeP {
bottom: 26%;
}
.homeButton {
font-size: 18px;
}
}
/* SMALLER VIEW */
@media only screen and (max-width: 500px) {
.homeH {
font-size: 28px;
bottom: 32%;
}
.homeP {
font-size: 18px;
bottom: 26%;
}
.homeButton {
font-size: 18px;
}
}
/* MOBILE VIEW */
@media only screen and (max-width: 400px) {
.homeH {
font-size: 28px;
bottom: 38%;
}
.homeP {
font-size: 18px;
bottom: 26%;
}
.homeButton {
font-size: 18px;
}
}
Editor is loading...