From 460afe843ecfecd02552dab1865b93a36f356659 Mon Sep 17 00:00:00 2001 From: Nezumi Date: Sun, 25 Jun 2023 16:28:58 +0700 Subject: [PATCH] Add code HTML/CSS - 20230625 --- css/style.css | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 31 ++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+) diff --git a/css/style.css b/css/style.css index 7275a30..6bd9b3f 100644 --- a/css/style.css +++ b/css/style.css @@ -429,3 +429,55 @@ header { border-radius: 5rem; font-size: 1rem; } + +.footer { + background-color: var(--text-dark); +} + +.footer__container { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 5rem; + color: var(--secondary-color); +} + +.footer__col h3 { + font-size: 1.5rem; + font-weight: 600; + margin-bottom: 2rem; +} + +.footer__col h3 span { + color: var(--primary-color); +} + +.footer__col p { + font-size: 0.8rem; + margin-bottom: 1rem; + cursor: pointer; + transition: 0.3s; +} + +.footer__col p:hover { + color: var(--primary-color); +} + +.footer__col p span { + font-weight: 600; +} + +.footer__col h4 { + font-size: 1rem; + font-weight: 600; + margin-bottom: 2rem; +} + +.footer__bar { + max-width: var(--max-width); + margin: auto; + padding: 0.5rem; + text-align: center; + font-size: 0.8rem; + color: var(--secondary-color); + border-top: 1px solid var(--text-light); +} diff --git a/index.html b/index.html index cc7adc6..d99529a 100644 --- a/index.html +++ b/index.html @@ -188,5 +188,36 @@ + +