Main Page: Difference between revisions
From GFL2 Wiki
More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<html> | <html> | ||
<style> | <style> | ||
/* Sayfanın genel arka planı ve yazı rengi | /* Sayfanın genel arka planı ve yazı rengi */ | ||
body { | |||
background-color: #f4f6f8; /* Açık gri bir arka plan */ | |||
} | |||
.mw-body { | .mw-body { | ||
background-color: | background-color: transparent !important; | ||
border: none !important; | |||
} | } | ||
/* Ana sayfa başlığını ve sekmeleri gizle */ | /* Ana sayfa başlığını ve sekmeleri gizle */ | ||
Line 12: | Line 14: | ||
} | } | ||
/* Ana sayfa konteyneri */ | /* Ana sayfa konteyneri */ | ||
. | .portal-container { | ||
max-width: | max-width: 1100px; | ||
margin: 20px auto; | margin: 20px auto; | ||
padding: 10px; | padding: 10px; | ||
} | } | ||
/* ... ( | /* Üst karşılama ve arama bölümü */ | ||
.portal-hero { | |||
text-align: center; | |||
padding: 60px 20px; | |||
background-color: #ffffff; | |||
border-radius: 12px; | |||
box-shadow: 0 4px 12px rgba(0,0,0,0.05); | |||
} | |||
.portal-hero h1 { | |||
font-size: 3em; | |||
font-weight: 700; | |||
color: #202122; | |||
margin: 0; | |||
} | |||
.portal-hero p { | |||
font-size: 1.1em; | |||
color: #54595d; | |||
margin-top: 10px; | |||
margin-bottom: 30px; | |||
} | |||
.portal-search .inputbox { | |||
transform: scale(1.1); /* Arama kutusunu biraz büyütür */ | |||
} | |||
.portal-search .inputbox__button { /* Arama butonunu özelleştirme */ | |||
background-color: #3367d6 !important; | |||
color: white !important; | |||
border-radius: 0 5px 5px 0 !important; | |||
} | |||
/* Wiki kutucukları bölümü */ | |||
.portal-grid-section { | |||
margin-top: 40px; | |||
} | |||
.portal-grid-section h2 { | |||
font-size: 2em; | |||
font-weight: 700; | |||
color: #202122; | |||
text-align: center; | |||
margin-bottom: 30px; | |||
} | |||
.portal-wikigrid { | |||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); | |||
gap: 25px; | |||
} | |||
.wiki-box { | |||
display: flex; | |||
flex-direction: column; | |||
background-color: #ffffff; | |||
border-radius: 12px; | |||
overflow: hidden; | |||
text-decoration: none; | |||
box-shadow: 0 4px 12px rgba(0,0,0,0.05); | |||
transition: all 0.2s ease-in-out; | |||
} | |||
.wiki-box:hover { | |||
transform: translateY(-5px); | |||
box-shadow: 0 6px 20px rgba(0,0,0,0.08); | |||
} | |||
.wiki-box-image { | |||
width: 100%; | |||
height: 160px; | |||
background-size: cover; | |||
background-position: center; | |||
} | |||
.wiki-box-content { | |||
padding: 20px; | |||
flex-grow: 1; | |||
} | |||
.wiki-box-content h3 { | |||
font-size: 1.4em; | |||
color: #202122; | |||
margin: 0 0 10px 0; | |||
} | |||
.wiki-box-content p { | |||
font-size: 0.95em; | |||
color: #54595d; | |||
line-height: 1.5; | |||
} | |||
</style> | </style> | ||
<div class=" | <div class="portal-container"> | ||
<div class=" | <div class="portal-hero"> | ||
<h1> | <h1>GFL2 Wiki Portalı</h1> | ||
<p>Tüm oyun evrenleri parmaklarınızın ucunda.</p> | |||
<div class="portal-search"> | |||
{{#tag:inputbox| | |||
type=search | |||
|width=55 | |||
|buttonlabel=Ara | |||
|placeholder=Ana wikide bilgi ara... | |||
}} | |||
</div> | </div> | ||
</div> | </div> | ||
<div class=" | <div class="portal-grid-section"> | ||
<a href="/ | <h2>Oyun Wikileri</h2> | ||
< | <div class="portal-wikigrid"> | ||
<a href="/eldenring/" class="wiki-box"> | |||
<div class="wiki-box-image" style="background-image: url('https://image.api.playstation.com/vulcan/ap/rnd/202108/0410/2odx627t3vt4D5p411aMAf0j.jpg');"></div> | |||
<div class="wiki-box-content"> | |||
<h3>Elden Ring Wiki</h3> | |||
<p>Lands Between'in sırlarını, boss'larını ve ekipmanlarını keşfedin. Tüm rehberler ve detaylar burada.</p> | |||
</div> | |||
</a> | |||
<a href="/valorant/" class="wiki-box"> | |||
<div class="wiki-box-image" style="background-image: url('https://cdn1.dotesports.com/wp-content/uploads/2023/03/06093849/valorant-logo-2.jpg');"></div> | |||
<div class="wiki-box-content"> | |||
<h3>Valorant Wiki</h3> | |||
<p>Ajanlar, yetenekler, haritalar ve stratejiler. Rekabete bir adım önde başlamak için ihtiyacınız olan her şey.</p> | |||
</div> | |||
</a> | |||
<a href="/newgame/" class="wiki-box"> | |||
<div class="wiki-box-image" style="background-image: url('https://via.placeholder.com/400x200/cccccc/969696?text=Oyun+Görseli');"></div> | |||
<div class="wiki-box-content"> | |||
<h3>New Game Wiki</h3> | |||
<p>Yeni eklediğiniz oyun wikisi için açıklama metni. Bu kutuyu kopyalayarak yeni wikiler ekleyebilirsiniz.</p> | |||
</div> | |||
</a> | |||
</div> | </div> | ||
</div> | |||
</div> | </div> | ||
</html> | </html> |
Revision as of 13:15, 12 June 2025
GFL2 Wiki Portalı
Tüm oyun evrenleri parmaklarınızın ucunda.
{{#tag:inputbox|
type=search
|width=55
|buttonlabel=Ara
|placeholder=Ana wikide bilgi ara...
}}
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.