Files
yadunut.dev/site/static/css/main.css
2024-11-28 18:28:03 -05:00

79 lines
1.2 KiB
CSS

:root {
--font-family: "Comic Mono";
--line-height: 1.2rem;
--font-weight-normal: 500;
--font-weight-medium: 600;
--font-weight-bold: 800;
font-family: var(--font-family), monospace;
font-weight: var(--font-weight-normal);
font-size: 16px;
}
* {
box-sizing: border-box;
}
body {
width: 100%;
padding: 2ch;
line-height: var(--line-height);
max-width: 100ch;
background-color: #ff00ff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: calc(var(--line-height) * 2) 0 var(--line-height) 0;
font-weight: var(--font-weight-bold);
}
h1 {
font-size: 2rem;
margin-bottom: calc(var(--line-height) * 2);
text-transform: uppercase;
}
h2 {
font-size: 1rem;
text-transform: uppercase;
}
#grid {
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: linear-gradient(to right, #ccc 1px, transparent 1px),
linear-gradient(to bottom, #ccc 1px, transparent 1px);
background-size: 1ch var(--line-height);
/* Adjust grid size */
background-position: top left;
margin: 0;
}
p {
margin-bottom: var(--line-height);
}
li {
margin: 0;
padding: 0;
}
ul {
padding: 0 0 0 2ch;
margin: 0 0 var(--line-height);
list-style-type: square;
}
ul li ul {
margin-bottom: 0;
}