From ca5a54056f5dfa6343ea579b9816c09aae975e04 Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Fri, 18 Sep 2020 01:34:48 +0200 Subject: [PATCH] move quiz spotlight style to quiz stylesheet --- content/stylesheets/main.css | 30 ------------------------------ content/stylesheets/quiz.css | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 30 deletions(-) diff --git a/content/stylesheets/main.css b/content/stylesheets/main.css index 0e4f6c9..4ea8a7a 100644 --- a/content/stylesheets/main.css +++ b/content/stylesheets/main.css @@ -59,36 +59,6 @@ main { padding: 4rem; } -.quizSpotlight { - margin: 2rem 0; - font-size: 2rem; - font-family: Arial, Helvetica, sans-serif; - font-weight: bold; -} - -.quizSpotlight:hover { - cursor: pointer; -} - -.quizSpotlight a { - position: relative; - text-decoration: none; - background: var(--white); - color: var(--darkblue); - border: 0.4rem solid var(--darkblue); - padding: 1rem 2rem; - margin-right: 3rem; -} -.quizSpotlight a { - padding: 0.5rem 1rem; - font-size: 1rem; -} -.quizSpotlight a:hover { - background-color: var(--lightblue); - border: 0.4rem solid var(--lightblue); - color: var(--white); -} - details { margin-bottom: 1rem; } diff --git a/content/stylesheets/quiz.css b/content/stylesheets/quiz.css index 23b8c5a..8e2447a 100644 --- a/content/stylesheets/quiz.css +++ b/content/stylesheets/quiz.css @@ -1,3 +1,5 @@ + + .main_content { margin-top: 2rem; } @@ -98,3 +100,33 @@ h3::first-letter { font-size: 1rem !important; border-width: 4px !important; } + +.quizSpotlight { + margin: 2rem 0; + font-size: 2rem; + font-family: Arial, Helvetica, sans-serif; + font-weight: bold; +} + +.quizSpotlight:hover { + cursor: pointer; +} + +.quizSpotlight a { + position: relative; + text-decoration: none; + background: var(--white); + color: var(--darkblue); + border: 0.4rem solid var(--darkblue); + padding: 1rem 2rem; + margin-right: 3rem; +} +.quizSpotlight a { + padding: 0.5rem 1rem; + font-size: 1rem; +} +.quizSpotlight a:hover { + background-color: var(--lightblue); + border: 0.4rem solid var(--lightblue); + color: var(--white); +}