Skip to content

Instantly share code, notes, and snippets.

View aursog's full-sized avatar

Anggelo Urso aursog

  • Chile
View GitHub Profile
@aursog
aursog / gist:94871bff2afaebef93e99a8950c1d688
Created May 24, 2022 02:22 — forked from Mikodes/gist:be9b9ce42e46c3d4ccb6
All Media queries for resolutions
/* (320x480) iPhone (Original, 3G, 3GS) */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
/* insert styles here */
}
/* (320x480) Smartphone, Portrait */
@media only screen and (device-width: 320px) and (orientation: portrait) {
/* insert styles here */
}
@aursog
aursog / mixins.scss
Created May 28, 2019 18:50 — forked from charlieschwabacher/mixins.scss
SCSS mixins for cross browser CSS3 border-radius, transition, gradient, and box shadow
//Cross browser CSS3 mixins
@mixin box-shadow($left, $top, $radius, $color) {
box-shadow: $left $top $radius $color;
-webkit-box-shadow: $left $top $radius $color;
-moz-box-shadow: $left $top $radius $color;
}
@mixin transition($property, $duration, $easing: linear) {
transition: $property $duration $easing;