Question: / * 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!