diff options
Diffstat (limited to 'app/scss')
-rw-r--r-- | app/scss/components.scss | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app/scss/components.scss b/app/scss/components.scss index e6f33d1..30d0d48 100644 --- a/app/scss/components.scss +++ b/app/scss/components.scss @@ -150,3 +150,51 @@ a:hover { background: #161; border: 1px solid #393; } + +table { + font-family: "Arial Black", Gadget, sans-serif; + border: 2px solid #000000; + background-color: #4A4A4A; + width: 100%; + text-align: center; + border-collapse: collapse; +} +table td, table th { + border: 1px solid #4A4A4A; + padding: 3px 2px; +} +table tbody td { + font-size: 13px; + color: #E6E6E6; +} +table tr:nth-child(even) { + background: #888888; +} +table thead { + background: #000000; + border-bottom: 3px solid #000000; +} +table thead th { + font-size: 15px; + font-weight: bold; + color: #E6E6E6; + text-align: center; + border-left: 2px solid #4A4A4A; +} +table thead th:first-child { + border-left: none; +} + +table tfoot { + font-size: 12px; + font-weight: bold; + color: #E6E6E6; + background: #000000; + background: -moz-linear-gradient(top, #404040 0%, #191919 66%, #000000 100%); + background: -webkit-linear-gradient(top, #404040 0%, #191919 66%, #000000 100%); + background: linear-gradient(to bottom, #404040 0%, #191919 66%, #000000 100%); + border-top: 1px solid #4A4A4A; +} +table tfoot td { + font-size: 12px; +} |