From 3b435b23093a8085b759a71abb4ca3f5a9c5a8ce Mon Sep 17 00:00:00 2001 From: higor Date: Tue, 9 May 2023 15:04:18 +0000 Subject: [PATCH] =?UTF-8?q?Inclus=C3=A3o=20do=20CSS=20na=20p=C3=A1gina=20E?= =?UTF-8?q?xtin=C3=A7=C3=B5es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- natureza/extincoes/extincoes.html | 3 ++- natureza/extincoes/style.css | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 natureza/extincoes/style.css diff --git a/natureza/extincoes/extincoes.html b/natureza/extincoes/extincoes.html index cea06bd..2c4fd2b 100644 --- a/natureza/extincoes/extincoes.html +++ b/natureza/extincoes/extincoes.html @@ -2,9 +2,10 @@ EXTINCOES + - +
diff --git a/natureza/extincoes/style.css b/natureza/extincoes/style.css new file mode 100644 index 0000000..c3cf116 --- /dev/null +++ b/natureza/extincoes/style.css @@ -0,0 +1,22 @@ +table { + border-collapse: collapse; + width: 100%; +} + +th, td { + padding: 15px; + text-align: left; +} + +thead { + background-color: #04AA6D; + color: white; +} + +tbody tr:nth-child(odd) { + background-color: #f2f2f2; +} + +tbody tr:hover { + background: #01cf00; +}
Nome