Main Page: Difference between revisions
From GFL2 Wiki
More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<html> | <html> | ||
<style> | <style> | ||
/* Ana sayfa başlığını ve sekmeleri gizle */ | /* Ana sayfa başlığını ve sekmeleri gizle */ | ||
#firstHeading, #p-views { | #firstHeading, #p-views { | ||
Line 24: | Line 16: | ||
text-align: center; | text-align: center; | ||
padding: 60px 20px; | padding: 60px 20px; | ||
background-color: #ffffff; | background-color: var(--cdx-color-background-secondary, #ffffff); /* TEMA RENGİ */ | ||
border: 1px solid var(--cdx-color-border-subtle, #e3e6e8); /* TEMA RENGİ */ | |||
border-radius: 12px; | border-radius: 12px; | ||
} | } | ||
.portal-hero h1 { | .portal-hero h1 { | ||
font-size: 3em; | font-size: 3em; | ||
font-weight: 700; | font-weight: 700; | ||
color: #202122; | color: var(--cdx-color-text-primary, #202122); /* TEMA RENGİ */ | ||
margin: 0; | margin: 0; | ||
} | } | ||
.portal-hero p { | .portal-hero p { | ||
font-size: 1.1em; | font-size: 1.1em; | ||
color: #54595d; | color: var(--cdx-color-text-secondary, #54595d); /* TEMA RENGİ */ | ||
margin-top: 10px; | margin-top: 10px; | ||
margin-bottom: 30px; | margin-bottom: 30px; | ||
} | } | ||
.portal-search-form { | .portal-search-form { | ||
display: flex; | display: flex; | ||
Line 51: | Line 42: | ||
padding: 10px 15px; | padding: 10px 15px; | ||
font-size: 1em; | font-size: 1em; | ||
border: 1px solid # | border: 1px solid var(--cdx-color-border, #a2a9b1); /* TEMA RENGİ */ | ||
border-right: none; | border-right: none; | ||
border-radius: 8px 0 0 8px; | border-radius: 8px 0 0 8px; | ||
background-color: var(--cdx-color-background-primary, #f8f9fa); /* TEMA RENGİ */ | |||
color: var(--cdx-color-text-primary, #202122); /* TEMA RENGİ */ | |||
} | } | ||
.portal-search-button { | .portal-search-button { | ||
padding: 10px 20px; | padding: 10px 20px; | ||
font-size: 1em; | font-size: 1em; | ||
border: 1px solid #3367d6; | border: 1px solid var(--cdx-color-primary, #3367d6); /* TEMA RENGİ */ | ||
background-color: #3367d6; | background-color: var(--cdx-color-primary, #3367d6); /* TEMA RENGİ */ | ||
color: | color: var(--cdx-color-background-primary, #ffffff); /* TEMA RENGİ */ | ||
cursor: pointer; | cursor: pointer; | ||
border-radius: 0 8px 8px 0; | border-radius: 0 8px 8px 0; | ||
} | } | ||
/* Wiki kutucukları bölümü */ | /* Wiki kutucukları bölümü */ | ||
Line 73: | Line 65: | ||
font-size: 2em; | font-size: 2em; | ||
font-weight: 700; | font-weight: 700; | ||
color: #202122; | color: var(--cdx-color-text-primary, #202122); /* TEMA RENGİ */ | ||
text-align: center; | text-align: center; | ||
margin-bottom: 30px; | margin-bottom: 30px; | ||
Line 85: | Line 77: | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
background-color: #ffffff; | background-color: var(--cdx-color-background-secondary, #ffffff); /* TEMA RENGİ */ | ||
border: 1px solid var(--cdx-color-border-subtle, #e3e6e8); /* TEMA RENGİ */ | |||
border-radius: 12px; | border-radius: 12px; | ||
overflow: hidden; | overflow: hidden; | ||
text-decoration: none; | text-decoration: none; | ||
transition: all 0.2s ease-in-out; | transition: all 0.2s ease-in-out; | ||
} | } | ||
.wiki-box:hover { | .wiki-box:hover { | ||
transform: translateY(-5px); | transform: translateY(-5px); | ||
border-color: var(--cdx-color-primary, #3367d6); /* TEMA RENGİ */ | |||
} | } | ||
.wiki-box-image { | .wiki-box-image { | ||
Line 101: | Line 93: | ||
background-size: cover; | background-size: cover; | ||
background-position: center; | background-position: center; | ||
border-bottom: 1px solid var(--cdx-color-border-subtle, #e3e6e8); /* TEMA RENGİ */ | |||
} | } | ||
.wiki-box-content { | .wiki-box-content { | ||
Line 108: | Line 101: | ||
.wiki-box-content h3 { | .wiki-box-content h3 { | ||
font-size: 1.4em; | font-size: 1.4em; | ||
color: #202122; | color: var(--cdx-color-text-primary, #202122); /* TEMA RENGİ */ | ||
margin: 0 0 10px 0; | margin: 0 0 10px 0; | ||
} | } | ||
.wiki-box-content p { | .wiki-box-content p { | ||
font-size: 0.95em; | font-size: 0.95em; | ||
color: #54595d; | color: var(--cdx-color-text-secondary, #54595d); /* TEMA RENGİ */ | ||
line-height: 1.5; | line-height: 1.5; | ||
} | } | ||
Line 123: | Line 116: | ||
<h1>GFL2 Wiki Portalı</h1> | <h1>GFL2 Wiki Portalı</h1> | ||
<p>Tüm oyun evrenleri parmaklarınızın ucunda.</p> | <p>Tüm oyun evrenleri parmaklarınızın ucunda.</p> | ||
<form action="/index.php" class="portal-search-form"> | <form action="/index.php" class="portal-search-form"> | ||
<input type="hidden" name="title" value="Special:Search"> | <input type="hidden" name="title" value="Special:Search"> | ||
Line 129: | Line 121: | ||
<button type="submit" class="portal-search-button">Ara</button> | <button type="submit" class="portal-search-button">Ara</button> | ||
</form> | </form> | ||
</div> | |||
<div class="portal-grid-section"> | <div class="portal-grid-section"> |
Revision as of 13:51, 12 June 2025
GFL2 Wiki Portalı
Tüm oyun evrenleri parmaklarınızın ucunda.
Oyun Wikileri
Elden Ring Wiki
Lands Between'in sırlarını, boss'larını ve ekipmanlarını keşfedin. Tüm rehberler ve detaylar burada.
Valorant Wiki
Ajanlar, yetenekler, haritalar ve stratejiler. Rekabete bir adım önde başlamak için ihtiyacınız olan her şey.
New Game Wiki
Yeni eklediğiniz oyun wikisi için açıklama metni. Bu kutuyu kopyalayarak yeni wikiler ekleyebilirsiniz.