Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
belomaxorka committed Apr 4, 2024
1 parent 5d8896d commit 4eca8c9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 13 deletions.
Binary file removed assets/favicons/favicon.png
Binary file not shown.
Binary file removed assets/favicons/favicon_cursor.png
Binary file not shown.
2 changes: 1 addition & 1 deletion assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
html, body {
height: 100%;
width: 100%;
font-family: "Fira Code Light", serif;
}

body {
font-family: "Fira Code Light", serif;
background-color: var(--main-bg-color);
color: var(--main-font-color);
}
Expand Down
13 changes: 1 addition & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@
<meta charset="UTF-8">
<meta property="og:type" content="profile">
<meta property="og:title" content="belomaxorka's space!">
<meta name="robots" content="index, follow">
<meta name="keywords" content="belomaxorka, roman kelesidis, belomaxorka homepage, belomaxorka space">
<meta name="description" content="belomaxorka's personal homepage!">
<meta name="description" content="belomaxorka's homepage!">
<title>belomaxorka's space!</title>
<link rel="icon" href="assets/favicons/favicon.png" type="image/png">
<link href="assets/modern-normalize.min.css" rel="stylesheet">
<link href="assets/styles.css" rel="stylesheet">
<script type="text/javascript" src="assets/scripts.js"></script>
Expand Down Expand Up @@ -76,14 +73,6 @@
if (Cookie.exists('whiteTheme')) {
document.body.classList.toggle('whiteTheme');
}
// Dynamic favicon
let favicon = document.querySelector('link[rel=icon]');
let favicons = ['favicon.png', 'favicon_cursor.png'];
let startIndexFavicon = 0;
setInterval(function () {
let icon = (++startIndexFavicon % favicons.length);
favicon.href = 'assets/favicons/' + favicons[icon];
}, 1000);
// Place version
document.getElementById("placeVersion").innerHTML = placeVersion();
// Calculate mine age :D
Expand Down

0 comments on commit 4eca8c9

Please sign in to comment.