fix taxonomy issues

This commit is contained in:
2025-06-06 18:05:26 -06:00
parent 15707a906e
commit 65f174e314
131 changed files with 5603 additions and 2317 deletions

File diff suppressed because one or more lines are too long

View File

@ -129,7 +129,7 @@ header h1, header h1 a {
color: #ffffff;
text-decoration: none;
padding: 0;
transition: color 0.4s;
transition: color 0.4s ease-in-out;
}
header h1:hover, header h1:focus, header h1 a:hover, header h1 a:focus {
@ -163,11 +163,12 @@ nav ul li a {
color: #ffffff;
text-decoration: none;
font-weight: 500;
transition: background 0.4s;
transition: background 0.4s ease-in-out;
}
nav ul li a:hover, nav ul li a:focus {
background: #00897b;
color: #ffffff;
}
@media (max-width: 600px) {
@ -234,28 +235,32 @@ table#taxonomy-table {
text-align: left;
}
table#taxonomy-table tr {
border-bottom: 3px solid #10131a;
}
table#taxonomy-table tr:nth-child(even) {
background: #161923;
transition: background 0.4s;
transition: background 0.4s ease-in-out;
}
table#taxonomy-table tr:nth-child(odd) {
background: #202532;
transition: background 0.4s;
transition: background 0.4s ease-in-out;
}
table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
background: #3a4054;
}
#taxonomy-table thead {
table#taxonomy-table thead {
text-align: left;
border: none;
background: #0a0c11;
border-radius: 8px 8px 0 0;
}
#taxonomy-table th {
table#taxonomy-table th {
color: #ffffff;
padding: 0.6rem 0.6rem;
text-align: left;
@ -263,22 +268,14 @@ table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
border: none;
}
#taxonomy-table td {
table#taxonomy-table td {
padding: 0.3rem 0.6rem;
text-align: left;
font-weight: 600;
border: none;
}
#taxonomy-table tr {
border-bottom: 3px solid #10131a;
}
#taxonomy-table tr:hover, #taxonomy-table tr:focus {
background: #8fc6ff;
}
#taxonomy-table a.term-link {
table#taxonomy-table a.term-link {
padding: 0.2rem 0.6rem;
margin: 0.2rem;
display: inline-block;
@ -286,14 +283,15 @@ table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
text-decoration: none;
font-weight: 500;
color: #ffffff;
transition: color 0.4s;
transition: color 0.4s ease-in-out, background 0.4s ease-in-out;
}
#taxonomy-table a.term-link:hover, #taxonomy-table a.term-link:focus {
color: #0a0c11;
table#taxonomy-table a.term-link:hover, table#taxonomy-table a.term-link:focus {
color: #0a0c11 !important;
background: #bfc9e6 !important;
}
#taxonomy-table a.taxonomy-name {
table#taxonomy-table a.taxonomy-name {
padding: 0;
margin: 0.2rem;
display: inline-block;
@ -301,10 +299,10 @@ table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
text-decoration: none;
font-weight: 500;
color: #ffffff;
transition: color 0.4s;
transition: color 0.4s ease-in-out;
}
#taxonomy-table a.taxonomy-name:hover, #taxonomy-table a.taxonomy-name:focus {
table#taxonomy-table a.taxonomy-name:hover, table#taxonomy-table a.taxonomy-name:focus {
color: #6fffd2;
}
@ -316,7 +314,7 @@ table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
text-decoration: none;
font-weight: 500;
color: #ffffff;
transition: color 0.4s;
transition: color 0.4s ease-in-out;
font-size: 1.2rem;
}
@ -325,6 +323,16 @@ table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
}
/* _text.sass */
a {
color: #3380ff;
text-decoration: underline;
transition: color 0.3s ease-in-out;
}
a:hover, a:focus {
color: #1de9b6;
}
#quick-links {
text-align: left;
}
@ -361,11 +369,26 @@ table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
color: #0a0c11;
text-decoration: none;
font-weight: 500;
transition: background 0.4s;
transition: background 0.3s ease-in-out;
}
#link-list ul li a:hover, #link-list ul li a:focus {
background: #6fffd2;
}
#publications ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 1em;
}
#publications ul li {
background: #1a1e29;
border-radius: 8px;
padding: 1em 1.5em;
}
/*# sourceMappingURL=styles.css.map */