This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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; |