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:
+13
-402
@@ -39,412 +39,23 @@
|
||||
]
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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>
|
||||
: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;
|
||||
}
|
||||
* { 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;
|
||||
}
|
||||
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
|
||||
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); }
|
||||
.page-header { padding: 140px 0 60px; text-align: center; }
|
||||
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.page-header h1 span { background: linear-gradient(135deg, var(--accent-light), var(--accent-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
|
||||
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 32px; }
|
||||
.disclaimer-banner {
|
||||
background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 24px 32px;
|
||||
margin: 0 auto 48px;
|
||||
max-width: 760px;
|
||||
text-align: left;
|
||||
}
|
||||
.disclaimer-banner h3 { font-size: 1rem; color: var(--accent-light); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
|
||||
.disclaimer-banner ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
|
||||
.disclaimer-banner li { color: var(--text-secondary); font-size: 0.9rem; position: relative; padding-left: 24px; line-height: 1.5; }
|
||||
.disclaimer-banner li::before { content: '✓'; color: var(--success-green); font-weight: bold; position: absolute; left: 0; top: 0; }
|
||||
.disclaimer-banner li strong { color: var(--text-primary); }
|
||||
.disclaimer-banner a { color: var(--accent-light); }
|
||||
.category-section { margin-bottom: 64px; }
|
||||
.category-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); }
|
||||
.category-icon { font-size: 1.8rem; }
|
||||
.category-header h2 { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); }
|
||||
.category-header .app-count { background: var(--bg-card); color: var(--text-secondary); padding: 4px 12px; border-radius: 12px; font-size: 0.8rem; font-weight: 500; }
|
||||
.app-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
|
||||
.app-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.app-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
|
||||
.app-card-header { display: flex; align-items: center; gap: 16px; padding: 20px; border-bottom: 1px solid var(--border-color); }
|
||||
.app-logo { width: 48px; height: 48px; border-radius: 10px; object-fit: contain; background: var(--bg-secondary); padding: 6px; flex-shrink: 0; }
|
||||
.app-title-area h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
|
||||
.app-title-area .app-tagline { font-size: 0.8rem; color: var(--text-muted); }
|
||||
.app-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
|
||||
.app-description { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
|
||||
.app-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
|
||||
.app-feature { background: rgba(0, 136, 204, 0.1); color: var(--accent-light); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; }
|
||||
.app-screenshot { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-color); background: var(--bg-secondary); cursor: pointer; transition: opacity 0.2s ease, transform 0.2s ease; }
|
||||
.app-screenshot:hover { opacity: 0.9; transform: scale(1.02); }
|
||||
|
||||
/* Lightbox / Gallery styles */
|
||||
.lightbox-overlay {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.95);
|
||||
z-index: 1000;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
padding: 20px;
|
||||
}
|
||||
.lightbox-overlay.active { display: flex; }
|
||||
.lightbox-close {
|
||||
position: absolute;
|
||||
top: 20px; right: 24px;
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--text-secondary);
|
||||
font-size: 2rem;
|
||||
cursor: pointer;
|
||||
padding: 8px;
|
||||
line-height: 1;
|
||||
transition: color 0.2s ease;
|
||||
z-index: 1002;
|
||||
}
|
||||
.lightbox-close:hover { color: var(--text-primary); }
|
||||
.lightbox-content {
|
||||
position: relative;
|
||||
max-width: 90vw;
|
||||
max-height: 80vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.lightbox-image {
|
||||
max-width: 100%;
|
||||
max-height: 80vh;
|
||||
object-fit: contain;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.lightbox-nav {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
color: var(--text-primary);
|
||||
font-size: 1.5rem;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: all 0.2s ease;
|
||||
z-index: 1001;
|
||||
}
|
||||
.lightbox-nav:hover { background: var(--accent-blue); border-color: var(--accent-blue); }
|
||||
.lightbox-nav:disabled { opacity: 0.3; cursor: not-allowed; }
|
||||
.lightbox-nav:disabled:hover { background: var(--bg-card); border-color: var(--border-color); }
|
||||
.lightbox-prev { left: -60px; }
|
||||
.lightbox-next { right: -60px; }
|
||||
.lightbox-counter {
|
||||
margin-top: 16px;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
text-align: center;
|
||||
}
|
||||
.lightbox-dots {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: 12px;
|
||||
justify-content: center;
|
||||
}
|
||||
.lightbox-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
background: var(--border-color);
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
.lightbox-dot:hover { background: var(--text-muted); }
|
||||
.lightbox-dot.active { background: var(--accent-light); }
|
||||
|
||||
/* Mobile lightbox adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.lightbox-nav {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.lightbox-prev { left: 10px; }
|
||||
.lightbox-next { right: 10px; }
|
||||
.lightbox-content {
|
||||
max-width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
.app-card-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 16px 20px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
background: var(--bg-secondary);
|
||||
}
|
||||
.github-link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
.github-link:hover { color: var(--accent-light); }
|
||||
.github-link img { width: 18px; height: 18px; opacity: 0.7; }
|
||||
.open-source-badge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
color: var(--success-green);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.open-source-badge img { width: 14px; height: 14px; }
|
||||
.stats-section {
|
||||
padding: 60px 0;
|
||||
background: var(--bg-secondary);
|
||||
border-top: 1px solid var(--border-color);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
.stat-item h3 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, var(--accent-light), var(--accent-blue));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.stat-item p { color: var(--text-secondary); font-size: 0.95rem; }
|
||||
.cta-section { padding: 80px 0; text-align: center; }
|
||||
.cta-section h2 { font-size: 2rem; margin-bottom: 16px; }
|
||||
.cta-section p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 32px; }
|
||||
.cta-button {
|
||||
display: inline-block;
|
||||
padding: 14px 32px;
|
||||
background: linear-gradient(135deg, var(--accent-blue), var(--accent-light));
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
border-radius: 8px;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
|
||||
footer {
|
||||
padding: 40px 0;
|
||||
border-top: 1px solid var(--border-color);
|
||||
text-align: center;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.page-header { padding: 120px 0 40px; }
|
||||
.disclaimer-banner { padding: 20px; }
|
||||
.app-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
/* --- 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-alkalmazasok">
|
||||
<nav>
|
||||
<div class="container">
|
||||
<a href="/" class="logo">
|
||||
<img src="/assets/logo.png" alt="Felhom logo">
|
||||
<img src="/assets/logo.png" alt="Felhom.eu logo">
|
||||
<span class="logo-text">felhom.eu</span>
|
||||
</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="/#szolgaltatasok">Szolgáltatások</a></li>
|
||||
<li><a href="/alkalmazasok" class="active">Alkalmazások</a></li>
|
||||
<li><a href="/technologiak">Technológiák</a></li>
|
||||
<li><a href="/biztonsagimentes">Biztonsági mentés</a></li>
|
||||
<li><a href="/biztonsagimentes">Mentések</a></li>
|
||||
<li><a href="/gyik">GYIK</a></li>
|
||||
<li><a href="/kapcsolat">Kapcsolat</a></li>
|
||||
</ul>
|
||||
@@ -464,7 +75,7 @@
|
||||
<h1>Telepíthető <span>Alkalmazások</span></h1>
|
||||
<p>Válassz a nyílt forráskódú alkalmazások széles kínálatából. Mindegyik ingyenes, közösség által fejlesztett szoftver, amit a saját szervereden futtathatsz.</p>
|
||||
<div class="disclaimer-banner">
|
||||
<h3>ℹ️ Fontos tudnivalók</h3>
|
||||
<h3><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-info"/></svg> Fontos tudnivalók</h3>
|
||||
<ul>
|
||||
<li>Az alkalmazások <strong>nyílt forráskódúak</strong> – bárki ellenőrizheti a működésüket, nincs rejtett funkció</li>
|
||||
<li>Szolgáltatásunk az alkalmazások <strong>telepítésére</strong> terjed ki, nem azok fejlesztésére vagy értékesítésére</li>
|
||||
@@ -482,7 +93,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="fajlkezeles">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">📁</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-folder"/></svg></span>
|
||||
<h2>Fájlkezelés & Irodai</h2>
|
||||
<span class="app-count">7 alkalmazás</span>
|
||||
</div>
|
||||
@@ -607,7 +218,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="media">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">📺</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-tv"/></svg></span>
|
||||
<h2>Média & Szórakozás</h2>
|
||||
<span class="app-count">13 alkalmazás</span>
|
||||
</div>
|
||||
@@ -657,7 +268,7 @@
|
||||
</div>
|
||||
<div class="app-card-footer">
|
||||
<a href="https://github.com/plexinc" target="_blank" rel="noopener" class="github-link"><img src="/assets/github.svg" alt="GitHub">Weboldal</a>
|
||||
<span class="open-source-badge" style="color: var(--warning-orange);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
<span class="open-source-badge" style="color: var(--warn);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Emby -->
|
||||
@@ -673,7 +284,7 @@
|
||||
</div>
|
||||
<div class="app-card-footer">
|
||||
<a href="https://github.com/MediaBrowser/Emby" target="_blank" rel="noopener" class="github-link"><img src="/assets/github.svg" alt="GitHub">Forráskód</a>
|
||||
<span class="open-source-badge" style="color: var(--warning-orange);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
<span class="open-source-badge" style="color: var(--warn);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Navidrome -->
|
||||
@@ -828,7 +439,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="otthon">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🏠</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-home"/></svg></span>
|
||||
<h2>Otthon & Életmód</h2>
|
||||
<span class="app-count">11 alkalmazás</span>
|
||||
</div>
|
||||
@@ -1017,7 +628,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="produktivitas">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">📊</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-chart-column"/></svg></span>
|
||||
<h2>Produktivitás & Tudáskezelés</h2>
|
||||
<span class="app-count">9 alkalmazás</span>
|
||||
</div>
|
||||
@@ -1174,7 +785,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="rendszer">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🔧</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-wrench"/></svg></span>
|
||||
<h2>Rendszer & Fejlesztés</h2>
|
||||
<span class="app-count">9 alkalmazás</span>
|
||||
</div>
|
||||
|
||||
+13
-418
@@ -33,417 +33,12 @@
|
||||
"mainEntityOfPage": "https://felhom.eu/biztonsagimentes"
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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;
|
||||
}
|
||||
|
||||
/* --- Page Header --- */
|
||||
.page-header { padding: 140px 0 60px; text-align: center; }
|
||||
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
|
||||
|
||||
/* --- Section Headers --- */
|
||||
.section-header { text-align: center; margin-bottom: 48px; }
|
||||
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
|
||||
|
||||
/* --- Content Sections --- */
|
||||
.content-section { padding: 80px 0; }
|
||||
.content-section.alt-bg { background: var(--bg-secondary); }
|
||||
|
||||
/* --- Buttons --- */
|
||||
.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; }
|
||||
|
||||
/* --- Info Cards --- */
|
||||
.info-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 40px;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.info-card:last-child { margin-bottom: 0; }
|
||||
.info-card h3 {
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 20px;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.info-card p {
|
||||
color: var(--text-secondary);
|
||||
font-size: 1rem;
|
||||
line-height: 1.8;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.info-card p:last-child { margin-bottom: 0; }
|
||||
|
||||
/* --- Boxes --- */
|
||||
.highlight-box {
|
||||
background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
|
||||
border: 1px solid var(--accent-blue);
|
||||
border-radius: 12px;
|
||||
padding: 20px 24px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.highlight-box p { color: var(--text-primary); margin: 0; }
|
||||
.highlight-box strong { color: var(--accent-light); }
|
||||
|
||||
/* --- 3-2-1 Rule Section --- */
|
||||
.backup-rule {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: 32px;
|
||||
align-items: start;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.backup-rule:last-child { margin-bottom: 0; }
|
||||
|
||||
.rule-number {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, var(--accent-light), var(--accent-blue));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
line-height: 1;
|
||||
min-width: 80px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rule-content h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--text-primary); }
|
||||
.rule-content p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
|
||||
.rule-content p:last-child { margin-bottom: 0; }
|
||||
|
||||
.example-box {
|
||||
background: var(--bg-primary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
padding: 16px 20px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
.example-box .label {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
color: var(--accent-light);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.example-box p { margin: 0; font-size: 0.95rem; }
|
||||
|
||||
/* --- Methods Grid --- */
|
||||
.methods-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.method-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 32px;
|
||||
transition: border-color 0.3s ease, transform 0.3s ease;
|
||||
}
|
||||
.method-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); }
|
||||
|
||||
.method-icon { font-size: 2.5rem; margin-bottom: 20px; }
|
||||
.method-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-primary); }
|
||||
.method-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
|
||||
|
||||
.method-pros { list-style: none; margin: 16px 0; }
|
||||
.method-pros li {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.method-pros li::before {
|
||||
content: '✓';
|
||||
color: var(--success-green);
|
||||
font-weight: bold;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.method-cons li::before {
|
||||
content: '⚠';
|
||||
color: var(--warning-orange);
|
||||
}
|
||||
|
||||
/* --- Visual Diagram --- */
|
||||
.backup-diagram {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 40px;
|
||||
text-align: center;
|
||||
margin: 48px 0;
|
||||
}
|
||||
.backup-diagram h3 { font-size: 1.2rem; margin-bottom: 32px; color: var(--text-secondary); }
|
||||
|
||||
.diagram-visual {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 24px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.diagram-node {
|
||||
background: var(--bg-secondary);
|
||||
border: 2px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 20px 28px;
|
||||
text-align: center;
|
||||
min-width: 140px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.diagram-node:hover { border-color: var(--accent-blue); transform: scale(1.05); }
|
||||
.diagram-node.primary { border-color: var(--accent-light); background: rgba(0, 136, 204, 0.1); }
|
||||
.diagram-node .icon { font-size: 2rem; margin-bottom: 8px; }
|
||||
.diagram-node .label { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
|
||||
.diagram-node .sublabel { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
|
||||
|
||||
.diagram-arrow { font-size: 1.5rem; color: var(--accent-blue); }
|
||||
|
||||
/* --- 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; }
|
||||
|
||||
/* --- Responsive --- */
|
||||
@media (max-width: 900px) {
|
||||
.backup-rule { grid-template-columns: 1fr; gap: 16px; text-align: center; }
|
||||
.rule-number { font-size: 2.5rem; }
|
||||
.diagram-visual { flex-direction: column; }
|
||||
.diagram-arrow { transform: rotate(90deg); }
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.page-header { padding: 120px 0 40px; }
|
||||
.info-card { padding: 24px; }
|
||||
.content-section { padding: 60px 0; }
|
||||
}
|
||||
|
||||
/* --- 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-biztonsagimentes">
|
||||
<nav>
|
||||
<div class="container">
|
||||
<a href="/" class="logo">
|
||||
@@ -481,7 +76,7 @@
|
||||
<section class="content-section">
|
||||
<div class="container">
|
||||
<div class="info-card">
|
||||
<h3>🤔 Miért fontos ez?</h3>
|
||||
<h3><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-circle-help"/></svg> Miért fontos ez?</h3>
|
||||
<p>Amikor valaki felhőszolgáltatást választ – legyen az Google Drive, iCloud, vagy bármilyen más – az egyik legfontosabb szempont az <strong>adatbiztonság</strong>. Nem az a kérdés, hogy valaki hozzáfér-e az adatainkhoz, hanem hogy <strong>megmaradnak-e</strong>.</p>
|
||||
<p>A nagy szolgáltatók ezt milliárd dolláros infrastruktúrával oldják meg: több adatközpont, redundáns tárolás, automatikus mentések. De vajon otthoni szerveren is elérhető ugyanez a biztonság?</p>
|
||||
<div class="highlight-box">
|
||||
@@ -539,19 +134,19 @@
|
||||
<h3>Így néz ki a gyakorlatban</h3>
|
||||
<div class="diagram-visual">
|
||||
<div class="diagram-node primary">
|
||||
<div class="icon">🖥️</div>
|
||||
<div class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-monitor"/></svg></div>
|
||||
<div class="label">Szerver</div>
|
||||
<div class="sublabel">Eredeti adat</div>
|
||||
</div>
|
||||
<div class="diagram-arrow">→</div>
|
||||
<div class="diagram-node">
|
||||
<div class="icon">💾</div>
|
||||
<div class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-hard-drive"/></svg></div>
|
||||
<div class="label">Helyi backup</div>
|
||||
<div class="sublabel">Külső HDD/NAS</div>
|
||||
</div>
|
||||
<div class="diagram-arrow">→</div>
|
||||
<div class="diagram-node">
|
||||
<div class="icon">🌍</div>
|
||||
<div class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-globe"/></svg></div>
|
||||
<div class="label">Offsite backup</div>
|
||||
<div class="sublabel">Távoli hely</div>
|
||||
</div>
|
||||
@@ -570,7 +165,7 @@
|
||||
|
||||
<div class="methods-grid">
|
||||
<div class="method-card">
|
||||
<div class="method-icon">👥</div>
|
||||
<div class="method-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-users"/></svg></div>
|
||||
<h3>„Haver rendszer"</h3>
|
||||
<p>A legegyszerűbb és legolcsóbb megoldás: cserélj mentéseket egy megbízható ismerőssel. Te mentesz az ő szerverére, ő ment a tiédre.</p>
|
||||
<ul class="method-pros">
|
||||
@@ -586,7 +181,7 @@
|
||||
</div>
|
||||
|
||||
<div class="method-card">
|
||||
<div class="method-icon">🏢</div>
|
||||
<div class="method-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-building-2"/></svg></div>
|
||||
<h3>Otthon ↔ Iroda</h3>
|
||||
<p>Ha van munkahelyed vagy saját irodád, használd ki! A két helyszín természetes földrajzi távolságot biztosít.</p>
|
||||
<ul class="method-pros">
|
||||
@@ -601,7 +196,7 @@
|
||||
</div>
|
||||
|
||||
<div class="method-card">
|
||||
<div class="method-icon">☁️</div>
|
||||
<div class="method-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-cloud"/></svg></div>
|
||||
<h3>Titkosított felhő backup</h3>
|
||||
<p>Ha nincs megbízható ismerős vagy második helyszín, a felhő a megoldás. Fontos: az adatokat a feltöltés előtt titkosítjuk!</p>
|
||||
<ul class="method-pros">
|
||||
@@ -630,19 +225,19 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3>🔧 Automatizált mentési rendszer</h3>
|
||||
<h3><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-wrench"/></svg> Automatizált mentési rendszer</h3>
|
||||
<p>A szerver automatikusan, ütemezetten készít mentéseket. Nem kell semmire sem emlékezned – a rendszer gondoskodik róla.</p>
|
||||
<p>A mentések inkrementálisak, ami azt jelenti, hogy csak a változások kerülnek mentésre. Ez helyet és időt takarít meg, miközben a teljes visszaállítási lehetőség megmarad.</p>
|
||||
|
||||
<div class="highlight-box">
|
||||
<p>🖥️ <strong>Nem csak az adatok:</strong> a Proxmox alapnak köszönhetően nem csupán a fájljaid és adatbázisaid menthetők, hanem az <strong>egész rendszered</strong> is — a teljes doboz biztonsági mentésbe tehető és szükség esetén egy új gépre is visszaállítható (titkosított offsite mentésből). Ez teszi lehetővé, hogy egy hardverhiba után gyorsan újrainduljon minden.</p>
|
||||
<p><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-monitor"/></svg> <strong>Nem csak az adatok:</strong> a Proxmox alapnak köszönhetően nem csupán a fájljaid és adatbázisaid menthetők, hanem az <strong>egész rendszered</strong> is — a teljes doboz biztonsági mentésbe tehető és szükség esetén egy új gépre is visszaállítható (titkosított offsite mentésből). Ez teszi lehetővé, hogy egy hardverhiba után gyorsan újrainduljon minden.</p>
|
||||
</div>
|
||||
|
||||
<div class="highlight-box">
|
||||
<p><strong>Személyre szabjuk:</strong> Minden ügyfélnél felmérjük a lehetőségeket (van-e haver szerver, iroda, felhő preferencia), és ennek megfelelően állítjuk be az offsite mentést.</p>
|
||||
</div>
|
||||
|
||||
<h3 style="margin-top: 24px;">📊 Monitoring és értesítések</h3>
|
||||
<h3 style="margin-top: 24px;"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-chart-column"/></svg> Monitoring és értesítések</h3>
|
||||
<p>A mentéseket folyamatosan figyeljük. Ha bármi probléma van – sikertelen mentés, tárhelyhiány, kapcsolati probléma – azonnal értesítést kapsz, és mi is.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
+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>
|
||||
|
||||
|
||||
@@ -5,723 +5,12 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Felhom.eu - Szolgáltatások és árak. Otthoni szerver telepítés, üzemeltetés, monitoring és támogatás.">
|
||||
<title>Szolgáltatások - Felhom.eu</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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">
|
||||
<!-- analytics intentionally omitted for draft page -->
|
||||
<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;
|
||||
}
|
||||
|
||||
/* --- Page Header --- */
|
||||
.page-header { padding: 140px 0 60px; text-align: center; }
|
||||
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 32px; }
|
||||
|
||||
/* --- 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: 80px 0; }
|
||||
.content-section.alt-bg { background: var(--bg-secondary); }
|
||||
|
||||
/* --- Draft banner --- */
|
||||
.draft-banner {
|
||||
background: linear-gradient(135deg, rgba(210, 153, 34, 0.15), rgba(210, 153, 34, 0.05));
|
||||
border: 1px solid var(--warning-orange);
|
||||
border-radius: 12px;
|
||||
padding: 20px 28px;
|
||||
margin-bottom: 48px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
max-width: 700px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.draft-banner .draft-icon { font-size: 1.5rem; flex-shrink: 0; }
|
||||
.draft-banner p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }
|
||||
.draft-banner strong { color: var(--warning-orange); }
|
||||
|
||||
/* --- Pricing disclaimer --- */
|
||||
.pricing-note {
|
||||
background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 24px 32px;
|
||||
margin-bottom: 48px;
|
||||
max-width: 800px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.pricing-note p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
|
||||
.pricing-note strong { color: var(--text-primary); }
|
||||
|
||||
/* --- Service cards --- */
|
||||
.service-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
||||
gap: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.service-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 28px;
|
||||
transition: border-color 0.3s ease, transform 0.3s ease;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.service-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); }
|
||||
|
||||
.service-card-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.service-card-icon {
|
||||
font-size: 2rem;
|
||||
line-height: 1;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.service-card-badge {
|
||||
font-size: 0.7rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
padding: 4px 10px;
|
||||
border-radius: 6px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.badge-onetime {
|
||||
background: rgba(35, 134, 54, 0.2);
|
||||
color: var(--success-green);
|
||||
border: 1px solid rgba(35, 134, 54, 0.3);
|
||||
}
|
||||
.badge-monthly {
|
||||
background: rgba(0, 136, 204, 0.2);
|
||||
color: var(--accent-light);
|
||||
border: 1px solid rgba(0, 136, 204, 0.3);
|
||||
}
|
||||
.badge-ondemand {
|
||||
background: rgba(210, 153, 34, 0.2);
|
||||
color: var(--warning-orange);
|
||||
border: 1px solid rgba(210, 153, 34, 0.3);
|
||||
}
|
||||
.badge-free {
|
||||
background: rgba(35, 134, 54, 0.2);
|
||||
color: #3fb950;
|
||||
border: 1px solid rgba(63, 185, 80, 0.3);
|
||||
}
|
||||
|
||||
.service-card h3 {
|
||||
font-size: 1.15rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 10px;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.service-card .description {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.6;
|
||||
flex-grow: 1;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.service-card .includes {
|
||||
list-style: none;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.service-card .includes li {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.85rem;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.service-card .includes li::before {
|
||||
content: '✓';
|
||||
color: var(--success-green);
|
||||
font-weight: bold;
|
||||
flex-shrink: 0;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.service-card .price-box {
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
padding: 14px 18px;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.price-box .price-label {
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.price-box .price-value {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 1.3rem;
|
||||
font-weight: 600;
|
||||
color: var(--accent-light);
|
||||
}
|
||||
|
||||
.price-box .price-unit {
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-secondary);
|
||||
font-family: 'Plus Jakarta Sans', sans-serif;
|
||||
}
|
||||
|
||||
.price-box .price-note {
|
||||
font-size: 0.78rem;
|
||||
color: var(--text-muted);
|
||||
margin-top: 4px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
/* --- Package cards --- */
|
||||
.package-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 24px;
|
||||
margin-top: 48px;
|
||||
}
|
||||
|
||||
.package-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 32px 28px;
|
||||
transition: border-color 0.3s ease, transform 0.3s ease;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.package-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); }
|
||||
|
||||
.package-card.featured {
|
||||
border-color: var(--accent-blue);
|
||||
box-shadow: 0 0 40px var(--accent-glow);
|
||||
}
|
||||
|
||||
.package-card.featured::before {
|
||||
content: '★ Legnépszerűbb';
|
||||
position: absolute;
|
||||
top: -12px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background: linear-gradient(135deg, var(--accent-blue), var(--accent-light));
|
||||
color: white;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
padding: 4px 16px;
|
||||
border-radius: 20px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.package-card .package-icon {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.package-card h3 {
|
||||
font-size: 1.4rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.package-card .package-tagline {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 20px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.package-card .package-price {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
color: var(--accent-light);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.package-card .package-price-note {
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.package-card .package-features {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
flex-grow: 1;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.package-card .package-features li {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.88rem;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 10px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.package-card .package-features li::before {
|
||||
content: '✓';
|
||||
color: var(--success-green);
|
||||
font-weight: bold;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.package-card .package-features li.na {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.package-card .package-features li.na::before {
|
||||
content: '–';
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.package-cta {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 12px 24px;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 0.95rem;
|
||||
transition: all 0.2s ease;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.package-cta-secondary {
|
||||
background: transparent;
|
||||
color: var(--accent-light);
|
||||
border: 2px solid var(--accent-blue);
|
||||
}
|
||||
.package-cta-secondary:hover { background: var(--accent-blue); color: white; }
|
||||
|
||||
.package-cta-primary {
|
||||
background: linear-gradient(135deg, var(--accent-blue), var(--accent-light));
|
||||
color: white;
|
||||
border: none;
|
||||
box-shadow: 0 4px 20px var(--accent-glow);
|
||||
}
|
||||
.package-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
|
||||
|
||||
/* --- Domain highlight section --- */
|
||||
.domain-section {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 48px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.domain-text h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 16px;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.domain-text p {
|
||||
color: var(--text-secondary);
|
||||
font-size: 1rem;
|
||||
line-height: 1.7;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.domain-visual {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.domain-example {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 20px 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.domain-example .domain-icon {
|
||||
font-size: 1.5rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.domain-example .domain-url {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 0.95rem;
|
||||
color: var(--accent-light);
|
||||
}
|
||||
|
||||
.domain-example .domain-desc {
|
||||
font-size: 0.82rem;
|
||||
color: var(--text-muted);
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
/* --- Process timeline --- */
|
||||
.process-timeline {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.process-timeline::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 24px;
|
||||
top: 40px;
|
||||
bottom: 40px;
|
||||
width: 2px;
|
||||
background: var(--border-color);
|
||||
}
|
||||
|
||||
.process-step {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 24px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.step-number {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 50%;
|
||||
background: var(--bg-card);
|
||||
border: 2px solid var(--accent-blue);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-weight: 700;
|
||||
font-size: 1rem;
|
||||
color: var(--accent-light);
|
||||
flex-shrink: 0;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.step-content h4 {
|
||||
font-size: 1.05rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 6px;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.step-content p {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* --- CTA Section --- */
|
||||
.cta-section {
|
||||
text-align: center;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
.cta-box {
|
||||
background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.03));
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 48px;
|
||||
}
|
||||
|
||||
.cta-box h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.cta-box p {
|
||||
color: var(--text-secondary);
|
||||
font-size: 1.05rem;
|
||||
margin-bottom: 32px;
|
||||
max-width: 500px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.cta-buttons {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.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); }
|
||||
|
||||
.cta-button-secondary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: transparent;
|
||||
color: var(--accent-light);
|
||||
padding: 14px 28px;
|
||||
border: 2px solid var(--accent-blue);
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
.cta-button-secondary:hover { background: var(--accent-blue); color: white; }
|
||||
|
||||
/* --- 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: 768px) {
|
||||
.package-grid { grid-template-columns: 1fr; }
|
||||
.domain-section { grid-template-columns: 1fr; gap: 32px; }
|
||||
.service-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) and (min-width: 769px) {
|
||||
.package-grid { grid-template-columns: 1fr 1fr; }
|
||||
}
|
||||
|
||||
/* --- 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-szolgaltatasok">
|
||||
<nav>
|
||||
<div class="container">
|
||||
<a href="/" class="logo">
|
||||
@@ -756,7 +45,7 @@
|
||||
|
||||
<!-- Draft banner - remove when going live -->
|
||||
<div class="draft-banner">
|
||||
<span class="draft-icon">🚧</span>
|
||||
<span class="draft-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-construction"/></svg></span>
|
||||
<p><strong>Belső tesztoldal</strong> — Ez az oldal még nem publikus. Az árak tájékoztató jellegűek, a végleges árazás a piaci visszajelzések alapján alakul.</p>
|
||||
</div>
|
||||
|
||||
@@ -779,7 +68,7 @@
|
||||
<div class="package-grid">
|
||||
<!-- Alap csomag -->
|
||||
<div class="package-card">
|
||||
<div class="package-icon">🌱</div>
|
||||
<div class="package-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-sprout"/></svg></div>
|
||||
<h3>Alap</h3>
|
||||
<p class="package-tagline">Kezdj kicsiben — próbáld ki az önhostolást néhány alkalmazással.</p>
|
||||
<div class="package-price">~75 000 Ft</div>
|
||||
@@ -799,7 +88,7 @@
|
||||
|
||||
<!-- Komfort csomag -->
|
||||
<div class="package-card featured">
|
||||
<div class="package-icon">🏠</div>
|
||||
<div class="package-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-home"/></svg></div>
|
||||
<h3>Komfort</h3>
|
||||
<p class="package-tagline">A legtöbb család számára ideális. Felhő-kiváltás, teljes kényelemmel.</p>
|
||||
<div class="package-price">~130 000 Ft</div>
|
||||
@@ -819,7 +108,7 @@
|
||||
|
||||
<!-- Prémium csomag -->
|
||||
<div class="package-card">
|
||||
<div class="package-icon">🚀</div>
|
||||
<div class="package-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-rocket"/></svg></div>
|
||||
<h3>Prémium</h3>
|
||||
<p class="package-tagline">Teljes digitális függetlenség — minden szolgáltatás, maximális támogatás.</p>
|
||||
<div class="package-price">~200 000 Ft</div>
|
||||
@@ -854,7 +143,7 @@
|
||||
<!-- Hardver ellenőrzés -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">🔍</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-search"/></svg></span>
|
||||
<span class="service-card-badge badge-onetime">Egyszeri</span>
|
||||
</div>
|
||||
<h3>Hardver ellenőrzés és stresszteszt</h3>
|
||||
@@ -876,7 +165,7 @@
|
||||
<!-- Rendszer telepítés -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">⚙️</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-settings"/></svg></span>
|
||||
<span class="service-card-badge badge-onetime">Egyszeri</span>
|
||||
</div>
|
||||
<h3>Rendszer telepítés és konfigurálás</h3>
|
||||
@@ -899,7 +188,7 @@
|
||||
<!-- Alkalmazás telepítés -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">📦</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-package"/></svg></span>
|
||||
<span class="service-card-badge badge-onetime">Egyszeri / alkalmazás</span>
|
||||
</div>
|
||||
<h3>Alkalmazás telepítés</h3>
|
||||
@@ -921,7 +210,7 @@
|
||||
<!-- Adatmigráció -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">📤</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-upload"/></svg></span>
|
||||
<span class="service-card-badge badge-onetime">Egyszeri</span>
|
||||
</div>
|
||||
<h3>Adatmigráció</h3>
|
||||
@@ -943,7 +232,7 @@
|
||||
<!-- Domain regisztráció -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">🌐</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-globe"/></svg></span>
|
||||
<span class="service-card-badge badge-free">Ajándék</span>
|
||||
</div>
|
||||
<h3>Domain regisztráció és DNS kezelés</h3>
|
||||
@@ -964,7 +253,7 @@
|
||||
<!-- VPN / távoli hozzáférés -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">🔒</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-lock"/></svg></span>
|
||||
<span class="service-card-badge badge-onetime">Egyszeri</span>
|
||||
</div>
|
||||
<h3>VPN / Távoli hozzáférés beállítás</h3>
|
||||
@@ -999,7 +288,7 @@
|
||||
<!-- Monitoring -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">📊</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-chart-column"/></svg></span>
|
||||
<span class="service-card-badge badge-monthly">Havi</span>
|
||||
</div>
|
||||
<h3>Rendszer monitoring és karbantartás</h3>
|
||||
@@ -1023,7 +312,7 @@
|
||||
<!-- Mentés tárhely -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">☁️</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-cloud"/></svg></span>
|
||||
<span class="service-card-badge badge-monthly">Havi</span>
|
||||
</div>
|
||||
<h3>Offsite mentés tárhely</h3>
|
||||
@@ -1058,7 +347,7 @@
|
||||
<!-- Konfiguráció módosítás -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">🔧</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-wrench"/></svg></span>
|
||||
<span class="service-card-badge badge-ondemand">Igény szerint</span>
|
||||
</div>
|
||||
<h3>Konfiguráció módosítás</h3>
|
||||
@@ -1079,7 +368,7 @@
|
||||
<!-- Incidens kezelés -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">🚨</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-siren"/></svg></span>
|
||||
<span class="service-card-badge badge-ondemand">Igény szerint</span>
|
||||
</div>
|
||||
<h3>Incidens kezelés és hibaelhárítás</h3>
|
||||
@@ -1100,7 +389,7 @@
|
||||
<!-- Új alkalmazás telepítés (utólag) -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">➕</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-plus"/></svg></span>
|
||||
<span class="service-card-badge badge-ondemand">Igény szerint</span>
|
||||
</div>
|
||||
<h3>Új alkalmazás telepítés (utólag)</h3>
|
||||
@@ -1120,7 +409,7 @@
|
||||
<!-- Alkalmazás eltávolítás -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">🗑️</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-trash-2"/></svg></span>
|
||||
<span class="service-card-badge badge-ondemand">Igény szerint</span>
|
||||
</div>
|
||||
<h3>Alkalmazás eltávolítás</h3>
|
||||
@@ -1140,7 +429,7 @@
|
||||
<!-- Éves rendszerfelülvizsgálat -->
|
||||
<div class="service-card">
|
||||
<div class="service-card-header">
|
||||
<span class="service-card-icon">🩺</span>
|
||||
<span class="service-card-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-stethoscope"/></svg></span>
|
||||
<span class="service-card-badge badge-ondemand">Éves</span>
|
||||
</div>
|
||||
<h3>Éves rendszerfelülvizsgálat</h3>
|
||||
@@ -1172,32 +461,32 @@
|
||||
<h2>Miért kapsz <span>saját domaint?</span></h2>
|
||||
<p>A saját domain nem luxus — hanem a megbízható rendszer alapja. Az SSL tanúsítványok, a biztonságos HTTPS hozzáférés és az alkalmazásaid egyszerű elérhetősége mind ezen múlik.</p>
|
||||
<p>Az első évi domain regisztrációt mi álljuk. Utána a domain éves díját (jellemzően 3 000–6 000 Ft) költségen adjuk tovább — semmi rejtett felár.</p>
|
||||
<p style="color: var(--text-muted); font-size: 0.9rem;">Meglévő domained is használhatjuk, ha van — ilyenkor a DNS beállítást mi végezzük el.</p>
|
||||
<p style="color: var(--text-3); font-size: 0.9rem;">Meglévő domained is használhatjuk, ha van — ilyenkor a DNS beállítást mi végezzük el.</p>
|
||||
</div>
|
||||
<div class="domain-visual">
|
||||
<div class="domain-example">
|
||||
<span class="domain-icon">📷</span>
|
||||
<span class="domain-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-camera"/></svg></span>
|
||||
<div>
|
||||
<div class="domain-url">photos.pelda-csalad.hu</div>
|
||||
<div class="domain-desc">Immich — családi fotók</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="domain-example">
|
||||
<span class="domain-icon">📁</span>
|
||||
<span class="domain-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-folder"/></svg></span>
|
||||
<div>
|
||||
<div class="domain-url">cloud.pelda-csalad.hu</div>
|
||||
<div class="domain-desc">Nextcloud — fájlok és naptár</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="domain-example">
|
||||
<span class="domain-icon">🎬</span>
|
||||
<span class="domain-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-clapperboard"/></svg></span>
|
||||
<div>
|
||||
<div class="domain-url">media.pelda-csalad.hu</div>
|
||||
<div class="domain-desc">Jellyfin — filmek és sorozatok</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="domain-example">
|
||||
<span class="domain-icon">🔐</span>
|
||||
<span class="domain-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-lock"/></svg></span>
|
||||
<div>
|
||||
<div class="domain-url">vault.pelda-csalad.hu</div>
|
||||
<div class="domain-desc">Vaultwarden — jelszókezelő</div>
|
||||
@@ -1274,8 +563,8 @@
|
||||
<h2>Kérdésed van? <span>Beszéljünk!</span></h2>
|
||||
<p>Az egyedi árajánlat ingyenes és kötelezettségmentes. Írd meg, mire lenne szükséged — mi pedig megmondjuk, mennyibe kerül.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="/kapcsolat" class="cta-button">📝 Ajánlatot kérek</a>
|
||||
<a href="mailto:info@felhom.eu" class="cta-button-secondary">✉️ info@felhom.eu</a>
|
||||
<a href="/kapcsolat" class="cta-button"><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-message-square"/></svg> Ajánlatot kérek</a>
|
||||
<a href="mailto:info@felhom.eu" class="cta-button-secondary"><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-mail"/></svg> info@felhom.eu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
+30
-563
@@ -4,7 +4,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Technológiák — Docker, Felhő Felügyelő, Proxmox, Kubernetes otthoni szerverhez | Felhom.eu</title>
|
||||
<meta name="description" content="Ipari szintű technológiák otthon: Docker konténerek, Felhő Felügyelő, Proxmox virtualizáció, Kubernetes. SSL, tűzfal, VPN — professzionális biztonság."> <link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<meta name="description" content="Ipari szintű technológiák otthon: Docker konténerek, Felhő Felügyelő, Proxmox virtualizáció, Kubernetes. SSL, tűzfal, VPN — professzionális biztonság.">
|
||||
|
||||
<meta name="keywords" content="Docker, Felhő Felügyelő, Proxmox, Kubernetes, k3s, konténer, virtualizáció, reverse proxy, SSL, tűzfal, VPN, otthoni szerver technológia">
|
||||
<meta name="robots" content="index, follow">
|
||||
@@ -34,545 +34,12 @@
|
||||
"mainEntityOfPage": "https://felhom.eu/technologiak"
|
||||
}
|
||||
</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;
|
||||
}
|
||||
|
||||
/* --- Page Header --- */
|
||||
.page-header { padding: 140px 0 60px; text-align: center; }
|
||||
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
|
||||
|
||||
/* --- Section Headers --- */
|
||||
.section-header { text-align: center; margin-bottom: 48px; }
|
||||
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
|
||||
|
||||
/* --- Content Sections --- */
|
||||
.content-section { padding: 80px 0; }
|
||||
.content-section.alt-bg { background: var(--bg-secondary); }
|
||||
|
||||
/* --- Buttons --- */
|
||||
.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); }
|
||||
|
||||
.cta-button-secondary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: transparent;
|
||||
color: var(--accent-light);
|
||||
padding: 14px 28px;
|
||||
border: 2px solid var(--accent-blue);
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
transition: all 0.2s ease;
|
||||
margin-left: 16px;
|
||||
}
|
||||
.cta-button-secondary:hover { background: var(--accent-blue); color: white; }
|
||||
|
||||
/* --- 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; }
|
||||
|
||||
/* --- TOC Navigation (Content, not nav) --- */
|
||||
.toc-nav {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 24px 32px;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
.toc-nav h3 {
|
||||
font-size: 0.85rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.toc-links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px 24px;
|
||||
list-style: none;
|
||||
}
|
||||
.toc-links a {
|
||||
color: var(--accent-light);
|
||||
text-decoration: none;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
.toc-links a:hover { color: var(--text-primary); }
|
||||
|
||||
/* --- Info Cards --- */
|
||||
.info-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 40px;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.info-card:last-child { margin-bottom: 0; }
|
||||
.info-card h3 {
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 20px;
|
||||
color: var(--text-primary);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
.info-card h3 .icon { font-size: 1.6rem; }
|
||||
.info-card p {
|
||||
color: var(--text-secondary);
|
||||
font-size: 1rem;
|
||||
line-height: 1.8;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.info-card p:last-child { margin-bottom: 0; }
|
||||
|
||||
/* --- Boxes --- */
|
||||
.highlight-box {
|
||||
background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
|
||||
border: 1px solid var(--accent-blue);
|
||||
border-radius: 12px;
|
||||
padding: 20px 24px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.highlight-box p { color: var(--text-primary); margin: 0; }
|
||||
.highlight-box strong { color: var(--accent-light); }
|
||||
|
||||
.warning-box {
|
||||
background: linear-gradient(135deg, rgba(210, 153, 34, 0.1), rgba(210, 153, 34, 0.05));
|
||||
border: 1px solid var(--warning-orange);
|
||||
border-radius: 12px;
|
||||
padding: 20px 24px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.warning-box p { color: var(--text-primary); margin: 0; }
|
||||
|
||||
/* --- Feature Lists --- */
|
||||
.feature-list {
|
||||
list-style: none;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.feature-list li {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.95rem;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 12px;
|
||||
margin-bottom: 12px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.feature-list li::before {
|
||||
content: '✓';
|
||||
color: var(--success-green);
|
||||
font-weight: bold;
|
||||
flex-shrink: 0;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.feature-list.cons li::before {
|
||||
content: '✗';
|
||||
color: var(--warning-orange);
|
||||
}
|
||||
|
||||
/* --- Comparison Grid --- */
|
||||
.comparison-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 24px;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
.comparison-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 32px;
|
||||
transition: border-color 0.3s ease, transform 0.3s ease;
|
||||
position: relative;
|
||||
}
|
||||
.comparison-card:hover {
|
||||
border-color: var(--accent-blue);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
.comparison-card.recommended {
|
||||
border-color: var(--accent-light);
|
||||
}
|
||||
.comparison-card.recommended::before {
|
||||
content: '★ Ajánlott';
|
||||
position: absolute;
|
||||
top: -12px;
|
||||
left: 24px;
|
||||
background: linear-gradient(135deg, var(--accent-blue), var(--accent-light));
|
||||
color: white;
|
||||
padding: 4px 12px;
|
||||
border-radius: 12px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.comparison-card .card-icon { font-size: 2.5rem; margin-bottom: 16px; }
|
||||
.comparison-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-primary); }
|
||||
.comparison-card .subtitle { font-size: 0.9rem; color: var(--accent-light); margin-bottom: 16px; }
|
||||
.comparison-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
|
||||
|
||||
.use-case-tag {
|
||||
display: inline-block;
|
||||
background: rgba(0, 136, 204, 0.15);
|
||||
color: var(--accent-light);
|
||||
padding: 4px 10px;
|
||||
border-radius: 6px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
margin-right: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* --- Hardware Cards --- */
|
||||
.hardware-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.hardware-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.3s ease, transform 0.3s ease;
|
||||
}
|
||||
.hardware-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); }
|
||||
|
||||
.hardware-card-header {
|
||||
background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
|
||||
padding: 24px;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
text-align: center;
|
||||
}
|
||||
.hardware-card-header .hw-icon { font-size: 3rem; margin-bottom: 12px; }
|
||||
.hardware-card-header h3 { font-size: 1.2rem; margin-bottom: 4px; }
|
||||
.hardware-card-header .hw-subtitle { font-size: 0.85rem; color: var(--text-muted); }
|
||||
|
||||
.hardware-card-body { padding: 24px; }
|
||||
.hardware-card-body p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
|
||||
|
||||
.spec-list { list-style: none; margin: 16px 0; }
|
||||
.spec-list li {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 8px 0;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.spec-list li:last-child { border-bottom: none; }
|
||||
.spec-list .spec-label { color: var(--text-muted); }
|
||||
.spec-list .spec-value { color: var(--text-primary); font-weight: 500; }
|
||||
|
||||
.price-range {
|
||||
text-align: center;
|
||||
margin-top: 16px;
|
||||
padding-top: 16px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
}
|
||||
.price-range .label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
|
||||
.price-range .price { font-size: 1.3rem; font-weight: 700; color: var(--accent-light); }
|
||||
|
||||
/* --- Stack Diagram --- */
|
||||
.stack-diagram {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 16px;
|
||||
padding: 40px;
|
||||
margin: 32px 0;
|
||||
}
|
||||
.stack-diagram h3 { text-align: center; font-size: 1.2rem; margin-bottom: 32px; color: var(--text-secondary); }
|
||||
|
||||
.stack-layers {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.stack-layer { display: flex; align-items: center; gap: 16px; }
|
||||
.layer-label { width: 120px; font-size: 0.8rem; color: var(--text-muted); text-align: right; flex-shrink: 0; }
|
||||
.layer-content {
|
||||
flex: 1;
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
padding: 16px 20px;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.layer-content:hover { border-color: var(--accent-blue); transform: scale(1.02); }
|
||||
.layer-content.highlight { background: rgba(0, 136, 204, 0.15); border-color: var(--accent-blue); }
|
||||
.layer-content .layer-name { font-size: 1rem; color: var(--text-primary); margin-bottom: 4px; }
|
||||
.layer-content .layer-tech { font-size: 0.8rem; color: var(--text-muted); }
|
||||
|
||||
/* --- Network Flow --- */
|
||||
.network-flow {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
flex-wrap: wrap;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.flow-node {
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 10px;
|
||||
padding: 16px 24px;
|
||||
text-align: center;
|
||||
min-width: 120px;
|
||||
}
|
||||
.flow-node .node-icon { font-size: 1.5rem; margin-bottom: 8px; }
|
||||
.flow-node .node-label { font-size: 0.85rem; color: var(--text-primary); font-weight: 500; }
|
||||
.flow-node .node-tech { font-size: 0.75rem; color: var(--text-muted); }
|
||||
|
||||
.flow-arrow { font-size: 1.2rem; color: var(--accent-blue); }
|
||||
|
||||
/* --- 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; }
|
||||
|
||||
/* --- Responsive --- */
|
||||
@media (max-width: 900px) {
|
||||
.toc-links { flex-direction: column; gap: 8px; }
|
||||
.layer-label { width: 80px; font-size: 0.7rem; }
|
||||
.network-flow { flex-direction: column; }
|
||||
.flow-arrow { transform: rotate(90deg); }
|
||||
.cta-button-secondary { margin-left: 0; margin-top: 16px; display: block; }
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.page-header { padding: 120px 0 40px; }
|
||||
.info-card { padding: 24px; }
|
||||
.content-section { padding: 60px 0; }
|
||||
}
|
||||
|
||||
/* --- 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-technologiak">
|
||||
<nav>
|
||||
<div class="container">
|
||||
<a href="/" class="logo">
|
||||
@@ -633,7 +100,7 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">📦</span> Mi az a konténer?</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-package"/></svg></span> Mi az a konténer?</h3>
|
||||
<p>Képzeld el, hogy minden alkalmazás egy saját, elszigetelt „dobozban" fut. Ez a doboz tartalmazza az alkalmazást és minden függőségét – így garantáltan ugyanúgy működik bárhol, bármilyen szerveren.</p>
|
||||
<p>A konténerek (Docker) forradalmasították a szerverüzemeltetést: egyszerűbb telepítés, könnyebb frissítés, és megbízhatóbb működés.</p>
|
||||
|
||||
@@ -644,7 +111,7 @@
|
||||
|
||||
<div class="comparison-grid">
|
||||
<div class="comparison-card">
|
||||
<div class="card-icon">🖥️</div>
|
||||
<div class="card-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-monitor"/></svg></div>
|
||||
<h3>Hagyományos telepítés</h3>
|
||||
<div class="subtitle">„Közvetlenül a rendszerre"</div>
|
||||
<p>Az alkalmazások közvetlenül az operációs rendszerre települnek. Ütközhetnek egymással, nehéz eltávolítani őket.</p>
|
||||
@@ -657,7 +124,7 @@
|
||||
</div>
|
||||
|
||||
<div class="comparison-card recommended">
|
||||
<div class="card-icon">🐳</div>
|
||||
<div class="card-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-container"/></svg></div>
|
||||
<h3>Konténerizált telepítés</h3>
|
||||
<div class="subtitle">Docker / Podman</div>
|
||||
<p>Minden alkalmazás elszigetelten fut. Tiszta, rendezett, könnyen kezelhető rendszer.</p>
|
||||
@@ -681,7 +148,7 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">🎯</span> Mit csinál a Felhő Felügyelő?</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-target"/></svg></span> Mit csinál a Felhő Felügyelő?</h3>
|
||||
<p>A Felhő Felügyelő minden Felhom dobozon ott van: ez a magyar nyelvű kezelőfelület, amely a Proxmox alapra épülő rendszeredet vezérli. Egy kimondottan otthoni szerverekre tervezett felület, ahol pár kattintással telepíthetsz alkalmazásokat, és nem kell parancssorhoz nyúlnod — a háttérben a Docker és a Proxmox dolgozik helyetted.</p>
|
||||
|
||||
<ul class="feature-list">
|
||||
@@ -750,16 +217,16 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">🔮</span> Mi az a Proxmox?</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-layers"/></svg></span> Mi az a Proxmox?</h3>
|
||||
<p>A Proxmox VE egy ingyenes, professzionális virtualizációs platform — ugyanaz a fajta technológia, amelyet adatközpontok és cégek használnak. Ez a Felhom rendszerek alapja: erre építünk minden gépet, és erre települ az izolált rendszerkörnyezet, amelyben az alkalmazásaid futnak.</p>
|
||||
|
||||
<div class="highlight-box">
|
||||
<p>🧱 <strong>Az alap, nem opció:</strong> A Proxmox minden Felhom dobozon ott van. Nem kell róla tudnod és nem kell vele foglalkoznod — csendben a háttérben dolgozik, és ez teszi a rendszeredet biztonságossá és menthetővé.</p>
|
||||
<p><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-layers"/></svg> <strong>Az alap, nem opció:</strong> A Proxmox minden Felhom dobozon ott van. Nem kell róla tudnod és nem kell vele foglalkoznod — csendben a háttérben dolgozik, és ez teszi a rendszeredet biztonságossá és menthetővé.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">🎯</span> Mit ad neked a Proxmox alap?</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-target"/></svg></span> Mit ad neked a Proxmox alap?</h3>
|
||||
|
||||
<ul class="feature-list">
|
||||
<li><strong>Pillanatkép minden változtatás előtt</strong> – frissítés vagy beállítás előtt a rendszer pillanatképet készít, így bármi gond esetén pillanatok alatt visszaállunk az előző állapotra</li>
|
||||
@@ -784,16 +251,16 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">🚀</span> Mi az a Kubernetes?</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-rocket"/></svg></span> Mi az a Kubernetes?</h3>
|
||||
<p>A Kubernetes (k8s) egy konténer „orkesztrátor" – automatikusan kezeli, hogy hol és hogyan fussanak az alkalmazásaid. Ha egy szerver meghibásodik, automatikusan áthelyezi a szolgáltatásokat egy másikra.</p>
|
||||
|
||||
<div class="highlight-box">
|
||||
<p>🏢 <strong>Üzleti / igény szerint:</strong> Ez nem otthoni alapfunkció és nem a Felhő Felügyelő alternatívája — a több gépből álló, magas rendelkezésre állású (HA) fürt egy külön, kérésre kiépített üzleti megoldás. Otthoni használatra a Proxmox alapra épülő Felhő Felügyelő a megfelelő választás.</p>
|
||||
<p><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-building-2"/></svg> <strong>Üzleti / igény szerint:</strong> Ez nem otthoni alapfunkció és nem a Felhő Felügyelő alternatívája — a több gépből álló, magas rendelkezésre állású (HA) fürt egy külön, kérésre kiépített üzleti megoldás. Otthoni használatra a Proxmox alapra épülő Felhő Felügyelő a megfelelő választás.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">🎯</span> Mikor érdemes Kubernetes-t használni?</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-target"/></svg></span> Mikor érdemes Kubernetes-t használni?</h3>
|
||||
|
||||
<ul class="feature-list">
|
||||
<li><strong>Több szerver (node)</strong> – 2+ gép együttműködése</li>
|
||||
@@ -805,7 +272,7 @@
|
||||
|
||||
<div class="comparison-grid">
|
||||
<div class="comparison-card recommended">
|
||||
<div class="card-icon">🏠</div>
|
||||
<div class="card-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-home"/></svg></div>
|
||||
<h3>k3s</h3>
|
||||
<div class="subtitle">Lightweight Kubernetes</div>
|
||||
<p>Könnyűsúlyú Kubernetes disztribúció — kis, több gépből álló üzleti fürtökhöz, kérésre.</p>
|
||||
@@ -816,7 +283,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
<div class="comparison-card">
|
||||
<div class="card-icon">🏢</div>
|
||||
<div class="card-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-building-2"/></svg></div>
|
||||
<h3>Teljes Kubernetes</h3>
|
||||
<div class="subtitle">kubeadm / RKE2</div>
|
||||
<p>Enterprise-grade megoldás nagyobb infrastruktúrához.</p>
|
||||
@@ -841,23 +308,23 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">🔄</span> Reverse Proxy</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-rotate-cw"/></svg></span> Reverse Proxy</h3>
|
||||
<p>A reverse proxy egy „kapus", aki fogadja a beérkező kéréseket és továbbítja a megfelelő alkalmazáshoz. Emellett kezeli a HTTPS titkosítást is.</p>
|
||||
|
||||
<div class="network-flow">
|
||||
<div class="flow-node">
|
||||
<div class="node-icon">🌍</div>
|
||||
<div class="node-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-globe"/></svg></div>
|
||||
<div class="node-label">Internet</div>
|
||||
</div>
|
||||
<div class="flow-arrow">→</div>
|
||||
<div class="flow-node">
|
||||
<div class="node-icon">🔐</div>
|
||||
<div class="node-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-lock"/></svg></div>
|
||||
<div class="node-label">Reverse Proxy</div>
|
||||
<div class="node-tech">Traefik / Nginx</div>
|
||||
</div>
|
||||
<div class="flow-arrow">→</div>
|
||||
<div class="flow-node">
|
||||
<div class="node-icon">📦</div>
|
||||
<div class="node-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-package"/></svg></div>
|
||||
<div class="node-label">Alkalmazás</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -870,7 +337,7 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<h3><span class="icon">🛡️</span> Tűzfal és védelem</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-shield"/></svg></span> Tűzfal és védelem</h3>
|
||||
<ul class="feature-list">
|
||||
<li><strong>UFW tűzfal</strong> – csak a szükséges portok nyitva</li>
|
||||
<li><strong>Fail2ban</strong> – brute-force támadások blokkolása</li>
|
||||
@@ -891,7 +358,7 @@
|
||||
|
||||
<div class="comparison-grid">
|
||||
<div class="comparison-card">
|
||||
<div class="card-icon">⚡</div>
|
||||
<div class="card-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-zap"/></svg></div>
|
||||
<h3>SSD (NVMe/SATA)</h3>
|
||||
<div class="subtitle">Gyors tárolás</div>
|
||||
<ul class="feature-list">
|
||||
@@ -901,7 +368,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
<div class="comparison-card">
|
||||
<div class="card-icon">🗄️</div>
|
||||
<div class="card-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-database"/></svg></div>
|
||||
<h3>HDD</h3>
|
||||
<div class="subtitle">Nagy kapacitás</div>
|
||||
<ul class="feature-list">
|
||||
@@ -913,11 +380,11 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card" style="margin-top: 32px;">
|
||||
<h3><span class="icon">🔄</span> RAID – adatvédelem</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-rotate-cw"/></svg></span> RAID – adatvédelem</h3>
|
||||
<p>A RAID több merevlemezt fog össze, hogy védjen az adatvesztés ellen. Ha egy lemez meghibásodik, az adatok nem vesznek el.</p>
|
||||
|
||||
<div class="warning-box">
|
||||
<p>⚠️ <strong>A RAID nem backup!</strong> Véd a hardver meghibásodás ellen, de nem a véletlen törlés vagy zsarolóvírus ellen. Mindig legyen külön mentés!</p>
|
||||
<p><svg class="ico" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-triangle-alert"/></svg> <strong>A RAID nem backup!</strong> Véd a hardver meghibásodás ellen, de nem a véletlen törlés vagy zsarolóvírus ellen. Mindig legyen külön mentés!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -934,7 +401,7 @@
|
||||
<div class="hardware-grid">
|
||||
<div class="hardware-card">
|
||||
<div class="hardware-card-header">
|
||||
<div class="hw-icon">📦</div>
|
||||
<div class="hw-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-package"/></svg></div>
|
||||
<h3>Mini PC + NAS</h3>
|
||||
<div class="hw-subtitle">Kezdő / Otthoni</div>
|
||||
</div>
|
||||
@@ -955,7 +422,7 @@
|
||||
|
||||
<div class="hardware-card">
|
||||
<div class="hardware-card-header">
|
||||
<div class="hw-icon">🗼</div>
|
||||
<div class="hw-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-radio-tower"/></svg></div>
|
||||
<h3>Tower szerver</h3>
|
||||
<div class="hw-subtitle">Haladó / Családi</div>
|
||||
</div>
|
||||
@@ -976,7 +443,7 @@
|
||||
|
||||
<div class="hardware-card">
|
||||
<div class="hardware-card-header">
|
||||
<div class="hw-icon">🏢</div>
|
||||
<div class="hw-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-building-2"/></svg></div>
|
||||
<h3>Rack szerver</h3>
|
||||
<div class="hw-subtitle">Üzleti / igény szerint</div>
|
||||
</div>
|
||||
@@ -997,7 +464,7 @@
|
||||
|
||||
<div class="hardware-card">
|
||||
<div class="hardware-card-header">
|
||||
<div class="hw-icon">🔗</div>
|
||||
<div class="hw-icon"><svg class="ico-tile" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-link"/></svg></div>
|
||||
<h3>Multi-node cluster</h3>
|
||||
<div class="hw-subtitle">Üzleti / igény szerint (HA)</div>
|
||||
</div>
|
||||
@@ -1018,7 +485,7 @@
|
||||
</div>
|
||||
|
||||
<div class="info-card" style="margin-top: 48px;">
|
||||
<h3><span class="icon">💡</span> Melyiket válaszd?</h3>
|
||||
<h3><span class="icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-lightbulb"/></svg></span> Melyiket válaszd?</h3>
|
||||
<div class="highlight-box">
|
||||
<p><strong>Tanácsunk:</strong> Kezdj kicsiben! Egy jó mini PC elegendő a legtöbb otthoni igényhez, és később bővítheted. A rack szerver és a multi-node fürt üzleti / igény szerinti konfiguráció — otthonra ritkán szükséges.</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user