Created
August 24, 2014 12:59
-
-
Save kyontan/c586444f40e98afd71bf to your computer and use it in GitHub Desktop.
CSS3 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
<!DOCTYPE html> | |
<html> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="buttons.css"> | |
<style> | |
section { | |
margin-bottom: 1em; | |
} | |
section h1 { | |
border-bottom: 1px solid #1a1a1a; | |
} | |
</style> | |
<h1>CSS3 Buttons</h1> | |
Referenced from <a href="http://alexwolfe.github.io/Buttons/">http://alexwolfe.github.io/Buttons/</a> | |
<section> | |
<h1>.button.flat.jumbo</h1> | |
<a href="#" class="button flat jumbo">press me</a> | |
<a href="#" class="button flat primary jumbo">.primary</a> | |
<a href="#" class="button flat action jumbo">.action</a> | |
<a href="#" class="button flat highlight jumbo">.highlight</a> | |
<a href="#" class="button flat caution jumbo">.caution</a> | |
</section> | |
<section> | |
<h1>.button.flat</h1> | |
<a href="#" class="button flat">press me</a> | |
<a href="#" class="button flat primary">.primary</a> | |
<a href="#" class="button flat action">.action</a> | |
<a href="#" class="button flat highlight">.highlight</a> | |
<a href="#" class="button flat caution">.caution</a> | |
</section> | |
<section> | |
<h1>.button.flat.tiny </h1> | |
<a href="#" class="button flat tiny ">press me</a> | |
<a href="#" class="button flat primary tiny ">.primary</a> | |
<a href="#" class="button flat action tiny ">.action</a> | |
<a href="#" class="button flat highlight tiny ">.highlight</a> | |
<a href="#" class="button flat caution tiny ">.caution</a> | |
</section> | |
<section> | |
<h1>.button.flat.disabled</h1> | |
<a href="#" class="button flat disabled">press me</a> | |
<a href="#" class="button flat primary disabled">.primary</a> | |
<a href="#" class="button flat action disabled">.action</a> | |
<a href="#" class="button flat highlight disabled">.highlight</a> | |
<a href="#" class="button flat caution disabled">.caution</a> | |
</section> | |
<section> | |
<h1>.button.border.large</h1> | |
<a href="#" class="button border large">press me</a> | |
<a href="#" class="button border primary button rounded large">.primary</a> | |
<a href="#" class="button border action button pill large">.action</a> | |
<a href="#" class="button border highlight button circle large">.highlight</a> | |
<a href="#" class="button border caution large">.caution</a> | |
</section> | |
<section> | |
<h1>.button.border</h1> | |
<a href="#" class="button border">press me</a> | |
<a href="#" class="button border primary button rounded">.primary</a> | |
<a href="#" class="button border action button pill">.action</a> | |
<a href="#" class="button border highlight button circle">.highlight</a> | |
<a href="#" class="button border caution">.caution</a> | |
</section> | |
<section> | |
<h1>.button.border.small</h1> | |
<a href="#" class="button border small">press me</a> | |
<a href="#" class="button border primary button rounded small">.primary</a> | |
<a href="#" class="button border action button pill small">.action</a> | |
<a href="#" class="button border highlight button circle small">.highlight</a> | |
<a href="#" class="button border caution small">.caution</a> | |
</section> | |
<section> | |
<h1>.button.border.disabled</h1> | |
<a href="#" class="button border disabled">press me</a> | |
<a href="#" class="button border primary button rounded disabled">.primary</a> | |
<a href="#" class="button border action button pill disabled">.action</a> | |
<a href="#" class="button border highlight button circle disabled">.highlight</a> | |
</section> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment