Skip to content

Instantly share code, notes, and snippets.

View OstapenkoIvan's full-sized avatar
🎯
Focusing

Ivan Ostapenko OstapenkoIvan

🎯
Focusing
  • Odessa
View GitHub Profile
@OstapenkoIvan
OstapenkoIvan / SassMeister-input.scss
Created July 14, 2022 07:43 — forked from kenwheeler/SassMeister-input.scss
Generated by SassMeister.com.
// ----
// Compass (v1.0.1)
// ----
$primaryColor: #eeccff;
body {
$primaryColor: #ccc !global;
background: $primaryColor;
}
@OstapenkoIvan
OstapenkoIvan / css-media-queries-cheat-sheet.css
Created January 24, 2021 15:56 — 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) { }
@OstapenkoIvan
OstapenkoIvan / high-dpi-media.css
Created January 24, 2021 15:53 — forked from marcedwards/high-dpi-media.css
A CSS media query that captures almost all high DPI aware devices.
/* ---------------------------------------------------------- */
/* */
/* A media query that captures: */
/* */
/* - Retina iOS devices */
/* - Retina Macs running Safari */
/* - High DPI Windows PCs running IE 8 and above */
/* - Low DPI Windows PCs running IE, zoomed in */
/* - Low DPI Windows PCs and Macs running Firefox, zoomed in */
/* - Android hdpi devices and above */
@OstapenkoIvan
OstapenkoIvan / media-query.css
Created January 24, 2021 15:48 — 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 */