MediaWiki:Timeless.css: Revizyonlar arasındaki fark

FM Wiki sitesinden
Gezinti kısmına atla Arama kısmına atla
"→‎All CSS here will be loaded for users of the Timeless skin: →‎Timeless FM arkaplan: body { background: linear-gradient( rgba(245, 247, 250, 0.88), rgba(245, 247, 250, 0.88) ), url("/resources/assets/fm-bg.png"); background-repeat: no-repeat; background-attachment: fixed; background-size: cover; background-position: center; }" içeriğiyle yeni sayfa oluşturdu
 
Değişiklik özeti yok
 
(Aynı kullanıcının aradaki diğer 12 değişikliği gösterilmiyor)
1. satır: 1. satır:
/* All CSS here will be loaded for users of the Timeless skin */
/*=====================================
/* Timeless FM arkaplan */
  1. Genel Temel Ayarlar (Body & Font)
=======================================*/
body {
body {
background:
    /* Hafif gri arka plan, FM'in genel zeminini yansıtır */
linear-gradient(
    background-color: #f0f0f0;
rgba(245, 247, 250, 0.88),
    /* Daha okunaklı, FM'e yakın font ailesi */
rgba(245, 247, 250, 0.88)
    font-family: "Lucida Grande", "Lucida Sans Unicode", "DejaVu Sans", sans-serif;
),
    color: #333333;
url("/resources/assets/fm-bg.png");
}
background-repeat: no-repeat;
 
background-attachment: fixed;
/* Tüm wrapper'ı (sayfa içeriği dahil) ortalayalım ve genişlik verelim */
background-size: cover;
#fmwiki-wrapper {
background-position: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
 
/*=====================================
  2. Header (Üst Alan)
=======================================*/
#fmwiki-header {
    /* FM'in ikonik Koyu Mavi/Lacivert tonu */
    background-color: #27496d;
    color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
 
/* Site Başlığı (FM Wiki) */
#fmwiki-header .site-title a {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}
 
#fmwiki-header .site-title a:hover {
    color: #ffcc00; /* Sarı vurgu */
}
 
/* Kullanıcı Araçları (Giriş/Admin/vs) */
.personal-tools {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}
 
.personal-tools li {
    display: inline-block;
    margin-left: 15px;
}
 
.personal-tools a {
    color: #e0e0e0;
    text-decoration: none;
}
 
.personal-tools a:hover {
    color: #ffcc00; /* Sarı vurgu */
}
 
/*=====================================
  3. Main Content (İçerik Alanı)
=======================================*/
#fmwiki-content .container {
    padding: 20px;
    clear: both;
}
 
/* Sayfa Başlığı (Anasayfa, Oyuncular) */
#firstHeading {
    color: #27496d; /* Lacivert Başlık */
    border-bottom: 2px solid #66b34f; /* FM Yeşil Alt Çizgi */
    padding-bottom: 5px;
    margin-bottom: 20px;
}
 
/* Sayfa Aksiyonları (Düzenle, Geçmiş vs.) */
.page-actions-wrapper {
    margin-bottom: 15px;
}
 
.page-namespaces,
.page-views,
.page-actions-menu {
    list-style: none;
    padding: 0;
    margin: 0 10px 0 0;
    display: inline-block;
}
 
.page-views li,
.page-namespaces li {
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 5px 10px;
    border-radius: 3px 3px 0 0;
}
 
.page-views li.selected {
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff; /* Seçili sekmenin alt çizgisini kaldır */
}
 
/*=====================================
  4. Footer (Alt Alan)
=======================================*/
#fmwiki-footer {
    background-color: #333333; /* Koyu Gri Footer */
    color: #bbbbbb;
    padding: 20px 0;
    border-top: 5px solid #27496d; /* Lacivert kalın çizgi */
    text-align: center;
}
 
#fmwiki-footer a {
    color: #99ccff;
}
 
#fmwiki-footer a:hover {
    color: #ffffff;
}
}

10.39, 6 Aralık 2025 itibarı ile sayfanın şu anki hâli

/*=====================================
  1. Genel Temel Ayarlar (Body & Font)
=======================================*/
body {
    /* Hafif gri arka plan, FM'in genel zeminini yansıtır */
    background-color: #f0f0f0; 
    /* Daha okunaklı, FM'e yakın font ailesi */
    font-family: "Lucida Grande", "Lucida Sans Unicode", "DejaVu Sans", sans-serif;
    color: #333333;
}

/* Tüm wrapper'ı (sayfa içeriği dahil) ortalayalım ve genişlik verelim */
#fmwiki-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*=====================================
  2. Header (Üst Alan)
=======================================*/
#fmwiki-header {
    /* FM'in ikonik Koyu Mavi/Lacivert tonu */
    background-color: #27496d; 
    color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Site Başlığı (FM Wiki) */
#fmwiki-header .site-title a {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

#fmwiki-header .site-title a:hover {
    color: #ffcc00; /* Sarı vurgu */
}

/* Kullanıcı Araçları (Giriş/Admin/vs) */
.personal-tools {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

.personal-tools li {
    display: inline-block;
    margin-left: 15px;
}

.personal-tools a {
    color: #e0e0e0;
    text-decoration: none;
}

.personal-tools a:hover {
    color: #ffcc00; /* Sarı vurgu */
}

/*=====================================
  3. Main Content (İçerik Alanı)
=======================================*/
#fmwiki-content .container {
    padding: 20px;
    clear: both;
}

/* Sayfa Başlığı (Anasayfa, Oyuncular) */
#firstHeading {
    color: #27496d; /* Lacivert Başlık */
    border-bottom: 2px solid #66b34f; /* FM Yeşil Alt Çizgi */
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Sayfa Aksiyonları (Düzenle, Geçmiş vs.) */
.page-actions-wrapper {
    margin-bottom: 15px;
}

.page-namespaces, 
.page-views, 
.page-actions-menu {
    list-style: none;
    padding: 0;
    margin: 0 10px 0 0;
    display: inline-block;
}

.page-views li,
.page-namespaces li {
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 5px 10px;
    border-radius: 3px 3px 0 0;
}

.page-views li.selected {
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff; /* Seçili sekmenin alt çizgisini kaldır */
}

/*=====================================
  4. Footer (Alt Alan)
=======================================*/
#fmwiki-footer {
    background-color: #333333; /* Koyu Gri Footer */
    color: #bbbbbb;
    padding: 20px 0;
    border-top: 5px solid #27496d; /* Lacivert kalın çizgi */
    text-align: center;
}

#fmwiki-footer a {
    color: #99ccff;
}

#fmwiki-footer a:hover {
    color: #ffffff;
}