New version of hello-friend-ng-clone

This commit is contained in:
Aloïs Micard 2024-12-14 18:46:34 +01:00
parent 2af22c2c10
commit 3a80032b84
609 changed files with 26159 additions and 104 deletions

View file

@ -14,7 +14,7 @@ html {
body {
margin: 0;
padding: 0;
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Roboto",
font-family: Inter, -apple-system, BlinkMacSystemFont, "Roboto",
"Segoe UI", Helvetica, Arial, sans-serif;
font-display: auto;
font-size: 1rem;
@ -191,14 +191,14 @@ figure {
em, i, strong {
// Default
color: black;
color: $light-color-variant;
@media (prefers-color-scheme: dark) {
color: white;
color: $dark-color-variant;
}
@media (prefers-color-scheme: light) {
color: black;
color: $light-color-variant;
}
[data-theme=dark] & {
@ -239,7 +239,14 @@ code {
}
pre {
background: #212020;
[data-theme=dark] & {
background-color: $dark-background-secondary;
}
[data-theme=light] & {
background-color: $light-background-secondary;
}
padding: 10px 10px 10px 20px;
border-radius: 8px;
font-size: 0.95rem;
@ -425,4 +432,4 @@ hr {
// Prism JS Additionals
.highlight {
margin: 30px auto;
}
}