D3 Part 3: remaining five pages on design system v2
alkalmazasok (verified hand-maintained — no generator in any repo; the
49-card grid layout stays, screenshots/logos untouched), technologiak,
biztonsagimentes, gyik, szolgaltatasok-nonpublic (re-skinned, remains
unlinked from nav): same conversion — Google Fonts out, site.css?v=1
in, style blocks deleted, body classes, canonical nav/footer, all
emoji -> sprite icons (category/FAQ/service headers .ico-lg, feature
tiles .ico-tile, inline .ico) incl. an ℹ️ the census ranges initially
missed (its FE0F variation selector tripped the gate — the gate works).
ALL 8 SITE GATES GREEN: BOM ×7, emoji 0 (baseline was 182), nav/footer
identical after active-marker normalization, analytics on all 6 public
pages, no CDN, banned legacy tokens 0 (baseline 84 problems), <style>
blocks 7→0, every shared-asset ref cache-busted.
This commit is contained in:
+15
-413
@@ -4,7 +4,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>GYIK — Gyakran ismételt kérdések otthoni szerver szolgáltatásról | Felhom.eu</title>
|
||||
<meta name="description" content="Válaszok a leggyakoribb kérdésekre: hardver, telepítés, alkalmazások, biztonság, mentések, költségek. Minden, amit az otthoni szerver szolgáltatásunkról tudni érdemes."> <link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<meta name="description" content="Válaszok a leggyakoribb kérdésekre: hardver, telepítés, alkalmazások, biztonság, mentések, költségek. Minden, amit az otthoni szerver szolgáltatásunkról tudni érdemes.">
|
||||
|
||||
<meta name="keywords" content="GYIK, gyakran ismételt kérdések, otthoni szerver kérdések, self-hosting FAQ, szerver költségek, szerver biztonság">
|
||||
<meta name="robots" content="index, follow">
|
||||
@@ -359,410 +359,12 @@
|
||||
]
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||||
<!-- shared assets: bump ?v= together on any site.css/icons.svg change -->
|
||||
<link rel="stylesheet" href="/assets/site.css?v=1">
|
||||
<link rel="icon" type="image/png" href="/assets/logo_favicon_2.svg">
|
||||
<script defer src="https://stats.felhom.eu/script.js" data-website-id="d419db57-5e1c-48df-bdb3-c29f25fb1661"></script>
|
||||
<style>
|
||||
/* ============================================
|
||||
UNIFIED CSS - felhom.eu
|
||||
============================================ */
|
||||
|
||||
/* --- CSS Variables --- */
|
||||
:root {
|
||||
--bg-primary: #0d1117;
|
||||
--bg-secondary: #161b22;
|
||||
--bg-card: #1c2128;
|
||||
--text-primary: #e6edf3;
|
||||
--text-secondary: #8b949e;
|
||||
--text-muted: #6e7681;
|
||||
--accent-blue: #0088cc;
|
||||
--accent-light: #00aaff;
|
||||
--accent-glow: rgba(0, 136, 204, 0.3);
|
||||
--border-color: #30363d;
|
||||
--success-green: #238636;
|
||||
--warning-orange: #d29922;
|
||||
}
|
||||
|
||||
/* --- Reset & Base --- */
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
html { scroll-behavior: smooth; }
|
||||
|
||||
body {
|
||||
font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
background: var(--bg-primary);
|
||||
color: var(--text-primary);
|
||||
line-height: 1.6;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
top: 0; left: 0;
|
||||
width: 100%; height: 100%;
|
||||
background-image:
|
||||
linear-gradient(rgba(0, 136, 204, 0.03) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(0, 136, 204, 0.03) 1px, transparent 1px);
|
||||
background-size: 50px 50px;
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
/* --- Layout --- */
|
||||
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
|
||||
|
||||
/* --- Navigation --- */
|
||||
nav {
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0;
|
||||
padding: 20px 0;
|
||||
background: rgba(13, 17, 23, 0.9);
|
||||
backdrop-filter: blur(12px);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
nav .container { display: flex; justify-content: space-between; align-items: center; }
|
||||
|
||||
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
|
||||
.logo img { height: 40px; width: auto; }
|
||||
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--accent-light); letter-spacing: -0.02em; }
|
||||
|
||||
.nav-links { display: flex; gap: 32px; list-style: none; }
|
||||
.nav-links a {
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
font-size: 0.95rem;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
.nav-links a:hover,
|
||||
.nav-links a.active { color: var(--accent-light); }
|
||||
|
||||
/* --- Typography with gradient span support --- */
|
||||
h1 span, h2 span, h3 span, h4 span {
|
||||
background: linear-gradient(135deg, var(--accent-light), var(--accent-blue));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
/* --- Section Headers --- */
|
||||
.section-header { text-align: center; margin-bottom: 60px; }
|
||||
.section-header h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
|
||||
|
||||
/* --- Content Sections --- */
|
||||
.content-section { padding: 100px 0; }
|
||||
.content-section.alt-bg { background: var(--bg-secondary); }
|
||||
|
||||
/* --- Page Header --- */
|
||||
.page-header {
|
||||
padding: 140px 0 60px;
|
||||
text-align: center;
|
||||
}
|
||||
.page-header h1 {
|
||||
font-size: clamp(2rem, 4vw, 3rem);
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.03em;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.page-header p {
|
||||
color: var(--text-secondary);
|
||||
font-size: 1.15rem;
|
||||
max-width: 650px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* --- FAQ Category Navigation --- */
|
||||
.faq-toc {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 24px 32px;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
.faq-toc h3 {
|
||||
font-size: 0.85rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.faq-toc-links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
list-style: none;
|
||||
}
|
||||
.faq-toc-links a {
|
||||
display: inline-block;
|
||||
padding: 8px 16px;
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 500;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
.faq-toc-links a:hover {
|
||||
border-color: var(--accent-blue);
|
||||
color: var(--accent-light);
|
||||
background: rgba(0, 136, 204, 0.1);
|
||||
}
|
||||
|
||||
/* --- FAQ Category --- */
|
||||
.faq-category {
|
||||
margin-bottom: 64px;
|
||||
}
|
||||
.faq-category-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
margin-bottom: 24px;
|
||||
padding-bottom: 16px;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
.faq-category-icon {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
.faq-category-header h2 {
|
||||
font-size: 1.6rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
/* --- FAQ Accordion --- */
|
||||
.faq-item {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 10px;
|
||||
margin-bottom: 12px;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.3s ease;
|
||||
}
|
||||
.faq-item:hover {
|
||||
border-color: rgba(0, 136, 204, 0.4);
|
||||
}
|
||||
|
||||
.faq-question {
|
||||
width: 100%;
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--text-primary);
|
||||
font-family: inherit;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
padding: 20px 24px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
.faq-question:hover {
|
||||
background: rgba(0, 136, 204, 0.05);
|
||||
}
|
||||
|
||||
.faq-chevron {
|
||||
flex-shrink: 0;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
color: var(--accent-light);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.faq-item.open .faq-chevron {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.faq-answer {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
transition: max-height 0.4s ease, padding 0.3s ease;
|
||||
}
|
||||
.faq-item.open .faq-answer {
|
||||
max-height: 600px;
|
||||
}
|
||||
|
||||
.faq-answer-inner {
|
||||
padding: 0 24px 20px;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.7;
|
||||
}
|
||||
.faq-answer-inner p {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.faq-answer-inner p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.faq-answer-inner strong {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.faq-answer-inner a {
|
||||
color: var(--accent-light);
|
||||
text-decoration: none;
|
||||
}
|
||||
.faq-answer-inner a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* --- CTA Section --- */
|
||||
.cta-section { padding: 80px 0; text-align: center; }
|
||||
.cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
|
||||
.cta-section p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
|
||||
.cta-button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: linear-gradient(135deg, var(--accent-blue), var(--accent-light));
|
||||
color: white;
|
||||
padding: 16px 32px;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
box-shadow: 0 4px 20px var(--accent-glow);
|
||||
}
|
||||
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
|
||||
|
||||
/* --- Footer --- */
|
||||
footer {
|
||||
padding: 40px 0;
|
||||
border-top: 1px solid var(--border-color);
|
||||
text-align: center;
|
||||
}
|
||||
footer p { color: var(--text-secondary); font-size: 0.9rem; }
|
||||
|
||||
/* --- Responsive --- */
|
||||
@media (max-width: 900px) {
|
||||
.faq-toc-links { flex-direction: column; gap: 8px; }
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.page-header { padding: 120px 0 40px; }
|
||||
.content-section { padding: 60px 0; }
|
||||
.faq-question { padding: 16px 20px; font-size: 0.95rem; }
|
||||
.faq-answer-inner { padding: 0 20px 16px; }
|
||||
}
|
||||
|
||||
/* --- Hamburger Button --- */
|
||||
.hamburger {
|
||||
display: none;
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
padding: 8px;
|
||||
z-index: 200;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.hamburger-box {
|
||||
width: 28px;
|
||||
height: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.hamburger-line {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: var(--text-primary);
|
||||
border-radius: 2px;
|
||||
transition: transform 0.3s ease, opacity 0.3s ease;
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
/* Hamburger → X animation */
|
||||
.hamburger.is-active .hamburger-line:nth-child(1) {
|
||||
transform: translateY(9px) rotate(45deg);
|
||||
}
|
||||
.hamburger.is-active .hamburger-line:nth-child(2) {
|
||||
opacity: 0;
|
||||
}
|
||||
.hamburger.is-active .hamburger-line:nth-child(3) {
|
||||
transform: translateY(-9px) rotate(-45deg);
|
||||
}
|
||||
|
||||
/* --- Mobile Menu Overlay --- */
|
||||
.mobile-overlay {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: 140;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
.mobile-overlay.is-visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* --- Mobile Nav Styles --- */
|
||||
@media (max-width: 900px) {
|
||||
.hamburger {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: -280px;
|
||||
width: 280px;
|
||||
height: 100vh;
|
||||
height: 100dvh;
|
||||
background: var(--bg-secondary);
|
||||
border-left: 1px solid var(--border-color);
|
||||
padding: 80px 32px 32px;
|
||||
gap: 0;
|
||||
z-index: 150;
|
||||
transition: right 0.3s ease;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.nav-links.is-open {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.nav-links li {
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
display: block;
|
||||
padding: 16px 0;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.mobile-overlay {
|
||||
display: block;
|
||||
pointer-events: none;
|
||||
}
|
||||
.mobile-overlay.is-visible {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
/* Prevent body scroll when menu is open */
|
||||
body.menu-open {
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<body class="page-gyik">
|
||||
<nav>
|
||||
<div class="container">
|
||||
<a href="/" class="logo">
|
||||
@@ -817,7 +419,7 @@
|
||||
<!-- ==================== ALAPKÉRDÉSEK ==================== -->
|
||||
<div class="faq-category" id="alapkerdesek">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">💡</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-lightbulb"/></svg></span>
|
||||
<h2>Alapkérdések</h2>
|
||||
</div>
|
||||
|
||||
@@ -886,7 +488,7 @@
|
||||
<!-- ==================== HARDVER & TELEPÍTÉS ==================== -->
|
||||
<div class="faq-category" id="hardver">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">🖥️</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-monitor"/></svg></span>
|
||||
<h2>Hardver & Telepítés</h2>
|
||||
</div>
|
||||
|
||||
@@ -970,7 +572,7 @@
|
||||
<!-- ==================== ALKALMAZÁSOK & HASZNÁLAT ==================== -->
|
||||
<div class="faq-category" id="alkalmazasok">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">📱</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-smartphone"/></svg></span>
|
||||
<h2>Alkalmazások & Használat</h2>
|
||||
</div>
|
||||
|
||||
@@ -1041,7 +643,7 @@
|
||||
<!-- ==================== BIZTONSÁG & ADATVÉDELEM ==================== -->
|
||||
<div class="faq-category" id="biztonsag">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">🔐</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-lock"/></svg></span>
|
||||
<h2>Biztonság & Adatvédelem</h2>
|
||||
</div>
|
||||
|
||||
@@ -1094,7 +696,7 @@
|
||||
<!-- ==================== MENTÉSEK & ADATBIZTONSÁG ==================== -->
|
||||
<div class="faq-category" id="mentesek">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">💾</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-hard-drive"/></svg></span>
|
||||
<h2>Mentések & Adatbiztonság</h2>
|
||||
</div>
|
||||
|
||||
@@ -1146,7 +748,7 @@
|
||||
<!-- ==================== ÜZEMELTETÉS & TÁMOGATÁS ==================== -->
|
||||
<div class="faq-category" id="uzemeltet">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">🛠️</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-wrench"/></svg></span>
|
||||
<h2>Üzemeltetés & Támogatás</h2>
|
||||
</div>
|
||||
|
||||
@@ -1217,7 +819,7 @@
|
||||
<!-- ==================== KÖLTSÉGEK ==================== -->
|
||||
<div class="faq-category" id="koltsegek">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">💰</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-coins"/></svg></span>
|
||||
<h2>Költségek</h2>
|
||||
</div>
|
||||
|
||||
@@ -1260,7 +862,7 @@
|
||||
<!-- ==================== TECHNIKAI KÉRDÉSEK ==================== -->
|
||||
<div class="faq-category" id="technikai">
|
||||
<div class="faq-category-header">
|
||||
<span class="faq-category-icon">⚙️</span>
|
||||
<span class="faq-category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-settings"/></svg></span>
|
||||
<h2>Technikai kérdések</h2>
|
||||
</div>
|
||||
|
||||
@@ -1281,9 +883,9 @@
|
||||
</button>
|
||||
<div class="faq-answer"><div class="faq-answer-inner">
|
||||
<p>A Proxmox egy professzionális virtualizációs alap — ugyanaz a fajta technológia, amelyet adatközpontok és cégek használnak. Minden Felhom dobozon ott van, csendben a háttérben; neked nem kell vele foglalkoznod. Ez teszi lehetővé a legfontosabb biztonsági funkciókat:</p>
|
||||
<p>🛡️ <strong>Pillanatkép minden változtatás előtt</strong> — frissítés vagy beállítás előtt a rendszer „fényképet" készít önmagáról, így bármi gond esetén pillanatok alatt visszaállunk az előző állapotra.</p>
|
||||
<p>💾 <strong>Az egész rendszer menthető és visszaállítható</strong> — nem csak az adataid, hanem a teljes dobozod is mentésbe tehető, és szükség esetén egy új gépre költöztethető.</p>
|
||||
<p>🧱 <strong>Tiszta elkülönítés</strong> — a kezelőréteg és az alkalmazásaid elkülönítve futnak, így stabilabb és biztonságosabb a rendszer.</p>
|
||||
<p><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-shield"/></svg> <strong>Pillanatkép minden változtatás előtt</strong> — frissítés vagy beállítás előtt a rendszer „fényképet" készít önmagáról, így bármi gond esetén pillanatok alatt visszaállunk az előző állapotra.</p>
|
||||
<p><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-hard-drive"/></svg> <strong>Az egész rendszer menthető és visszaállítható</strong> — nem csak az adataid, hanem a teljes dobozod is mentésbe tehető, és szükség esetén egy új gépre költöztethető.</p>
|
||||
<p><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-layers"/></svg> <strong>Tiszta elkülönítés</strong> — a kezelőréteg és az alkalmazásaid elkülönítve futnak, így stabilabb és biztonságosabb a rendszer.</p>
|
||||
</div></div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user