Update theme
All checks were successful
Build release image / build (push) Successful in 1m17s

This commit is contained in:
yehor
2025-10-07 22:58:30 +03:00
parent 756312021a
commit 727906d461
4 changed files with 23 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ const config = {
],
},
footer: {
style: 'dark',
style: 'light',
links: [
{
title: 'This site sections:',

View File

@@ -1,6 +1,6 @@
{
"name": "yevi-org",
"version": "0.3.0",
"version": "0.4.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",

View File

@@ -22,14 +22,18 @@
}
.featureSvg {
height: 100px;
width: 100px;
height: 60px;
width: 60px;
}
.featureSvg path {
fill: var(--ifm-link-color) !important;
}
.featureBlock:hover .featureSvg path {
opacity: 0.7;
}
.featureLink {
display: contents;
color: unset;
@@ -44,3 +48,7 @@
text-decoration: none;
color: unset;
}
.featureLink p {
color: var(--ifm-color-secondary-contrast-foreground);
}

View File

@@ -16,7 +16,13 @@
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
--ifm-footer-link-hover-color: #b07ab0;
--ifm-link-color: var(--ifm-color-primary-lightest)
--ifm-link-color: var(--ifm-color-primary-lightest);
--ifm-global-shadow-lw: 0 1px 2px 0 #541d5428;
}
.hero--primary {
--ifm-hero-background-color: transparent;
--ifm-hero-text-color: var(--ifm-font-color-base);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
@@ -31,3 +37,7 @@
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
--ifm-link-color: var(--ifm-color-primary-darker);
}
.hero {
border-bottom: 2px solid var(--ifm-color-primary-opaque-2);
}