Skip to content

Instantly share code, notes, and snippets.

View adrianmg's full-sized avatar
🐙
Enjoying life

Adrian Mato adrianmg

🐙
Enjoying life
View GitHub Profile
@adrianmg
adrianmg / vars.breakpoints.css
Last active August 18, 2018 19:15 — forked from basiclines/vars.breakpoints.css
Media Queries for mobile devices
/**
* Custom breakpoints
*
*/
@custom-media --desktop-XL screen and (max-width: 1920px);
@custom-media --desktop-L screen and (max-width: 1440px);
@custom-media --desktop-M screen and (max-width: 1280px);
@custom-media --desktop-S screen and (max-width: 1080px);
@custom-media --desktop-XS screen and (max-width: 900px);
@adrianmg
adrianmg / dabblet.css
Created June 6, 2012 10:21 — forked from anonymous/dabblet.css
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body { background: #fff; padding: 100px; font: 11px/16px Sans-serif, Helvetica, Arial; color: #fff; }
.button {
width: 46px; height: 24px; line-height: 25px; cursor: pointer;
text-align: center; display: inline-block; vertical-align: middle; font-weight: bold;
background: -webkit-linear-gradient(#81C859, #68A047);
border: 1px solid #679F46; border-radius: 4px;