sitemap update
This commit is contained in:
41
contact.html
41
contact.html
@@ -1,12 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Krzak.org - Contact</title>
|
||||
<link rel="stylesheet" href="/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container fade-in">
|
||||
<h1 class="slide-down">
|
||||
<span class="icon">
|
||||
@@ -56,43 +58,24 @@
|
||||
<div class="librecounter fade-in" style="animation-delay: 0.4s">
|
||||
<span class="librecounter-text">
|
||||
Indexed by
|
||||
<a href="https://librecounter.org/referer/show" target="_blank"
|
||||
>LibreCounter</a
|
||||
>
|
||||
<a href="https://librecounter.org/referer/show" target="_blank">LibreCounter</a>
|
||||
</span>
|
||||
<a href="https://librecounter.org/referer/show" target="_blank">
|
||||
<img
|
||||
src="https://librecounter.org/counter.svg"
|
||||
referrerpolicy="unsafe-url"
|
||||
alt="LibreCounter"
|
||||
/>
|
||||
<img src="https://librecounter.org/counter.svg" referrerpolicy="unsafe-url" alt="LibreCounter" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Back to top button -->
|
||||
<button
|
||||
id="back-to-top"
|
||||
class="back-to-top"
|
||||
aria-label="Back to top"
|
||||
title="Back to top"
|
||||
>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
>
|
||||
<button id="back-to-top" class="back-to-top" aria-label="Back to top" title="Back to top">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polyline points="18 15 12 9 6 15"></polyline>
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<script src="/refresh.js"></script>
|
||||
<script src="/animations.js"></script>
|
||||
</body>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1 +0,0 @@
|
||||
3b180a41fe913487c1c86ad79c6dc085d01a272ac2da556f4bf7379ee3a535f8
|
||||
@@ -8,9 +8,9 @@
|
||||
function reloadStylesheets() {
|
||||
// Force reload all stylesheets
|
||||
const links = document.querySelectorAll('link[rel="stylesheet"]');
|
||||
links.forEach(link => {
|
||||
const href = link.href.split('?')[0];
|
||||
link.href = href + '?t=' + new Date().getTime();
|
||||
links.forEach((link) => {
|
||||
const href = link.href.split("?")[0];
|
||||
link.href = href + "?t=" + new Date().getTime();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
20
sitemap.xml
20
sitemap.xml
@@ -1,15 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://krzak.org/</loc>
|
||||
<lastmod>2023-10-27</lastmod>
|
||||
<lastmod>2025-11-19</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://krzak.org/contact.html</loc>
|
||||
<lastmod>2023-10-27</lastmod>
|
||||
<loc>https://krzak.org/applications</loc>
|
||||
<lastmod>2025-11-19</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://krzak.org/mc.html</loc>
|
||||
<lastmod>2023-10-27</lastmod>
|
||||
<loc>https://krzak.org/contact</loc>
|
||||
<lastmod>2025-11-19</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
<url>
|
||||
<loc>https://krzak.org/mc</loc>
|
||||
<lastmod>2025-11-19</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
38
styles.css
38
styles.css
@@ -22,16 +22,12 @@ html {
|
||||
}
|
||||
|
||||
body {
|
||||
background: linear-gradient(
|
||||
var(--bg-gradient-1),
|
||||
background: linear-gradient(var(--bg-gradient-1),
|
||||
var(--bg-gradient-2),
|
||||
var(--bg-gradient-3)
|
||||
)
|
||||
no-repeat fixed;
|
||||
var(--bg-gradient-3)) no-repeat fixed;
|
||||
color: var(--text-color);
|
||||
font-family:
|
||||
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
|
||||
Arial, sans-serif;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||
"Helvetica Neue", Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 16px;
|
||||
min-height: 100vh;
|
||||
@@ -52,11 +48,9 @@ body::before {
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
transition: 0.5s ease;
|
||||
background: radial-gradient(
|
||||
circle at 20% 50%,
|
||||
background: radial-gradient(circle at 20% 50%,
|
||||
rgba(255, 255, 255, 0.08) 0%,
|
||||
transparent 50%
|
||||
);
|
||||
transparent 50%);
|
||||
}
|
||||
|
||||
.container {
|
||||
@@ -158,12 +152,10 @@ li a::before {
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
background: linear-gradient(90deg,
|
||||
transparent,
|
||||
rgba(244, 162, 97, 0.1),
|
||||
transparent
|
||||
);
|
||||
transparent);
|
||||
transition: left 0.5s ease;
|
||||
}
|
||||
|
||||
@@ -226,9 +218,7 @@ br {
|
||||
|
||||
.librecounter a {
|
||||
display: inline-block;
|
||||
transition:
|
||||
transform 0.2s ease,
|
||||
opacity 0.2s ease;
|
||||
transition: transform 0.2s ease, opacity 0.2s ease;
|
||||
flex-shrink: 0;
|
||||
line-height: 0;
|
||||
}
|
||||
@@ -289,6 +279,7 @@ br {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
@@ -299,6 +290,7 @@ br {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
@@ -310,6 +302,7 @@ br {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
@@ -487,9 +480,7 @@ br {
|
||||
font-weight: 500;
|
||||
padding: 6px 12px;
|
||||
border-radius: 12px;
|
||||
transition:
|
||||
transform 0.2s ease,
|
||||
background-color 0.2s ease;
|
||||
transition: transform 0.2s ease, background-color 0.2s ease;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@@ -500,7 +491,6 @@ br {
|
||||
|
||||
.app-card.highlighted {
|
||||
border-color: var(--glow-color);
|
||||
box-shadow:
|
||||
0 0 12px 2px var(--glow-color),
|
||||
box-shadow: 0 0 12px 2px var(--glow-color),
|
||||
inset 0 0 15px -5px var(--glow-color);
|
||||
}
|
||||
Reference in New Issue
Block a user