diff --git a/app/flatpages/help/ranks_permissions.md b/app/flatpages/help/ranks_permissions.md index 33ea5cd4..79dc7d21 100644 --- a/app/flatpages/help/ranks_permissions.md +++ b/app/flatpages/help/ranks_permissions.md @@ -10,7 +10,7 @@ title: Ranks and Permissions ## Breakdown -
Rank | diff --git a/app/scss/components.scss b/app/scss/components.scss index 8382d7fb..26102a09 100644 --- a/app/scss/components.scss +++ b/app/scss/components.scss @@ -151,7 +151,7 @@ a:hover { border: 1px solid #393; } -table { +table.fancyTable { font-family: "Arial Black", Gadget, sans-serif; border: 2px solid #000000; background-color: #4A4A4A; @@ -159,33 +159,33 @@ table { text-align: center; border-collapse: collapse; } -table td, table th { +table.fancyTable td, table.fancyTable th { border: 1px solid #4A4A4A; padding: 3px 2px; } -table tbody td { +table.fancyTable tbody td { font-size: 13px; color: #E6E6E6; } -table tr:nth-child(even) { +table.fancyTable tr:nth-child(even) { background: #888888; } -table thead { +table.fancyTable thead { background: #000000; border-bottom: 3px solid #000000; } -table thead th { +table.fancyTable thead th { font-size: 15px; font-weight: bold; color: #E6E6E6; text-align: center; border-left: 2px solid #4A4A4A; } -table thead th:first-child { +table.fancyTable thead th:first-child { border-left: none; } -table tfoot { +table.fancyTable tfoot { font-size: 12px; font-weight: bold; color: #E6E6E6; @@ -195,7 +195,7 @@ table tfoot { background: linear-gradient(to bottom, #404040 0%, #191919 66%, #000000 100%); border-top: 1px solid #4A4A4A; } -table tfoot td { +table.fancyTable tfoot td { font-size: 12px; }
---|