Added basic styling.

This commit is contained in:
Lewin Probst 2020-02-03 16:09:41 +01:00
parent 29d903d070
commit 90cd3b7a46
3 changed files with 81 additions and 0 deletions

28
css/03-button.css Normal file
View 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;
}
*/