Last active
March 11, 2020 18:36
-
-
Save belfie13/b6a2de6c2d852dc05eec0173b072ac72 to your computer and use it in GitHub Desktop.
A template for essential CSS Media Queries to include.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "UTF-8"; | |
/* ~~~>>> Summary <<<~~~ | |
* screen (px) | |
* <640 : small phones | |
* 641-1280 : large phones, tablets | |
* 1281+ : desktops | |
*/ | |
@media only screen | |
{ | |
} | |
@media only screen and (max-width: 640px) | |
{ | |
} | |
@media only screen and (min-width: 641px) | |
{ | |
} | |
@media only screen and (min-width: 1281px) | |
{ | |
} | |
@media only screen and (prefers-color-scheme:light) | |
{ | |
} | |
@media only screen and (prefers-color-scheme:dark) | |
{ | |
} | |
/* CIID-CSS_Classes-Temple.css */ | |
/* ~~~>>> Summary <<<~~~ | |
* | |
* fixed and persistent document elements | |
* header, footer, nav, main … | |
* content boxes | |
* article, aside, div | |
* effects | |
* depth, deference, accessibility | |
* text/font | |
* color, shadows | |
* animation, transition | |
*/ | |
/* ~~~>>> Notages <<<~~~ | |
* - | |
* - | |
* - theme | |
* - color scheme | |
* - layout | |
* - html structure | |
*/ | |
.container-box | |
{ | |
display:; | |
position:; | |
top:; right:; bottom:; left:; | |
z-index:; | |
float:; clear:; | |
margin:; | |
border-width:; | |
padding:; | |
max-width:; | |
} | |
.content-box {} | |
.container-box.light | |
{ | |
border-color:; | |
background-color:; | |
box-shadow:; | |
} | |
.container-box.dark {} | |
.content-box.light {} | |
.content-box.dark {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment