57 lines
830 B
CSS
57 lines
830 B
CSS
|
|
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;
|
||
|
|
}
|