0628 更新

This commit is contained in:
OLDREDSTONE
2025-06-28 16:48:49 +08:00
parent 5dab36288b
commit c7b6c35ddc
17 changed files with 88 additions and 28 deletions
+25 -2
View File
@@ -471,7 +471,7 @@ main.hidden {
}
.sidebar-toggle {
background: linear-gradient(to right, transparent 50px, #0ff8);
background: linear-gradient(to right, #0dd 50px, #0ff8);
border: 0;
outline: none;
padding: 10px;
@@ -967,7 +967,7 @@ section.cover blockquote>p>a {
}
.markdown-section code {
border-radius: 2px;
border-radius: 4px;
margin: 0 2px;
padding: 3px 5px;
white-space: pre-wrap
@@ -1227,4 +1227,27 @@ article.markdown-section:has(.intro)>.notice[onclick] {
&:hover {
transition: all 0.5s;
}
}
div.medium-zoom-overlay{
opacity: 0.5 !important;
}
del{
text-decoration: none;
background-color: #5C5D67;
color: #5C5D67;
transition: background-color 0.1s, color 0.1s;
border-radius: 4px;
cursor: pointer;
&:hover {
background-color: #7B7C84;
color: #7B7C84;
transition: background-color 0.1s, color 0.1s;
}
&:active {
background-color: inherit;
color: inherit;
transition: background-color 0.1s, color 0.1s;
}
}