24 lines
No EOL
666 B
CSS
24 lines
No EOL
666 B
CSS
.instructions {
|
|
margin-bottom: 2rem;
|
|
border: 1px solid rgba(var(--accent-light), 25%);
|
|
background: linear-gradient(rgba(var(--accent-dark), 66%),
|
|
rgba(var(--accent-dark), 33%));
|
|
padding: 1.5rem;
|
|
border-radius: 8px;
|
|
-webkit-box-shadow: 0 0 20px var(--other-accent);
|
|
-moz-box-shadow: 0 0 20px var(--other-accent);
|
|
box-shadow: 0 0 20px var(--other-accent);
|
|
}
|
|
|
|
.instructions code {
|
|
font-size: 0.8em;
|
|
font-weight: bold;
|
|
background: rgba(var(--accent-light), 12%);
|
|
color: rgb(var(--accent-light));
|
|
border-radius: 4px;
|
|
padding: 0.3em 0.4em;
|
|
}
|
|
|
|
.instructions strong {
|
|
color: rgb(var(--accent-light));
|
|
} |