Files
clarkeis.com/site/introwebdev/universe.css
Tyler Clarke 691974d96b
All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 23s
week 2
2026-01-14 11:51:46 -05:00

70 lines
912 B
CSS

body {
max-width: 800px;
margin-left: auto;
margin-right: auto;
background-color: #0A0A30;
}
h1,h2 {
color: #EEEEEE;
}
p,li {
color: #C0C0C0;
}
a, b {
color: white;
}
a:hover {
color: rgb(255, 255, 0);
}
* {
font-family: sans-serif;
}
code {
font-family: monospace;
background-color: #f3f3f3;
padding: 2px;
border-radius: 3px;
color: #444;
}
code.hljs span {
font-family: monospace !important;
}
span.under {
display: inline-block;
width: 20ch;
border-bottom: 2px solid black;
}
span.goal {
padding: 3px;
padding-right: 25px;
background-color: #CC8811;
font-weight: bold;
border-radius: 10px;
color: white;
display: inline-block;
font-size: 0.75em;
}
span.goal::before {
content: "[goal]";
font-family: monospace;
font-size: 10px;
color: black;
vertical-align: top;
}
blockquote {
border-left: 3px solid grey;
padding-left: 2em;
margin-left: 0px;
}