| | html, body { |
---|
| | margin: 0; |
---|
| | background: #202020; |
---|
| | font-family: Arial, Helvetica, sans-serif; |
---|
| | color: #EEEEEE; |
---|
| | } |
---|
| | |
---|
| | input[type=text], input[type=password] { |
---|
| | /* font-family: Arial, Helvetica, sans-serif; */ |
---|
| | background-color: #EEEEEE; |
---|
| | color: #202020; |
---|
| | } |
---|
| | |
---|
| | a, input[type=button], input[type=submit] { |
---|
| | color: #EEEEEE; |
---|
| | background: #4512ff; |
---|
| | border: 0; |
---|
| | border-radius: 3px; |
---|
| | padding: 5px; |
---|
| | font-size: 1em; |
---|
| | } |
---|
| | a:hover, input[type=button]:hover, input[type=submit]:hover { |
---|
| | background: rgb(51, 15, 182); |
---|
| | cursor: pointer; |
---|
| | } |
---|
| | a:active, input[type=button]:active, input[type=submit]:active { |
---|
| | background: rgb(37, 12, 131); |
---|
| | } |
---|
| | |
|