Skip to content

Instantly share code, notes, and snippets.

@tangoslee
Last active October 7, 2018 17:42
Show Gist options
  • Save tangoslee/11d39b0411ca42804bd5539f6ca11fc2 to your computer and use it in GitHub Desktop.
Save tangoslee/11d39b0411ca42804bd5539f6ca11fc2 to your computer and use it in GitHub Desktop.
Media queries
/* You can add global styles to this file, and also import other style files */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
font-size: 16px;
line-height: 16px;
}
body {
min-height: 100%;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
@media (min-width: 300px) {
}
@media (min-width: 400px) {
}
@media (min-width: 575px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
/*
https://getbootstrap.com/docs/4.1/layout/overview/
https://medium.com/learning-new-stuff/learn-css-flexbox-in-3-minutes-c616c7070672
https://internetingishard.com/html-and-css/flexbox/
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
http://www.amp-what.com/unicode/search/
http://htmldog.com/references/css/properties/box-shadow/
https://webdesign.tutsplus.com/ko/tutorials/comprehensive-guide-when-to-use-em-vs-rem--cms-23984
https://autoprefixer.github.io/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment