From b92bc961f6cd6e152f564ffd92bb68963414697c Mon Sep 17 00:00:00 2001 From: Jake Bonham Date: Wed, 22 May 2019 10:18:43 -0700 Subject: [PATCH] Removed fontsize and updated color def --- assets/css/devportal.css | 12 ------------ assets/vendor/bootstrap.css | 7 +++++++ tool/xrpl.scss | 10 ++++++++++ 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/assets/css/devportal.css b/assets/css/devportal.css index ffc402776a..eb6a03f2ce 100644 --- a/assets/css/devportal.css +++ b/assets/css/devportal.css @@ -5,12 +5,6 @@ th, td { vertical-align: text-top; padding: 12px; } -th { - border-bottom: 1px solid black; -} -tr { - border-bottom: 1px solid #ccc; -} td:nth-child(1) { font-weight: bold; @@ -269,10 +263,6 @@ body { margin: 0; } -.content td { - line-height: 1.65; -} - /* "Source" links float right */ .content a[title="Source"] { float: right; @@ -282,13 +272,11 @@ body { .content table { clear: right; margin-bottom: 48px; - font-size: 0.95rem; } .content table code { word-break: normal; white-space: nowrap; - font-size: 1rem } .content .children-display li a { diff --git a/assets/vendor/bootstrap.css b/assets/vendor/bootstrap.css index 4e528f850c..3ae8cff44c 100644 --- a/assets/vendor/bootstrap.css +++ b/assets/vendor/bootstrap.css @@ -7226,6 +7226,13 @@ h3 a:hover, .header-link:hover { color: #1B1818; } +/* Tables ------------------------------- */ +th { + border-bottom: 1px solid #1B1818; } + +tr { + border-bottom: 1px solid #EBE8E7; } + /* Left/right nav color scheme ------------------------------- */ aside a { color: #676463; diff --git a/tool/xrpl.scss b/tool/xrpl.scss index bc582035ad..2a6ec1600f 100644 --- a/tool/xrpl.scss +++ b/tool/xrpl.scss @@ -299,6 +299,16 @@ h3 a:hover, color: $black; } +/* Tables ------------------------------- */ + +th { + border-bottom: 1px solid $black; +} +tr { + border-bottom: 1px solid $gray-200; +} + + /* Left/right nav color scheme ------------------------------- */ aside a { color: $gray-600;