Skip to content

Instantly share code, notes, and snippets.

@x-raizor
Last active October 28, 2016 17:14
Show Gist options
  • Save x-raizor/b8361ca461b5f942e7f69c8c8d3fca88 to your computer and use it in GitHub Desktop.
Save x-raizor/b8361ca461b5f942e7f69c8c8d3fca88 to your computer and use it in GitHub Desktop.
585 buttons
/**
* 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;}
<div id="page">
<button>Добавить</button>
<button class="grey"><div>Отнять</div></button>
<button class="blue">Отнять</button>
</div>
// alert('Hello world!');
{"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