This commit is contained in:
2026-07-08 17:41:38 +08:00
parent e992d8cbe7
commit ad51ced86c
7 changed files with 467 additions and 62 deletions
+4 -3
View File
@@ -1,4 +1,5 @@
baseURL = 'https://swe-iss.rth1.xyz/' baseURL = 'https://swe-iss.rth1.xyz/'
relativeURLs = true
locale = 'zh-CN' locale = 'zh-CN'
title = 'SNOWARE' title = 'SNOWARE'
copyright = '© 2026 S.A. | SNOWARE' copyright = '© 2026 S.A. | SNOWARE'
@@ -10,13 +11,13 @@ copyright = '© 2026 S.A. | SNOWARE'
navLinks = [ navLinks = [
{ name = '资源下载', url = '/res/' }, { name = '资源下载', url = '/res/' },
{ name = '我的作品', url = '/softwares/' }, { name = '我的作品', url = '/softwares/' },
{ name = 'B站空间', url = 'https://bilibili.com/1875249243', external = true }, { name = 'B站空间', url = 'https://bilibili.com/1875249243', external = true }
{ name = 'XAGuarder', url = '/xaguarder/' }
] ]
services = [ services = [
{ name = 'Gitea', url = 'http://103.217.186.98:3000/', icon = 'git', desc = '代码仓库' }, { name = 'Gitea', url = 'http://103.217.186.98:3000/', icon = 'git', desc = '代码仓库' },
{ name = 'Cloudreve', url = 'http://103.217.186.98:5212/home', icon = 'cloud', desc = '云存储' }, { name = 'Cloudreve', url = 'http://103.217.186.98:5212/home', icon = 'cloud', desc = '云存储' },
{ name = 'Minecraft Server', url = '', icon = 'game', desc = 'QQ 758522192 注明来意' } { name = 'Minecraft Server', url = '', icon = 'game', desc = 'QQ 758522192 注明来意' },
{ name = '学习与开发团队', url = '', icon = 'team', desc = '加入我们 QQ 758522192' }
] ]
[markup.goldmark.renderer] [markup.goldmark.renderer]
+1
View File
@@ -11,6 +11,7 @@
{{ block "extra_head" . }}{{ end }} {{ block "extra_head" . }}{{ end }}
</head> </head>
<body class="{{ if .IsHome }}home{{ else }}page{{ end }}"> <body class="{{ if .IsHome }}home{{ else }}page{{ end }}">
<script src="/js/nature-bg.js"></script>
{{ partial "nav.html" . }} {{ partial "nav.html" . }}
<main id="main-content"> <main id="main-content">
{{ block "body" . }}{{ end }} {{ block "body" . }}{{ end }}
+9 -1
View File
@@ -4,7 +4,13 @@
<img src="{{ .Site.Params.logo }}" alt="SNOWARE Logo" class="home-logo" width="160" height="160"> <img src="{{ .Site.Params.logo }}" alt="SNOWARE Logo" class="home-logo" width="160" height="160">
</div> </div>
<h1 class="home-title">SNOWARE</h1> <h1 class="home-title">SNOWARE</h1>
<p class="home-subtitle">冷静而温馨,简约而不简单。</p> <div class="home-poem">
<p class="poem-line fade-1">群星璀璨而流星划过天际,曳尾长明而星空黯淡无光,我们如何在瞬间探寻永恒的答案?</p>
<p class="poem-line fade-2">苦旅漫漫,雾霭蒙蒙,文牒拭作灰烬,家书遥遥无期。</p>
<p class="poem-line fade-3">雾开雾散,云卷云舒,潮起潮息,光阴流转而你我不凡之辈,即亡没砂石亦必熠熠生辉</p>
<p class="poem-line fade-4">曲折的进步似为唯一的答案,我心永恒,流光跃过风雨,终会与你同行。</p>
<p class="poem-sig">S.A. 2026 7.5 @EDT</p>
</div>
<nav class="home-nav"> <nav class="home-nav">
{{ range .Site.Params.navLinks }} {{ range .Site.Params.navLinks }}
<a href="{{ .url }}" class="home-btn{{ if .external }} external{{ end }}" {{ if .external }}target="_blank" rel="noopener"{{ end }}> <a href="{{ .url }}" class="home-btn{{ if .external }} external{{ end }}" {{ if .external }}target="_blank" rel="noopener"{{ end }}>
@@ -30,6 +36,8 @@
<svg viewBox="0 0 24 24"><path d="M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"/></svg> <svg viewBox="0 0 24 24"><path d="M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"/></svg>
{{ else if eq .icon "game" }} {{ else if eq .icon "game" }}
<svg viewBox="0 0 24 24"><rect x="2" y="6" width="20" height="12" rx="2"/><line x1="6" y1="12" x2="10" y2="12"/><line x1="8" y1="10" x2="8" y2="14"/><circle cx="16" cy="10" r="1" fill="currentColor" stroke="none"/><circle cx="19" cy="12" r="1" fill="currentColor" stroke="none"/></svg> <svg viewBox="0 0 24 24"><rect x="2" y="6" width="20" height="12" rx="2"/><line x1="6" y1="12" x2="10" y2="12"/><line x1="8" y1="10" x2="8" y2="14"/><circle cx="16" cy="10" r="1" fill="currentColor" stroke="none"/><circle cx="19" cy="12" r="1" fill="currentColor" stroke="none"/></svg>
{{ else if eq .icon "team" }}
<svg viewBox="0 0 24 24"><path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87"/><path d="M16 3.13a4 4 0 010 7.75"/></svg>
{{ end }} {{ end }}
</div> </div>
<h3>{{ .name }}</h3> <h3>{{ .name }}</h3>
+17
View File
@@ -8,6 +8,23 @@
{{ range .Site.Params.navLinks }} {{ range .Site.Params.navLinks }}
<a href="{{ .url }}" {{ if .external }}target="_blank" rel="noopener"{{ end }}>{{ .name }}</a> <a href="{{ .url }}" {{ if .external }}target="_blank" rel="noopener"{{ end }}>{{ .name }}</a>
{{ end }} {{ end }}
<button class="theme-toggle" id="theme-toggle" title="切换主题">
<svg class="theme-icon-warm" viewBox="0 0 24 24" width="18" height="18"><circle cx="12" cy="12" r="5" fill="currentColor" stroke="none"/><line x1="12" y1="1" x2="12" y2="3" stroke="currentColor" stroke-width="2"/><line x1="12" y1="21" x2="12" y2="23" stroke="currentColor" stroke-width="2"/><line x1="4.22" y1="4.22" x2="5.64" y2="5.64" stroke="currentColor" stroke-width="2"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78" stroke="currentColor" stroke-width="2"/><line x1="1" y1="12" x2="3" y2="12" stroke="currentColor" stroke-width="2"/><line x1="21" y1="12" x2="23" y2="12" stroke="currentColor" stroke-width="2"/><line x1="4.22" y1="19.78" x2="5.64" y2="18.36" stroke="currentColor" stroke-width="2"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22" stroke="currentColor" stroke-width="2"/></svg>
<svg class="theme-icon-cyan" viewBox="0 0 24 24" width="18" height="18"><path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" fill="none" stroke="currentColor" stroke-width="2"/></svg>
</button>
</nav> </nav>
</div> </div>
</header> </header>
<script>
(function(){
var t = localStorage.getItem('snoware-theme') || 'warm';
document.documentElement.setAttribute('data-theme', t);
var btn = document.getElementById('theme-toggle');
if(btn) btn.addEventListener('click', function(){
var cur = document.documentElement.getAttribute('data-theme');
var next = cur === 'warm' ? 'cyan' : 'warm';
document.documentElement.setAttribute('data-theme', next);
localStorage.setItem('snoware-theme', next);
});
})();
</script>
+147 -28
View File
@@ -1,9 +1,9 @@
/* ===== SNOWARE — Minimal Warm Theme ===== */ /* ===== SNOWARE — Dual Theme ===== */
:root { :root {
--bg: #1c1b19; --bg: #1a1710;
--bg-soft: #262422; --bg-soft: #242016;
--bg-card: #2e2c2a; --bg-card: #2c2818;
--accent: #c8a87a; --accent: #c8a87a;
--accent-warm: #e8c9a0; --accent-warm: #e8c9a0;
--accent-cool: #8a9a7e; --accent-cool: #8a9a7e;
@@ -16,6 +16,49 @@
--font: 'Segoe UI', system-ui, -apple-system, sans-serif; --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
--mono: 'Cascadia Code', 'Fira Code', monospace; --mono: 'Cascadia Code', 'Fira Code', monospace;
--transition: 0.25s ease; --transition: 0.25s ease;
--nav-bg: rgba(26,23,16,0.92);
--logo-border: rgba(200,168,122,0.3);
--logo-bg: rgba(44,40,24,0.5);
--btn-hover-bg: rgba(200,168,122,0.08);
--service-hover-bg: rgba(200,168,122,0.06);
--code-bg: rgba(255,255,255,0.05);
--code-inline-bg: rgba(255,255,255,0.06);
--warning-bg: rgba(180,60,50,0.06);
--warning-border: rgba(180,60,50,0.25);
--warning-h: #b84040;
--noise-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
--btn-accent-bg: rgba(200,168,122,0.1);
--btn-accent-hover-bg: rgba(200,168,122,0.18);
--subject-inline-bg: rgba(255,255,255,0.06);
}
/* Macaron Cyan theme (dark) */
[data-theme="cyan"] {
--bg: #101820;
--bg-soft: #161e2c;
--bg-card: #1c2636;
--accent: #5cb8e4;
--accent-warm: #81d4fa;
--accent-cool: #7ec8e3;
--text: #c8dce8;
--text-muted: #8aa4b8;
--text-dim: #5a7a90;
--border: rgba(92,184,228,0.12);
--border-hover: rgba(92,184,228,0.28);
--nav-bg: rgba(16,24,32,0.92);
--logo-border: rgba(92,184,228,0.35);
--logo-bg: rgba(28,38,54,0.5);
--btn-hover-bg: rgba(92,184,228,0.08);
--service-hover-bg: rgba(92,184,228,0.06);
--code-bg: rgba(255,255,255,0.04);
--code-inline-bg: rgba(255,255,255,0.06);
--warning-bg: rgba(180,60,50,0.06);
--warning-border: rgba(180,60,50,0.25);
--warning-h: #c04040;
--noise-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
--btn-accent-bg: rgba(92,184,228,0.1);
--btn-accent-hover-bg: rgba(92,184,228,0.18);
--subject-inline-bg: rgba(255,255,255,0.06);
} }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
@@ -23,36 +66,56 @@ html { scroll-behavior: smooth; }
body { body {
font-family: var(--font); font-family: var(--font);
background: var(--bg); background: transparent;
color: var(--text); color: var(--text);
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
line-height: 1.7; line-height: 1.7;
/* Warm linen texture via subtle noise */ transition: color var(--transition);
background-image:
url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 256px 256px;
} }
.container { max-width: 920px; margin: 0 auto; padding: 0 24px; } .container { max-width: 920px; margin: 0 auto; padding: 0 24px; }
/* ===== Theme Toggle ===== */
.theme-toggle {
background: none; border: none; cursor: pointer;
padding: 4px; color: var(--text-muted);
transition: color var(--transition);
display: flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { color: var(--accent); }
[data-theme="warm"] .theme-icon-warm,
[data-theme="cyan"] .theme-icon-cyan { display: block; }
[data-theme="warm"] .theme-icon-cyan,
[data-theme="cyan"] .theme-icon-warm { display: none; }
/* Logo color shift for cyan theme — sepia+hue-rotate for precise warm→cool conversion */
[data-theme="cyan"] .nav-logo,
[data-theme="cyan"] .home-logo,
[data-theme="cyan"] .xag-logo,
[data-theme="cyan"] .warning-logo,
[data-theme="cyan"] .error-logo {
filter: sepia(0.6) hue-rotate(190deg) saturate(1.5) brightness(1.08);
}
/* ===== Navigation ===== */ /* ===== Navigation ===== */
.site-nav { .site-nav {
position: sticky; top: 0; z-index: 100; position: sticky; top: 0; z-index: 100;
background: rgba(28,27,25,0.92); background: var(--nav-bg);
backdrop-filter: blur(14px); backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);
padding: 10px 0; padding: 10px 0;
transition: background-color var(--transition), border-color var(--transition);
} }
.nav-inner { display: flex; align-items: center; justify-content: space-between; } .nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { .nav-brand {
display: flex; align-items: center; gap: 10px; display: flex; align-items: center; gap: 10px;
color: var(--text); font-weight: 700; font-size: 17px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 17px; text-decoration: none;
transition: color var(--transition);
} }
.nav-brand img { border-radius: 50%; } .nav-brand img { border-radius: 50%; }
.nav-links { display: flex; gap: 22px; } .nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { .nav-links a {
color: var(--text-muted); text-decoration: none; font-size: 13.5px; color: var(--text-muted); text-decoration: none; font-size: 13.5px;
transition: color var(--transition); position: relative; transition: color var(--transition); position: relative;
@@ -77,17 +140,68 @@ body {
.home-hero .home-logo { .home-hero .home-logo {
width: 160px; height: 160px; width: 160px; height: 160px;
border-radius: 50%; border-radius: 50%;
border: 2px solid rgba(200,168,122,0.3); border: 2px solid var(--logo-border);
background: rgba(46,44,42,0.5); background: var(--logo-bg);
backdrop-filter: blur(8px); backdrop-filter: blur(8px);
transition: border-color var(--transition), background-color var(--transition);
} }
.home-title { .home-title {
font-size: 44px; font-weight: 700; letter-spacing: 6px; font-size: 44px; font-weight: 700; letter-spacing: 6px;
color: var(--accent-warm); color: var(--accent-warm);
margin: 0; margin: 0;
transition: color var(--transition);
} }
.home-subtitle { /* Poem section */
color: var(--text-muted); font-size: 15px; text-align: center; max-width: 420px; .home-poem {
text-align: center;
max-width: 560px;
margin: 0 auto;
position: relative;
}
.poem-line {
color: var(--text-muted);
font-size: 14.5px;
line-height: 2;
opacity: 0;
animation: poemFadeIn 1.2s ease forwards;
transition: color var(--transition);
}
.poem-line.fade-1 { animation-delay: 0.3s; color: var(--accent-warm); font-size: 15px; }
.poem-line.fade-2 { animation-delay: 0.9s; }
.poem-line.fade-3 { animation-delay: 1.5s; color: var(--accent-warm); font-size: 15px; }
.poem-line.fade-4 { animation-delay: 2.1s; }
.poem-sig {
color: var(--text-dim);
font-size: 12px;
margin-top: 14px;
opacity: 0;
animation: poemFadeIn 1s ease 2.7s forwards;
font-family: var(--mono);
letter-spacing: 1px;
}
@keyframes poemFadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.home-poem::before {
content: '';
display: block;
width: 60px;
height: 1px;
background: linear-gradient(to right, transparent, var(--accent), transparent);
margin: 0 auto 20px auto;
opacity: 0;
animation: poemFadeIn 0.8s ease 0.1s forwards;
}
.home-poem::after {
content: '';
display: block;
width: 60px;
height: 1px;
background: linear-gradient(to right, transparent, var(--accent), transparent);
margin: 20px auto 0 auto;
opacity: 0;
animation: poemFadeIn 0.8s ease 3.2s forwards;
} }
/* Homepage nav buttons */ /* Homepage nav buttons */
@@ -100,7 +214,7 @@ body {
} }
.home-btn:hover { .home-btn:hover {
border-color: var(--border-hover); border-color: var(--border-hover);
background: rgba(200,168,122,0.08); background: var(--btn-hover-bg);
transform: translateY(-1px); transform: translateY(-1px);
} }
@@ -112,10 +226,11 @@ body {
.home-services h2 { .home-services h2 {
font-size: 15px; color: var(--text-dim); font-weight: 500; font-size: 15px; color: var(--text-dim); font-weight: 500;
letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
transition: color var(--transition);
} }
.services-grid { .services-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
max-width: 600px; margin: 0 auto; max-width: 720px; margin: 0 auto;
} }
.service-card { .service-card {
padding: 20px 16px; border-radius: var(--radius); padding: 20px 16px; border-radius: var(--radius);
@@ -126,7 +241,7 @@ body {
} }
.service-card:hover { .service-card:hover {
border-color: var(--border-hover); border-color: var(--border-hover);
background: rgba(200,168,122,0.06); background: var(--service-hover-bg);
} }
.service-icon { .service-icon {
display: flex; justify-content: center; margin-bottom: 10px; display: flex; justify-content: center; margin-bottom: 10px;
@@ -144,6 +259,7 @@ body {
.page-hero h1 { .page-hero h1 {
font-size: 36px; font-weight: 700; font-size: 36px; font-weight: 700;
color: var(--accent-warm); margin-bottom: 6px; color: var(--accent-warm); margin-bottom: 6px;
transition: color var(--transition);
} }
.page-hero .subtitle { color: var(--text-muted); font-size: 16px; } .page-hero .subtitle { color: var(--text-muted); font-size: 16px; }
@@ -160,10 +276,10 @@ body {
.btn-primary { background: var(--accent); color: var(--bg); border-color: var(--accent); } .btn-primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-warm); } .btn-primary:hover { background: var(--accent-warm); }
.btn-accent { .btn-accent {
background: rgba(200,168,122,0.1); color: var(--accent); background: var(--btn-accent-bg); color: var(--accent);
border-color: var(--border-hover); border-color: var(--border-hover);
} }
.btn-accent:hover { background: rgba(200,168,122,0.18); } .btn-accent:hover { background: var(--btn-accent-hover-bg); }
.btn-outline { background: transparent; color: var(--text-muted); border-color: var(--border); } .btn-outline { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text-muted); color: var(--text); } .btn-outline:hover { border-color: var(--text-muted); color: var(--text); }
.btn-lg { padding: 13px 30px; font-size: 16px; } .btn-lg { padding: 13px 30px; font-size: 16px; }
@@ -218,7 +334,7 @@ body {
.subject-card h3 { font-size: 17px; } .subject-card h3 { font-size: 17px; }
.subject-pw { font-size: 12.5px; color: var(--text-muted); } .subject-pw { font-size: 12.5px; color: var(--text-muted); }
.subject-pw code { .subject-pw code {
background: rgba(255,255,255,0.06); padding: 2px 7px; border-radius: 4px; background: var(--subject-inline-bg); padding: 2px 7px; border-radius: 4px;
color: var(--color); font-family: var(--mono); color: var(--color); font-family: var(--mono);
} }
@@ -263,13 +379,13 @@ body {
} }
.sw-section h2 { color: var(--accent-warm); margin-bottom: 10px; font-size: 20px; } .sw-section h2 { color: var(--accent-warm); margin-bottom: 10px; font-size: 20px; }
.sw-code { .sw-code {
background: rgba(255,255,255,0.05); padding: 10px 16px; border-radius: 6px; background: var(--code-bg); padding: 10px 16px; border-radius: 6px;
font-family: var(--mono); font-size: 13px; overflow-x: auto; color: var(--text); font-family: var(--mono); font-size: 13px; overflow-x: auto; color: var(--text);
} }
.usage-list { display: flex; flex-direction: column; gap: 10px; } .usage-list { display: flex; flex-direction: column; gap: 10px; }
.usage-item { display: flex; gap: 10px; align-items: center; } .usage-item { display: flex; gap: 10px; align-items: center; }
.usage-item code { .usage-item code {
background: rgba(255,255,255,0.05); padding: 5px 10px; border-radius: 5px; background: var(--code-inline-bg); padding: 5px 10px; border-radius: 5px;
font-family: var(--mono); font-size: 12.5px; white-space: nowrap; font-family: var(--mono); font-size: 12.5px; white-space: nowrap;
} }
.usage-item span { color: var(--text-muted); font-size: 13px; } .usage-item span { color: var(--text-muted); font-size: 13px; }
@@ -297,11 +413,12 @@ body {
} }
.warning-content { .warning-content {
text-align: center; padding: 50px; text-align: center; padding: 50px;
background: rgba(180,60,50,0.06); border: 2px solid rgba(180,60,50,0.25); background: var(--warning-bg); border: 2px solid var(--warning-border);
border-radius: var(--radius); max-width: 480px; border-radius: var(--radius); max-width: 480px;
transition: background-color var(--transition), border-color var(--transition);
} }
.warning-logo { border-radius: 50%; margin-bottom: 18px; } .warning-logo { border-radius: 50%; margin-bottom: 18px; }
.warning-content h1 { color: #b84040; font-size: 26px; margin-bottom: 14px; } .warning-content h1 { color: var(--warning-h); font-size: 26px; margin-bottom: 14px; }
.warning-text { font-size: 16px; color: var(--text); margin-bottom: 6px; } .warning-text { font-size: 16px; color: var(--text); margin-bottom: 6px; }
.warning-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 22px; } .warning-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 22px; }
@@ -318,6 +435,7 @@ body {
text-align: center; padding: 22px; text-align: center; padding: 22px;
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
color: var(--text-dim); font-size: 12.5px; margin-top: auto; color: var(--text-dim); font-size: 12.5px; margin-top: auto;
transition: border-color var(--transition), color var(--transition);
} }
/* ===== Responsive ===== */ /* ===== Responsive ===== */
@@ -326,13 +444,14 @@ body {
.nav-links { gap: 14px; } .nav-links { gap: 14px; }
.home-title { font-size: 30px; letter-spacing: 4px; } .home-title { font-size: 30px; letter-spacing: 4px; }
.home-hero .home-logo { width: 120px; height: 120px; } .home-hero .home-logo { width: 120px; height: 120px; }
.services-grid { grid-template-columns: 1fr; max-width: 320px; } .services-grid { grid-template-columns: 1fr 1fr; max-width: 360px; }
.page-hero h1 { font-size: 26px; } .page-hero h1 { font-size: 26px; }
.project-grid { grid-template-columns: 1fr; } .project-grid { grid-template-columns: 1fr; }
.filelist-grid { grid-template-columns: repeat(2, 1fr); } .filelist-grid { grid-template-columns: repeat(2, 1fr); }
.res-features, .sw-features { grid-template-columns: 1fr 1fr; } .res-features, .sw-features { grid-template-columns: 1fr 1fr; }
} }
@media (max-width: 480px) { @media (max-width: 480px) {
.services-grid { grid-template-columns: 1fr; max-width: 280px; }
.filelist-grid { grid-template-columns: 1fr; } .filelist-grid { grid-template-columns: 1fr; }
.res-features, .sw-features { grid-template-columns: 1fr; } .res-features, .sw-features { grid-template-columns: 1fr; }
.sw-links { flex-direction: column; align-items: center; } .sw-links { flex-direction: column; align-items: center; }
+216
View File
@@ -0,0 +1,216 @@
// SNOWARE — Dynamic Nature Background (Stars + Mountains + Meteors)
(function(){
var canvas = document.createElement('canvas');
canvas.id = 'nature-bg';
canvas.style.cssText = 'position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;pointer-events:none;';
document.body.prepend(canvas);
var ctx = canvas.getContext('2d');
var stars = [], shootingStars = [];
var W, H;
var lastShooting = 0;
function resize(){
W = canvas.width = window.innerWidth;
H = canvas.height = window.innerHeight;
initStars();
}
function initStars(){
stars = [];
var count = Math.floor(W * H / 2800);
for(var i = 0; i < count; i++){
stars.push({
x: Math.random() * W,
y: Math.random() * H * 0.55,
r: Math.random() * 1.5 + 0.3,
a: Math.random() * 0.6 + 0.2,
speed: Math.random() * 0.008 + 0.002,
phase: Math.random() * Math.PI * 2
});
}
}
function addShootingStar(){
shootingStars.push({
x: Math.random() * W * 0.6 + W * 0.1,
y: Math.random() * H * 0.25,
len: Math.random() * 120 + 60,
speed: Math.random() * 6 + 4,
angle: Math.random() * 0.25 + 0.15,
a: 1,
life: 0,
sparks: []
});
}
function getTheme(){
return document.documentElement.getAttribute('data-theme') || 'warm';
}
function getColors(){
var t = getTheme();
if(t === 'cyan'){
return {
sky1: '#0a1525', sky2: '#101828', sky3: '#182436',
star: '#c8dff0', starBright: '#81d4fa',
mtn1: '#0e1826', mtn2: '#162230', mtn3: '#1e2e40',
mtnLine: 'rgba(92,184,228,0.12)', mtnSnow: 'rgba(200,220,240,0.08)',
shoot: '#81d4fa', shootGlow: 'rgba(129,212,250,0.2)'
};
}
return {
sky1: '#0a0c08', sky2: '#141210', sky3: '#1a1710',
star: '#d4c0a0', starBright: '#e8c9a0',
mtn1: '#0e0c08', mtn2: '#181610', mtn3: '#242014',
mtnLine: 'rgba(200,168,122,0.08)', mtnSnow: 'rgba(232,201,160,0.06)',
shoot: '#e8c9a0', shootGlow: 'rgba(232,201,160,0.15)'
};
}
function drawSky(c){
var g = ctx.createLinearGradient(0, 0, 0, H);
g.addColorStop(0, c.sky1);
g.addColorStop(0.35, c.sky2);
g.addColorStop(1, c.sky3);
ctx.fillStyle = g;
ctx.fillRect(0, 0, W, H);
}
function drawStars(c, t){
for(var i = 0; i < stars.length; i++){
var s = stars[i];
var twinkle = Math.sin(t * s.speed + s.phase) * 0.3 + 0.7;
var alpha = s.a * twinkle;
ctx.beginPath();
ctx.arc(s.x, s.y, s.r, 0, Math.PI * 2);
ctx.fillStyle = s.r > 1.2 ? c.starBright : c.star;
ctx.globalAlpha = alpha;
ctx.fill();
}
ctx.globalAlpha = 1;
}
function drawShootingStars(c, t){
// More frequent meteors: every 3-7 seconds
if(t - lastShooting > 3000 + Math.random() * 4000){
addShootingStar();
lastShooting = t;
}
for(var i = shootingStars.length - 1; i >= 0; i--){
var s = shootingStars[i];
s.life += 1;
s.x += s.speed;
s.y += s.speed * s.angle;
s.a -= 0.008;
if(s.a <= 0){ shootingStars.splice(i, 1); continue; }
// Head glow
ctx.save();
ctx.globalAlpha = s.a * 0.6;
var headGlow = ctx.createRadialGradient(s.x, s.y, 0, s.x, s.y, 8);
headGlow.addColorStop(0, c.shoot);
headGlow.addColorStop(1, 'transparent');
ctx.fillStyle = headGlow;
ctx.beginPath();
ctx.arc(s.x, s.y, 8, 0, Math.PI * 2);
ctx.fill();
// Main trail
ctx.globalAlpha = s.a;
ctx.strokeStyle = c.shoot;
ctx.lineWidth = 1.8;
ctx.lineCap = 'round';
ctx.beginPath();
ctx.moveTo(s.x, s.y);
var tailX = s.x - s.len * Math.cos(s.angle);
var tailY = s.y - s.len * Math.sin(s.angle);
ctx.lineTo(tailX, tailY);
ctx.stroke();
// Wide glow trail
ctx.globalAlpha = s.a * 0.25;
ctx.lineWidth = 6;
ctx.strokeStyle = c.shoot;
ctx.beginPath();
ctx.moveTo(s.x, s.y);
ctx.lineTo(s.x - s.len * 0.5 * Math.cos(s.angle), s.y - s.len * 0.5 * Math.sin(s.angle));
ctx.stroke();
// Secondary thin glow trail
ctx.globalAlpha = s.a * 0.12;
ctx.lineWidth = 12;
ctx.strokeStyle = c.shootGlow;
ctx.beginPath();
ctx.moveTo(s.x, s.y);
ctx.lineTo(s.x - s.len * 0.3 * Math.cos(s.angle), s.y - s.len * 0.3 * Math.sin(s.angle));
ctx.stroke();
ctx.restore();
}
}
function drawMountainLayer(yBase, height, color, lineColor, snowPatches, seed){
ctx.beginPath();
ctx.moveTo(0, yBase);
var step = 3;
for(var x = 0; x <= W; x += step){
var h = 0;
h += Math.sin(x * 0.003 + seed) * height * 0.5;
h += Math.sin(x * 0.007 + seed * 2) * height * 0.3;
h += Math.sin(x * 0.015 + seed * 3) * height * 0.15;
ctx.lineTo(x, yBase - Math.abs(h));
}
ctx.lineTo(W, H);
ctx.lineTo(0, H);
ctx.closePath();
ctx.fillStyle = color;
ctx.fill();
// subtle outline
ctx.strokeStyle = lineColor;
ctx.lineWidth = 1;
ctx.stroke();
// snow patches on peaks
if(snowPatches > 0){
ctx.globalAlpha = snowPatches;
ctx.fillStyle = lineColor;
for(var x = 0; x <= W; x += step){
var h = 0;
h += Math.sin(x * 0.003 + seed) * height * 0.5;
h += Math.sin(x * 0.007 + seed * 2) * height * 0.3;
h += Math.sin(x * 0.015 + seed * 3) * height * 0.15;
var peakY = yBase - Math.abs(h);
if(Math.abs(h) > height * 0.6){
ctx.beginPath();
ctx.arc(x, peakY + 2, 2 + Math.random(), 0, Math.PI * 2);
ctx.fill();
}
}
ctx.globalAlpha = 1;
}
}
function drawMountains(c){
// far layer
drawMountainLayer(H * 0.65, H * 0.18, c.mtn1, c.mtnLine, c.mtnSnow, 1.2);
// mid layer
drawMountainLayer(H * 0.72, H * 0.14, c.mtn2, c.mtnLine, 0, 3.7);
// near layer
drawMountainLayer(H * 0.82, H * 0.10, c.mtn3, c.mtnLine, 0, 7.1);
}
var startTime = performance.now();
function render(){
var t = (performance.now() - startTime) / 1000;
var c = getColors();
ctx.clearRect(0, 0, W, H);
drawSky(c);
drawStars(c, t);
drawShootingStars(c, performance.now());
drawMountains(c);
requestAnimationFrame(render);
}
resize();
window.addEventListener('resize', resize);
render();
})();
+73 -30
View File
@@ -1,35 +1,78 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<defs> <defs>
<radialGradient id="bg-grad" cx="50%" cy="50%" r="50%"> <linearGradient id="bgGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#3d3530"/> <stop offset="0%" stop-color="#2c2818"/>
<stop offset="100%" stop-color="#262220"/> <stop offset="100%" stop-color="#1a1710"/>
</radialGradient> </linearGradient>
<filter id="soft-glow"> <linearGradient id="snowGrad" x1="0" y1="0" x2="0" y2="1">
<feGaussianBlur stdDeviation="3" result="blur"/> <stop offset="0%" stop-color="#e8c9a0"/>
<feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge> <stop offset="100%" stop-color="#a08850"/>
</filter> </linearGradient>
</defs> </defs>
<!-- Outer ring --> <!-- Circle background -->
<circle cx="100" cy="100" r="96" fill="none" stroke="#c8b89a" stroke-width="1.2" opacity="0.35"/> <circle cx="100" cy="100" r="96" fill="url(#bgGrad)"/>
<!-- Main circle --> <circle cx="100" cy="100" r="96" fill="none" stroke="#c8a87a" stroke-opacity="0.3" stroke-width="1.5"/>
<circle cx="100" cy="100" r="90" fill="url(#bg-grad)"/>
<!-- Snowflake: 6 arms --> <!-- Central hexagon -->
<g stroke="#d4c8b0" stroke-width="2.2" fill="none" stroke-linecap="round" filter="url(#soft-glow)"> <polygon points="100,84 113.86,92 113.86,108 100,116 86.14,108 86.14,92"
<line x1="100" y1="42" x2="100" y2="158"/> fill="none" stroke="url(#snowGrad)" stroke-width="2.5" stroke-linejoin="round"/>
<line x1="50" y1="71" x2="150" y2="129"/>
<line x1="50" y1="129" x2="150" y2="71"/> <!-- Y template: pointing upward from top vertex, then rotated 60° × 6 -->
<!-- Branches vertical --> <!-- Each Y: stem from vertex outward → diamond on axis → two branch arms -->
<line x1="100" y1="52" x2="87" y2="59"/><line x1="100" y1="52" x2="113" y2="59"/> <g stroke="url(#snowGrad)" stroke-width="3" stroke-linecap="round" fill="url(#snowGrad)">
<line x1="100" y1="148" x2="87" y2="141"/><line x1="100" y1="148" x2="113" y2="141"/>
<!-- Branches right --> <!-- Y at 0° (top) -->
<line x1="142" y1="77" x2="150" y2="67"/><line x1="142" y1="77" x2="132" y2="74"/> <g transform="rotate(0,100,100)">
<line x1="58" y1="123" x2="50" y2="133"/><line x1="58" y1="123" x2="68" y2="126"/> <line x1="100" y1="84" x2="100" y2="38"/>
<!-- Branches left --> <!-- Diamond embedded on stem axis -->
<line x1="58" y1="77" x2="50" y2="67"/><line x1="58" y1="77" x2="68" y2="74"/> <polygon points="100,54 106,60 100,66 94,60" stroke="none"/>
<line x1="142" y1="123" x2="150" y2="133"/><line x1="142" y1="123" x2="132" y2="126"/> <!-- Y branch arms -->
<line x1="100" y1="48" x2="82" y2="32"/>
<line x1="100" y1="48" x2="118" y2="32"/>
</g> </g>
<!-- Y at 60° -->
<g transform="rotate(60,100,100)">
<line x1="100" y1="84" x2="100" y2="38"/>
<polygon points="100,54 106,60 100,66 94,60" stroke="none"/>
<line x1="100" y1="48" x2="82" y2="32"/>
<line x1="100" y1="48" x2="118" y2="32"/>
</g>
<!-- Y at 120° -->
<g transform="rotate(120,100,100)">
<line x1="100" y1="84" x2="100" y2="38"/>
<polygon points="100,54 106,60 100,66 94,60" stroke="none"/>
<line x1="100" y1="48" x2="82" y2="32"/>
<line x1="100" y1="48" x2="118" y2="32"/>
</g>
<!-- Y at 180° -->
<g transform="rotate(180,100,100)">
<line x1="100" y1="84" x2="100" y2="38"/>
<polygon points="100,54 106,60 100,66 94,60" stroke="none"/>
<line x1="100" y1="48" x2="82" y2="32"/>
<line x1="100" y1="48" x2="118" y2="32"/>
</g>
<!-- Y at 240° -->
<g transform="rotate(240,100,100)">
<line x1="100" y1="84" x2="100" y2="38"/>
<polygon points="100,54 106,60 100,66 94,60" stroke="none"/>
<line x1="100" y1="48" x2="82" y2="32"/>
<line x1="100" y1="48" x2="118" y2="32"/>
</g>
<!-- Y at 300° -->
<g transform="rotate(300,100,100)">
<line x1="100" y1="84" x2="100" y2="38"/>
<polygon points="100,54 106,60 100,66 94,60" stroke="none"/>
<line x1="100" y1="48" x2="82" y2="32"/>
<line x1="100" y1="48" x2="118" y2="32"/>
</g>
</g>
<!-- Center dot --> <!-- Center dot -->
<circle cx="100" cy="100" r="4.5" fill="#c8b89a"/> <circle cx="100" cy="100" r="3.5" fill="url(#snowGrad)" fill-opacity="0.5"/>
<!-- S.A. text -->
<text x="100" y="108" text-anchor="middle" font-family="'Segoe UI',system-ui,sans-serif" font-size="22" font-weight="700" fill="#d4c8b0" letter-spacing="3">S.A.</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB