Skip to content

Commit

Permalink
more css tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
velddev committed Mar 26, 2024
1 parent 798fa0f commit 5258e0e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);

--background: #fff;
--ui: 0,0,0;
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
Expand All @@ -31,6 +32,7 @@
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);

--background: #070510;
--ui: 255,255,255;
}

html {
Expand All @@ -43,7 +45,7 @@ body {
}

.navbar.navbar--fixed-top {
background: var(--background);
background: linear-gradient(0deg, transparent 0%, var(--background) 100%);
box-shadow: none;
}

Expand All @@ -69,6 +71,14 @@ body {
display: none;
}

.theme-doc-sidebar-container {
border-right: 1px solid rgba(var(--ui), 0.1) !important;
}

.table-of-contents__left-border {
border-left: 1px solid rgba(var(--ui), 0.1);
}

a {
color: unset;
}
Expand Down

0 comments on commit 5258e0e

Please sign in to comment.