Skip to content

Instantly share code, notes, and snippets.

View Zorba11's full-sized avatar
🎯
Focusing

Alen George Zorba11

🎯
Focusing
View GitHub Profile
@Zorba11
Zorba11 / myscript.sh
Created March 29, 2022 16:09 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"
@Zorba11
Zorba11 / css-media-queries-cheat-sheet.css
Created February 6, 2021 18:31 — 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) { }