This commit is contained in:
parent
bafb9687c9
commit
73745d03df
9 changed files with 163 additions and 42 deletions
|
|
@ -211,18 +211,40 @@ html[data-theme="dark"] {
|
|||
---------------------------------- */
|
||||
|
||||
html {
|
||||
background: var(--background) linear-gradient(var(--background) 50%, color-mix(in srgb, var(--accent) 25%, var(--background)) 50%);
|
||||
background-attachment: fixed;
|
||||
background: var(--background);
|
||||
background-repeat: repeat;
|
||||
background-size: auto;
|
||||
}
|
||||
|
||||
body {
|
||||
background: linear-gradient(var(--background), color-mix(in srgb, var(--accent) 25%, var(--background)));
|
||||
min-height: calc(100vh - 4rem);
|
||||
body {
|
||||
font-family: var(--font-family);
|
||||
font-size: 1.125rem;
|
||||
font-size: 1.05rem;
|
||||
text-transform: lowercase;
|
||||
margin: unset !important;
|
||||
/* idk why it does that */
|
||||
}
|
||||
|
||||
bg-gradient {
|
||||
background: linear-gradient(color-mix(in srgb, var(--accent) 10%, var(--background)), color-mix(in srgb, var(--accent) 50%, var(--background)));
|
||||
background-repeat: repeat;
|
||||
inset: 0 !important;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
position: fixed;
|
||||
z-index: -10001;
|
||||
}
|
||||
|
||||
bg-image {
|
||||
display: block;
|
||||
position: fixed;
|
||||
animation: 80s linear infinite bg-move;
|
||||
opacity: .6;
|
||||
background-repeat: repeat;
|
||||
background-size: auto;
|
||||
background-image: url(/assets/bg.png);
|
||||
inset: 0 !important;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
z-index: -10000;
|
||||
}
|
||||
|
||||
/* text formatting and config stuff */
|
||||
|
|
@ -565,7 +587,7 @@ summary {
|
|||
}
|
||||
|
||||
/* focus styling */
|
||||
:focus-visible {
|
||||
*:focus-visible {
|
||||
outline: .4rem solid var(--ui-purple) !important;
|
||||
border-radius: .2rem;
|
||||
z-index: 999999 !important;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue