add a nice font for the sint theme
This commit is contained in:
parent
31cd09d94f
commit
da4e844946
3 changed files with 16 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -67,3 +67,5 @@ app/config.py
|
|||
*.db
|
||||
|
||||
tmp/
|
||||
|
||||
.tern-port
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
--dGray5:#2C2C2E;
|
||||
--dGray6:#1C1C1E;
|
||||
--dBlue:#0A84FF;
|
||||
--FontFamily:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
--FontSize:13px;
|
||||
}
|
||||
html {
|
||||
height: 100%;
|
||||
|
@ -18,6 +20,8 @@ body {
|
|||
padding-top: 70px;
|
||||
|
||||
height: 100%;
|
||||
font-family: var(--FontFamily);
|
||||
font-size: var(--FontSize);
|
||||
}
|
||||
.background{
|
||||
position: absolute;
|
||||
|
@ -217,4 +221,4 @@ a.divLink {
|
|||
}
|
||||
.enter_darkmode>a {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,6 +62,8 @@
|
|||
root.style.setProperty('--dGray1', "#666666");
|
||||
root.style.setProperty('--dGray0', "#444444"); //Light color
|
||||
root.style.setProperty('--dBlue', "#0A84FF");
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif"');
|
||||
root.style.setProperty('--FontSize', '13px');
|
||||
document.querySelector('.background').style.backgroundImage = 'none';
|
||||
}
|
||||
|
||||
|
@ -75,6 +77,8 @@
|
|||
root.style.setProperty('--dGray1', "#8E8E93");
|
||||
root.style.setProperty('--dGray0', "#E0E0E8"); //Light color
|
||||
root.style.setProperty('--dBlue', "#0A84FF");
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif"');
|
||||
root.style.setProperty('--FontSize', '13px');
|
||||
document.querySelector('.background').style.backgroundImage = 'none';
|
||||
}
|
||||
|
||||
|
@ -88,6 +92,8 @@
|
|||
root.style.setProperty('--dGray1', "#F28705");
|
||||
root.style.setProperty('--dGray0', "#FFEB65"); //Light color
|
||||
root.style.setProperty('--dBlue', "#D91604");
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif"');
|
||||
root.style.setProperty('--FontSize', '13px');
|
||||
document.querySelector('.background').backgroundImage = "url('/static/images/Halloween.jpeg')";
|
||||
}
|
||||
|
||||
|
@ -101,8 +107,10 @@
|
|||
root.style.setProperty('--dGray1', "#F2EF05");
|
||||
root.style.setProperty('--dGray0', "#F2EB80"); //Light color
|
||||
root.style.setProperty('--dBlue', "#35F546");
|
||||
root.style.setProperty('--FontFamily', "cursive");
|
||||
root.style.setProperty('--FontSize', "20px");
|
||||
document.body.style.background = "#000000";
|
||||
document.querySelector('.background').style.backgroundImage = "url('/static/images/Sinterklaas.jpg')";
|
||||
}
|
||||
init();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue