Files
LinuxMirrors/docs/stylesheets/extra.css

46 lines
928 B
CSS
Raw Normal View History

2023-05-03 22:50:12 +08:00
:root {
--md-code-font: 'SF Mono';
2023-06-06 13:53:36 +08:00
--md-footer-bg-color--dark: #1c1e21;
--md-primary-fg-color--light: hsl(0, 0%, 100%, 0.33);
2023-05-03 22:50:12 +08:00
}
2023-06-06 13:53:36 +08:00
[data-md-color-scheme='slate'] {
--md-default-bg-color: #1b1b1d;
--md-code-bg-color: #161618;
2023-05-09 20:09:38 +08:00
}
[data-md-color-scheme='slate'] .md-header {
2023-06-06 13:53:36 +08:00
background-color: hsla(240, 4%,11%, 0.33);
2023-05-09 20:09:38 +08:00
}
[data-md-color-scheme='slate'] .md-tabs {
2023-06-06 13:53:36 +08:00
background-color: hsla(240, 4%,11%, 0.33);
border-bottom: 0.05rem solid #5c5c5c42;
2023-05-09 20:09:38 +08:00
}
2023-05-03 22:50:12 +08:00
@font-face {
font-family: 'SF Mono';
src: url('./fonts/SF-Mono-Regular.otf');
}
2023-05-09 20:09:38 +08:00
@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);
}
2023-06-06 13:53:36 +08:00
.md-tabs__link {
font-size: .8rem !important;
font-weight: 600 !important;
}
2023-06-24 11:06:30 +08:00
.md-typeset {
font-size: 16px;
}