From 13539fca051d3ea08ee1d165df9725db76df5877 Mon Sep 17 00:00:00 2001 From: Matte <51192395+MatteZ02@users.noreply.github.com> Date: Mon, 15 Jan 2024 19:38:30 +0200 Subject: [PATCH] Create faq.css --- public/faq.css | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 public/faq.css diff --git a/public/faq.css b/public/faq.css new file mode 100644 index 0000000..37bfbd1 --- /dev/null +++ b/public/faq.css @@ -0,0 +1,66 @@ +@import "./master.css"; +@import "./table.css"; + +.wrapper { + width: 50%; + margin-left: 25%; + font-size: xx-large; + text-align: center; + color: var(--light-blue); +} + +.faq { + width: 60%; + margin-top: 70px; + margin-left: 20%; + background-color: var(--dark-grey); + cursor: help; +} + +a:visited { + color: rgb(255, 255, 255); + text-decoration: underline; + background-color: transparent; +} + +a:link { + color: rgb(255, 255, 255); + text-decoration: underline; + background-color: transparent; +} + +a:active { + color: rgb(255, 255, 255); + text-decoration: underline; + background-color: transparent; +} + +a:hover { + color: rgb(255, 255, 255); + background-color: transparent; + text-decoration: underline; +} + +.wrapper a:visited { + color: #7289DA; + text-decoration: underline; + background-color: transparent; +} + +.wrapper a:link { + color: #7289DA; + text-decoration: underline; + background-color: transparent; +} + +.wrapper a:active { + color: #7289DA; + text-decoration: underline; + background-color: transparent; +} + +.wrapper a:hover { + color: #7289DA; + background-color: transparent; + text-decoration: underline; +} \ No newline at end of file