Skip to content

Instantly share code, notes, and snippets.

View lynnandtonic's full-sized avatar
🍕

Lynn Fisher lynnandtonic

🍕
View GitHub Profile
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');
/* ------------------------------------------
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
@lynnandtonic
lynnandtonic / gist:8979132
Created February 13, 2014 17:00
Media Queries in a separate file
Assumptions: media queries are in a separate file for reasons of maintainability and scalability
So would it look like this:
@media screen and (max-width: 800px) {
.thing-one { styles }
.thing-two { styles }