|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /*
- .warning
- {
- BACKGROUND-COLOR: gold
- }
- .error
- {
- BACKGROUND-COLOR: indianred
- }
- .success
- {
- BACKGROUND-COLOR: #33cc33
- }
-
- BODY
- {
- FONT-SIZE: 10px
- FONT-FAMILY: Verdana;
- BACKGROUND-COLOR: lightskyblue
- }
- TABLE
- {
- FONT-SIZE: 10px
- }
- FORM
- {
- FONT-SIZE: 10px
- }
- SELECT
- {
- FONT-SIZE: 10px
- }
- INPUT
- {
- FONT-SIZE: 10px
- }
- */
-
-
-
- /*----------------------------------------------------------------------------------------------------------------------
- CUSTOMIZATIONS
- ----------------------------------------------------------------------------------------------------------------------*/
-
- body { padding: 20px; font-family: calibri; font-size: 14pt; color: #333; background-color: #fcfcfc; }
-
- table.Form { width: auto; }
- table.Form th,
- table.Form td { padding-right: 20px; }
- table.Form input.Submit { height: 40px; }
-
- table.Results { width: 98%; }
- table.Results th,
- table.Results td { padding: 5px; }
-
- .warning { background-color: #feedab; color: #333; }
- .error { background-color: #ffb3b3; color: darkred; }
- .success { background-color: #dbf0b8; color: darkgreen; }
|