Initial commit

This commit is contained in:
JP Stringham
2026-02-20 20:10:03 -05:00
commit 5cf4bafc88
6 changed files with 276 additions and 0 deletions

57
default.css Normal file
View File

@@ -0,0 +1,57 @@
body {
margin: 0;
padding: 0;
background-color: #2c2423;
font: 18px 'Jost';
font-weight: 300;
color: #ffeecf;
}
h1 {
font-family: 'Bodoni Moda';
font-style: italic;
text-align: center;
}
.freq-entry {
margin: 0 100px;
border-bottom: 1px solid #ffeecf;
}
.freq-entry span {
display: none;
}
.cat1,
.cat2,
.cat3 {
display: none;
padding: 10px;
margin: 10px;
border-radius: 5px;
font-weight: 500;
letter-spacing: .1em;
}
/* div.freq-entry:hover .cat1,
div.freq-entry:hover .cat2,
div.freq-entry:hover .cat3 {
display: block;
position: sticky;
top: 20px;
} */
.cat1 {
background-color: #e73636;
color: #2c2423;
}
.cat2 {
background-color: #a09cb0;
color: #e73636;
}
.cat3 {
background-color: #28666e;
color: #e73636;
}