Skip to content

Instantly share code, notes, and snippets.

View anton-chernianu's full-sized avatar
🚀
frontend

Anton anton-chernianu

🚀
frontend
View GitHub Profile
@anton-chernianu
anton-chernianu / media-query.css
Created September 2, 2018 19:47 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@anton-chernianu
anton-chernianu / 0_selector_hacks.scss
Created September 11, 2018 12:49 — forked from chriseppstein/0_selector_hacks.scss
This gist demonstrates some uses of the new sass feature: Passing content blocks to mixins.
@mixin ie6 { * html & { @content } }
#logo {
background-image: url("/images/logo.png");
@include ie6 { background-image: url("/images/logo.gif"); }
}
@anton-chernianu
anton-chernianu / .gitignore
Created December 25, 2019 12:25 — forked from FullStackForger/.gitignore
.gitignore for Unity3d project
###
# Unity folders and files
###
[Aa]ssets/AssetStoreTools*
[Bb]uild/
[Ll]ibrary/
[Ll]ocal[Cc]ache/
[Oo]bj/
[Tt]emp/
[Uu]nityGenerated/