Skip to content

Instantly share code, notes, and snippets.

View Osama92's full-sized avatar
:octocat:
On The Moon Again

Atobiloye Usama Adedayo Osama92

:octocat:
On The Moon Again
View GitHub Profile
@guidomb
guidomb / database.json
Last active May 23, 2019 15:54
Firebase database model example for a Twitter-like application
{
"users": {
"280598f1-e31e-4ced-845e-c8dd10e11ec3": {
"first_name": "Guido",
"last_name": "Marucci Blas",
"username": "guidomb",
"email": "guidomb@wolox.com.ar"
},
"280598f1-e31e-4ced-845e-c8dd10e11ad5": {
@bartholomej
bartholomej / css-media-queries-cheat-sheet.css
Last active May 7, 2024 16:41
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) { }