Last active
October 28, 2016 17:14
-
-
Save x-raizor/b8361ca461b5f942e7f69c8c8d3fca88 to your computer and use it in GitHub Desktop.
585 buttons
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
| /** | |
| * 585 buttons | |
| */ | |
| body { | |
| background: #ffffff; | |
| min-height: 100%; | |
| text-align: center; | |
| } | |
| button { | |
| height: 30px; | |
| font-size: 16px; | |
| color: #fff; | |
| padding: 0.25em 2em 0.5em; | |
| background: #E53935; | |
| box-shadow: 0px 1px 0px 0px #B71C1C; | |
| border-radius: 5px; | |
| border: none; | |
| outline: none; | |
| margin: 0 1em 0 0; | |
| transition: color 300ms; | |
| } | |
| button.grey { | |
| background: #A3B2BF; | |
| box-shadow: 0px 1px 0px 0px #79858F; | |
| } | |
| button.blue {/* Rectangle 3: */background: #5196CF;box-shadow: 0px 1px 0px 0px #3A678C;border-radius: 5px;} | |
| button:hover { | |
| color: rgba(255,255,255, 0.75); | |
| transition: color 300ms; | |
| } | |
| #page { margin: 4em auto 0;} |
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
| <div id="page"> | |
| <button>Добавить</button> | |
| <button class="grey"><div>Отнять</div></button> | |
| <button class="blue">Отнять</button> | |
| </div> |
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
| // alert('Hello world!'); |
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
| {"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment