uci-hugo-landingpage/static/css/responsive.css

42 lines
818 B
CSS
Raw Normal View History

/* mobile first in base and page css*/
2017-03-10 22:59:27 -08:00
/* small tablets */
@media only screen and (min-width: 600px) {
.section__content ul li {
text-indent: -2rem;
}
2017-03-10 22:59:27 -08:00
}
@media only screen and (min-device-width: 600px) and (max-device-width: 799px) {
2017-03-10 22:59:27 -08:00
}
/* tablets */
@media only screen and (min-width: 800px) {
}
@media only screen and (min-device-width: 800px) and (max-device-width: 1190px) {
}
/* desktop */
@media only screen and (min-width: 1200px) {
.section__container {
max-width: 1200px;
}
/* help with centering content with hidden phone number */
.box__contact {
margin-left: 6em;
}
2017-03-10 22:59:27 -08:00
}
@media only screen and (min-device-width: 1200px) and (max-device-width: 1800px) {
/* Styles */
2017-03-10 22:59:27 -08:00
}
/* large */
@media screen and (min-width: 1800px) {
.section__container {
max-width: 1200px;
}
}