Files
LinuxMirrors/docs/stylesheets/extra.css
SuperManito 98cc357688 优化
2023-05-09 20:09:38 +08:00

36 lines
695 B
CSS

:root {
--md-code-font: 'SF Mono';
}
[data-md-color-scheme='default'] {
--md-primary-fg-color: hsl(0, 0%, 100%, 0.33);
}
[data-md-color-scheme='slate'] .md-header {
background-color: hsla(232, 15%, 21%, 0.33);
}
[data-md-color-scheme='slate'] .md-tabs {
background-color: hsla(232, 15%, 21%, 0.33);
border-bottom: 0.05rem solid #68686842;
}
@font-face {
font-family: 'SF Mono';
src: url('./fonts/SF-Mono-Regular.otf');
}
@keyframes heart {
0%,
40%,
80%,
100% {
transform: scale(1);
}
20%,
60% {
transform: scale(1.15);
}
}
.heart {
animation: heart 1000ms infinite;
}
.md-header {
backdrop-filter: blur(8px);
}