limepot-xyz/public/css/instructions.css

24 lines
666 B
CSS
Raw Permalink Normal View History

2024-07-03 23:32:50 -06:00
.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;
2024-07-13 00:12:39 -06:00
-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);
2024-07-03 23:32:50 -06:00
}
.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));
}