Improve darkmode button contrast, fix fonts

This commit is contained in:
Tanner Collin 2020-09-04 00:46:03 +00:00
parent 809806c8cd
commit 3dc90a272d
2 changed files with 14 additions and 8 deletions

View File

@ -1,20 +1,20 @@
@font-face { @font-face {
font-family: 'Apparatus SIL'; font-family: 'Apparatus SIL';
src: url('AppSILR.ttf') format('truetype'); src: url('/theme/fonts/AppSILR.ttf') format('truetype');
font-display: swap; font-display: swap;
} }
@font-face { @font-face {
font-family: 'Apparatus SIL'; font-family: 'Apparatus SIL';
font-style: italic; font-style: italic;
src: url('AppSILI.ttf') format('truetype'); src: url('/theme/fonts/AppSILI.ttf') format('truetype');
font-display: swap; font-display: swap;
} }
@font-face { @font-face {
font-family: 'Apparatus SIL'; font-family: 'Apparatus SIL';
font-weight: bold; font-weight: bold;
src: url('AppSILB.ttf') format('truetype'); src: url('/theme/fonts/AppSILB.ttf') format('truetype');
font-display: swap; font-display: swap;
} }
@ -22,7 +22,7 @@
font-family: 'Apparatus SIL'; font-family: 'Apparatus SIL';
font-weight: bold; font-weight: bold;
font-style: italic; font-style: italic;
src: url('AppSILBI.ttf') format('truetype'); src: url('/theme/fonts/AppSILBI.ttf') format('truetype');
font-display: swap; font-display: swap;
} }
@ -30,7 +30,7 @@
font-family: 'Lato'; font-family: 'Lato';
font-style: italic; font-style: italic;
font-weight: 400; font-weight: 400;
src: local('Lato Italic'), local('Lato-Italic'), url('Lato-Italic.ttf') format('truetype'); src: local('Lato Italic'), local('Lato-Italic'), url('/theme/fonts/Lato-Italic.ttf') format('truetype');
font-display: swap; font-display: swap;
} }
@ -38,7 +38,7 @@
font-family: 'Lato'; font-family: 'Lato';
font-style: italic; font-style: italic;
font-weight: 700; font-weight: 700;
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url('Lato-BoldItalic.ttf') format('truetype'); src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url('/theme/fonts/Lato-BoldItalic.ttf') format('truetype');
font-display: swap; font-display: swap;
} }
@ -46,7 +46,7 @@
font-family: 'Lato'; font-family: 'Lato';
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url('Lato-Regular.ttf') format('truetype'); src: local('Lato Regular'), local('Lato-Regular'), url('/theme/fonts/Lato-Regular.ttf') format('truetype');
font-display: swap; font-display: swap;
} }
@ -54,6 +54,6 @@
font-family: 'Lato'; font-family: 'Lato';
font-style: normal; font-style: normal;
font-weight: 700; font-weight: 700;
src: local('Lato Bold'), local('Lato-Bold'), url('Lato-Bold.ttf') format('truetype'); src: local('Lato Bold'), local('Lato-Bold'), url('/theme/fonts/Lato-Bold.ttf') format('truetype');
font-display: swap; font-display: swap;
} }

View File

@ -165,6 +165,12 @@ pre {
.darkmode-toggle { .darkmode-toggle {
z-index: 500; z-index: 500;
background: black !important;
}
.darkmode-toggle--white {
z-index: 500;
background: grey !important;
} }
.darkmode--activated .content img { .darkmode--activated .content img {