diff --git a/scripts/convert_md2html.py b/scripts/convert_md2html.py index c9450a5c952cc322b8b7e924a306e54f83bf0b7e..1ccde57a554f592a0a7aad0ae27831b34360754b 100755 --- a/scripts/convert_md2html.py +++ b/scripts/convert_md2html.py @@ -36,17 +36,60 @@ h1, h2, .footer { h1 { font-size: 22px; margin-bottom: 5px; - color: #FFFFFF; + color: #666666; + border-top: 0.5px solid #585858; } h2 { margin-bottom: 5px; - font-size: 14px; + font-size: 18px; color: #666666; } +table { + margin-bottom: 24px; + border-spacing: 0; + border-bottom: 2px solid #e42618; + border-top: 2px solid #d1d1d1; + max-width: 100%; + width: 100% +} +table th { + padding: 3px 10px; + background-color: white; + border-top: none; + border-left: none; + border-right: none; + border-bottom: 1px solid #d1d1d1; +} +table td { + padding: 3px 10px; + border-top: none; + border-left: none; + border-bottom: none; + border-right: none; +} +tr:nth-child(2n - 1) { + background-color: #f1f1f1; +} a { width: 500px; height: 20px; } +a:link { + text-decoration: none; + color: #004878 +} +a:visited { + text-decoration: none; + color: #004878 +} +a:hover { + text-decoration: underline; + color: #004878 +} +a:active { + text-decoration: underline; + color: #004878 +} img { padding-left: 16px; }