Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/ * These are CSS Variables. If you want to change the color scheme, try a different hue between 0 and 2 7 0 .

/* These are CSS Variables. If you want to change the color scheme, try a different hue between 0 and 270. The colors in the CSS will automatically update. */
:root {
--hue: 20;
--choice-hue: 80;
}
body {
color: hsl(var(--hue),85%,10%);
display: flex;
flex-direction: column;
align-items: center;
font-family: Georgia, serif;
}
h1,
h2{
color: hsl(var(--hue),85%,40%);
font-family: Futura, Helvetica, sans-serif;
margin-top: 4rem;
text-transform: uppercase;
}
button {
background-color: hsl(var(--hue),80%,50%);
border: none;
box-shadow: 03px 6px rgba(0,0,0,0.15),02px 4px rgba(0,0,0,0.12);
color: white;
cursor: pointer;
display: inline-block;
font-family: Futura, Helvetica, sans-serif;
font-size: 1em;
font-weight: 700;
padding: 20px;
text-transform: uppercase;
}
button:hover {
background-color: hsl(var(--hue),80%,53%);
}
ul {
margin-top: 0;
padding: 0;
}
ul li {
background-color: hsl(var(--hue),80%,90%);
list-style: none;
margin: 8px;
padding: 12px 20px;
text-align: center;
}
.choice {
background-color: hsl(var(--choice-hue),80%,90%);
color: hsl(var(--choice-hue),80%,20%);
position: relative;
}
.choice:before {
content: "";
position: absolute;
left: -17px;
top: 3px;
font-size: 32px;
}
a {
color: hsl(var(--hue),80%,48%);
border-bottom: 1px solid var(--pink-10);
box-shadow: hsl(var(--hue),80%,90%)0-2px 00 inset;
text-decoration: none;
}
a:hover {
background-color: hsl(var(--hue),80%,92%);
color: hsl(var(--hue),80%,50%);
text-decoration: none;
}
.highlighted{
background-color: hsl(var(--hue ,),80%,53%);
color: hsl(var(--hue ,),80%,53%);
text-decoration: none;
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Query Formulation And Administration Using Oracle And PostgreSQL

Authors: Michael Mannino

8th Edition

1948426951, 978-1948426954

More Books

Students also viewed these Databases questions

Question

In an Excel Pivot Table, how is a Fact/Measure Column repeated?

Answered: 1 week ago