mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-04-15 21:28:32 +02:00
78 lines
1.3 KiB
CSS
78 lines
1.3 KiB
CSS
.breadcrumbs {
|
|
font-size: 0.9rem;
|
|
margin-bottom: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.breadcrumbs a {
|
|
color: #3498db;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.breadcrumbs a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.term-list {
|
|
display: block;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.term-list__item {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.term-list__link {
|
|
color: inherit; /* inherit theme text color */
|
|
text-decoration: none;
|
|
}
|
|
|
|
.term-list__link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.posts-list {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
/* RSS Subscribe button next to brand */
|
|
.rss-subscribe__link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.2rem;
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 3px;
|
|
border: 1px solid #f26522;
|
|
background-color: #f26522;
|
|
color: #fff !important;
|
|
font-size: 0.7rem;
|
|
font-weight: 200;
|
|
text-decoration: none !important;
|
|
line-height: 1.4;
|
|
transition:
|
|
background-color 0.2s ease,
|
|
border-color 0.2s ease,
|
|
color 0.2s ease;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.rss-subscribe__link:hover {
|
|
background-color: transparent;
|
|
border-color: #f26522;
|
|
color: #f26522 !important;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.rss-subscribe__link {
|
|
background-color: transparent;
|
|
border-color: #fff;
|
|
color: #fff !important;
|
|
}
|
|
|
|
.rss-subscribe__link:hover {
|
|
background-color: #fff;
|
|
border-color: #fff;
|
|
color: #171414 !important;
|
|
}
|
|
}
|