Skip to content

Instantly share code, notes, and snippets.

View brovnie's full-sized avatar
🔨
Work in progress

Marlena brovnie

🔨
Work in progress
  • Belgium
View GitHub Profile
@import url(https://fonts.googleapis.com/css?family=Nunito);
/*
! tailwindcss v3.0.23 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
@brovnie
brovnie / media-query.css
Created September 30, 2019 16:19 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@brovnie
brovnie / countries_by_population.sql
Last active February 8, 2019 22:17 — forked from pamelafox/countries_and_territories.sql
countries_by_population.sql
/*
Top 100 Countres By Population, 2014
Collected by https://www.khanacademy.org/profile/darrylyeo/
Data adapted from
http://www.worldometers.info/world-population/population-by-country/
*/
CREATE TABLE countries_by_population (
rank INTEGER PRIMARY KEY AUTOINCREMENT,
country TEXT,