font replacements
This commit is contained in:
parent
30587e0317
commit
2b56853761
9 changed files with 28 additions and 33 deletions
12
404.css
12
404.css
|
@ -1,3 +1,13 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Hack';
|
||||||
|
src: url('/Fonts/Hack/Hack-Regular.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'JetBrainsMono';
|
||||||
|
src: url('/Fonts/JetBrainsMono/JetBrainsMono-Regular.woff2');
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -8,8 +18,10 @@ body {
|
||||||
background-color: #2a2a2a;
|
background-color: #2a2a2a;
|
||||||
transition: background-color 0.3s, color 0.3s;
|
transition: background-color 0.3s, color 0.3s;
|
||||||
color: white;
|
color: white;
|
||||||
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: #4b4b4b;
|
background-color: #4b4b4b;
|
||||||
|
|
|
@ -21,7 +21,7 @@ body {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-family: 'JetBrainsMono', 'Hack', monospace;
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top {
|
.top {
|
||||||
|
|
|
@ -17,7 +17,7 @@ body {
|
||||||
background-color: #2a2a2a;
|
background-color: #2a2a2a;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
transition: background-color 0.3s, color 0.3s;
|
transition: background-color 0.3s, color 0.3s;
|
||||||
font-family: 'JetBrainsMono', 'Hack', monospace;
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
button, p {
|
button, p {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #505050;
|
background-color: #505050;
|
||||||
font-family: 'JetBrainsMono', 'Hack', monospace;
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
||||||
margin: 20px 40px 20px 40px;
|
margin: 20px 40px 20px 40px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
@ -30,8 +30,6 @@
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button class="reset" id="reset">Reset</button>
|
<button class="reset" id="reset">Reset</button>
|
||||||
|
|
||||||
<button class="button" id="font-button">Enable Funny Font</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,6 @@ const help = document.getElementById('help');
|
||||||
const container = document.getElementById('container');
|
const container = document.getElementById('container');
|
||||||
const seperator = document.getElementById('seperator');
|
const seperator = document.getElementById('seperator');
|
||||||
const counterMain = document.getElementById('key-counters');
|
const counterMain = document.getElementById('key-counters');
|
||||||
const fontButton = document.getElementById('font-button');
|
|
||||||
|
|
||||||
let isLightMode = false;
|
let isLightMode = false;
|
||||||
|
|
||||||
|
@ -41,35 +40,10 @@ document.addEventListener("keydown", (e) => {
|
||||||
logKey(e.key);
|
logKey(e.key);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
help.addEventListener('click', function () {
|
help.addEventListener('click', function () {
|
||||||
alert('Press any key to see how many times it was pressed.')
|
alert('Press any key to see how many times it was pressed.')
|
||||||
});
|
});
|
||||||
|
|
||||||
let isFunnyFont = false;
|
|
||||||
fontButton.addEventListener('click', function() {
|
|
||||||
if (!isFunnyFont) {
|
|
||||||
document.querySelectorAll("*").forEach((e) => {
|
|
||||||
e.style.fontFamily = "crueltysquad";
|
|
||||||
});
|
|
||||||
isFunnyFont = true;
|
|
||||||
console.log(isFunnyFont);
|
|
||||||
document.getElementById('font-button').innerHTML = "Disable Funny Font";
|
|
||||||
|
|
||||||
} else {
|
|
||||||
document.querySelectorAll("*").forEach((e) => {
|
|
||||||
e.style.fontFamily = "monospace";
|
|
||||||
});
|
|
||||||
isFunnyFont = false;
|
|
||||||
console.log(isFunnyFont)
|
|
||||||
document.getElementById('font-button').innerHTML = "Enable Funny Font";
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
themeToggle.addEventListener('click', function() {
|
themeToggle.addEventListener('click', function() {
|
||||||
if (!isLightMode) {
|
if (!isLightMode) {
|
||||||
document.getElementById('navBar').style.backgroundColor = "rgba(200,200,200,0.775)";
|
document.getElementById('navBar').style.backgroundColor = "rgba(200,200,200,0.775)";
|
||||||
|
|
|
@ -17,7 +17,7 @@ body {
|
||||||
transition: background-color 0.3s, color 0.3s;
|
transition: background-color 0.3s, color 0.3s;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: visible;
|
overflow-y: visible;
|
||||||
font-family: 'JetBrainsMono', 'Hack', monospace;
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
|
|
@ -20,7 +20,7 @@ body {
|
||||||
background-color: #2a2a2a;
|
background-color: #2a2a2a;
|
||||||
color: #f0f0f0;
|
color: #f0f0f0;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
font-family: 'JetBrainsMono', 'Hack', monospace;
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
|
11
style.css
11
style.css
|
@ -1,3 +1,13 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Hack';
|
||||||
|
src: url('/Fonts/Hack/Hack-Regular.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'JetBrainsMono';
|
||||||
|
src: url('/Fonts/JetBrainsMono/JetBrainsMono-Regular.woff2');
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -10,6 +20,7 @@ body {
|
||||||
background-color: #2a2a2a;
|
background-color: #2a2a2a;
|
||||||
color: #f0f0f0;
|
color: #f0f0f0;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
|
Loading…
Add table
Reference in a new issue