2021-10-26 22:09:35 -07:00
|
|
|
/* mobile first in base and page css*/
|
|
|
|
|
2021-11-10 12:52:36 -08:00
|
|
|
@media only screen and (min-width: 450px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-device-width: 450px) and (max-device-width: 599px) {
|
|
|
|
}
|
|
|
|
|
2021-10-26 22:09:35 -07:00
|
|
|
/* small tablets */
|
|
|
|
@media only screen and (min-width: 600px) {
|
2021-11-10 12:52:36 -08:00
|
|
|
|
|
|
|
.section--hero {
|
|
|
|
padding-top: 2em;
|
2021-10-26 22:09:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-11-10 12:52:36 -08:00
|
|
|
|
2021-10-26 22:09:35 -07:00
|
|
|
@media only screen and (min-device-width: 600px) and (max-device-width: 799px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/* tablets */
|
|
|
|
@media only screen and (min-width: 800px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-device-width: 800px) and (max-device-width: 1199px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/* desktop */
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
|
|
|
|
/*this left justifies the individual elements left*/
|
|
|
|
/*.section__content--hero {
|
|
|
|
align-items: flex-start;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
/*this moves all the elements together left and down*/
|
|
|
|
/*.section--hero {
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-device-width: 1200px) and (max-device-width: 1800px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/* large */
|
|
|
|
@media screen and (min-width: 1800px) {
|
|
|
|
}
|