Added basic styling.
This commit is contained in:
parent
29d903d070
commit
90cd3b7a46
3 changed files with 81 additions and 0 deletions
28
css/03-button.css
Normal file
28
css/03-button.css
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
button {
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
/*border: thin solid #333333;
|
||||
background: radial-gradient(#888888, #666666);
|
||||
box-shadow: 1px 2px 1px #333333;*/
|
||||
|
||||
border-radius: 5px;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
color: #FFFFFF;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
|
||||
background: radial-gradient(#00EE00, #00CC00);
|
||||
box-shadow: 1px 2px 1px #006600;
|
||||
border: thin solid #006600;
|
||||
}
|
||||
/*
|
||||
button.green {
|
||||
}
|
||||
|
||||
button.red {
|
||||
background: radial-gradient(#EE0000, #CC0000);
|
||||
box-shadow: 1px 2px 1px #660000;
|
||||
border: thin solid #660000;
|
||||
}
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue