From d62632e709fb587ba68bac1a9fdbcb87c35ce2e1 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Thu, 25 Aug 2022 11:30:18 +0200 Subject: [PATCH] CSS optimisations --- css/style.css | 42 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/css/style.css b/css/style.css index 88665a5..16f4011 100644 --- a/css/style.css +++ b/css/style.css @@ -12,10 +12,6 @@ background-color: var(--dark-1); } -.bg-dark-2 { - background-color: var(--dark-2); -} - .bg-dark-3 { background-color: var(--dark-3); } @@ -112,17 +108,22 @@ a:hover { padding: 4rem; } +.divider { + height: 0.2rem !important; + max-width: 3.25rem; + margin: 1.5rem auto; + background-color: var(--accent); + opacity: 1; +} + .badge:hover { background-color: white; color: black; } -.modal-content { - background-color: var(--dark-2); -} + /* Header Section */ - @media (min-width: 992px) { header.masthead { height: 100vh; @@ -152,11 +153,13 @@ a:hover { align-content: center; } } +/* ------------ */ /* About Section */ .about { background-color: var(--dark-2); } +/* ------------ */ /* Skills Section */ .skills { @@ -167,6 +170,7 @@ a:hover { color: var(--accent); background-color: var(--accent); } +/* ------------ */ /* Projects Section */ .projects { @@ -214,6 +218,11 @@ a:hover { justify-content: center; } +.modal-content { + background-color: var(--dark-2); +} +/* ------------ */ + /* Footer Section */ .footer { background-color: var(--dark-1); @@ -233,19 +242,7 @@ a:hover { .social{ margin-bottom: 2rem; } -/* ------------------------------------- */ - -.text-white-75 { - color: rgba(255, 255, 255, 0.75) !important; -} - -.divider { - height: 0.2rem !important; - max-width: 3.25rem; - margin: 1.5rem auto; - background-color: var(--accent); - opacity: 1; -} +/* ------------ */ /* Scrollbar */ ::-webkit-scrollbar { @@ -257,4 +254,5 @@ a:hover { } ::-webkit-scrollbar-track{ background: transparent; -} \ No newline at end of file +} +/* ------------ */ \ No newline at end of file