diff --git a/index.html b/index.html index 44e6f140..6a8c65b3 100644 --- a/index.html +++ b/index.html @@ -25,6 +25,9 @@

WhyDRS Database

+ +

* Empty cells indicate missing data. You can help us improve by contributing missing information or emailing us at hi@whydrs.org.

+
@@ -60,5 +63,10 @@

WhyDRS Database

+ + + diff --git a/src/web/css/styles.css b/src/web/css/styles.css index efd6bc77..62aecc4b 100644 --- a/src/web/css/styles.css +++ b/src/web/css/styles.css @@ -17,11 +17,23 @@ h1 { /* Set the heading text color */ color: #134F9B; /* Add space below the heading */ - margin-bottom: 30px; + margin-bottom: 10px; /* Set the font size */ font-size: 2em; } +/* Styles for informational text under the heading */ +.info-text { + /* Center the text */ + text-align: center; + /* Set the font size */ + font-size: 1em; + /* Set the text color */ + color: #3E3E3E; + /* Add margin below the text */ + margin-bottom: 20px; +} + /* Styles for the loading overlay */ #loading-overlay { /* Position the overlay to cover the entire viewport */ @@ -318,3 +330,11 @@ div.dt-button-collection .dt-button[aria-pressed="true"]:hover { /* Ensure text color remains white */ color: #FFFFFF !important; } + +/* Styles for the footer message */ +.footer { + text-align: center; + font-size: 1em; + margin-top: 30px; + color: #3E3E3E; +}