mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 02:17:36 +01:00
17 lines
609 B
SCSS
17 lines
609 B
SCSS
|
/* ==========================================================================
|
||
|
EXAMPLE Media Queries for Responsive Design.
|
||
|
These examples override the primary ('mobile first') styles.
|
||
|
Modify as content requires.
|
||
|
========================================================================== */
|
||
|
|
||
|
@media only screen and (min-width: 35em) {
|
||
|
/* Style adjustments for viewports that meet the condition */
|
||
|
}
|
||
|
|
||
|
@media print,
|
||
|
(-o-min-device-pixel-ratio: 5/4),
|
||
|
(-webkit-min-device-pixel-ratio: 1.25),
|
||
|
(min-resolution: 120dpi) {
|
||
|
/* Style adjustments for high resolution devices */
|
||
|
}
|