Skip to content

Instantly share code, notes, and snippets.

View hmaciasc's full-sized avatar
🏹

Héctor Macías hmaciasc

🏹
View GitHub Profile
@hmaciasc
hmaciasc / conf.fish
Created June 11, 2018 10:15
Fish docker aliases
# ------------------------------------
# Docker alias and function
# ------------------------------------
# Get latest container ID
alias dl="docker ps -l -q"
# Get container process
alias dps="docker ps"
alias dpa="docker ps -a"

Keybase proof

I hereby claim:

  • I am hmaciasc on github.
  • I am hmaciasc (https://keybase.io/hmaciasc) on keybase.
  • I have a public key ASBxwmA1hxzzDYlOFYFMwH1SGif8I9Us2SVO95US6aX25Qo

To claim this, I am signing this object:

@hmaciasc
hmaciasc / css resets
Last active June 25, 2017 09:53
Css resets template
html {
box-sizing: border-box;
font-size: 16px;
}
*, *:before, *:after {
box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
@mixin for-size($range) {
$phone-upper-boundary: 600px;
$tablet-portrait-upper-boundary: 900px;
$tablet-landscape-upper-boundary: 1200px;
$desktop-upper-boundary: 1800px;
@if $range == phone-only {
@media (max-width: #{$phone-upper-boundary - 1}) { @content; }
} @else if $range == tablet-portrait-up {
@media (min-width: $phone-upper-boundary) { @content; }