Skip to content

Instantly share code, notes, and snippets.

View robertexe's full-sized avatar

Robert Tabares robertexe

  • New York, NY
View GitHub Profile
@robertexe
robertexe / css-media-queries-cheat-sheet.css
Created July 28, 2019 21:49 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@robertexe
robertexe / README.md
Created April 17, 2018 23:33 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@robertexe
robertexe / README.md
Created April 17, 2018 23:33 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h1>Hey There!</h1>
<p>This is our interactive code editor</p>