Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/web.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/screen.css8
1 files changed, 6 insertions, 2 deletions
diff --git a/inc/screen.css b/inc/screen.css
index 1e40269..ff2b465 100644
--- a/inc/screen.css
+++ b/inc/screen.css
@@ -1569,8 +1569,12 @@ body > footer p:last-child {
/* OPENSSL WEBSITE ADDITIONS */
/* newsflash table */
-tr:first-child { font-weight: bold; border-bottom: 1px solid black; }
-tr:nth-child(even) { background-color: #D9f0ff; }
+table > tr:first-child, table > thead, table > :not(thead + tbody) > tr:first-child {
+ font-weight: bold; border-bottom: 1px solid black;
+}
+table > tr:nth-child(even), table > thead + tbody > tr:nth-child(odd), table > :not(thead + tbody) > tr:nth-child(even) {
+ background-color: #D9f0ff;
+}
td.d { float: left; width: 20%; }
td.t { float: right; width: 80%; }