delete redundant notes folder,

fixed links with spaces,
fixed various style issues
This commit is contained in:
2024-10-07 22:03:04 +00:00
parent 2a8f919cc0
commit e8c3a40444
57 changed files with 50 additions and 59 deletions

View File

@@ -12,22 +12,19 @@
.overlay-container .overlay-mask {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
inset: 0;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0);
color: rgba(0, 0, 0, 0);
background-color: rgb(0 0 0 / 0%);
color: rgb(0 0 0 / 0%);
transition-property: color, background-color;
transition-duration: 0.25s, 0.25s;
transition-timing-function: ease-in-out;
}
.overlay-container:hover .overlay-mask {
background-color: rgba(0, 0, 0, 0.7);
color: rgba(255, 255, 255, 1);
background-color: rgb(0 0 0 / 70%);
color: rgb(255 255 255 / 100%);
}
.overlay-container .overlay-content {

View File

@@ -29,8 +29,7 @@ h1 a {
nav {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
flex-flow: row nowrap;
column-gap: 4ch;
justify-content: center;
}