MediaWiki:Common.css: Revizyonlar arasındaki fark
Gezinti kısmına atla
Arama kısmına atla
Değişiklik özeti yok Etiket: Geri alındı |
Değişiklik özeti yok Etiket: Geri alındı |
||
| 1. satır: | 1. satır: | ||
/* | /* === Genel Stil (Kurumsal Hukuk Teması) === */ | ||
body { | body { | ||
background-color: #f8f9fa; | background-color: #f8f9fa; | ||
color: # | color: #1a1a1a; | ||
font-family: "Segoe UI", " | font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif; | ||
line-height: 1.6; | line-height: 1.6; | ||
} | |||
/* Başlıklar */ | |||
h1, h2, h3, h4 { | |||
color: #22335b; | |||
font-weight: 600; | |||
border-bottom: 1px solid #dbe4f3; | |||
padding-bottom: 2px; | |||
} | } | ||
/* Bağlantılar */ | /* Bağlantılar */ | ||
a { color: # | a { | ||
a: | color: #2a4b8d; | ||
text-decoration: none; | |||
} | |||
a:hover { | |||
color: #1d3366; | |||
text-decoration: underline; | |||
} | |||
/* | /* Sidebar ve üst menü */ | ||
. | .vector-menu-content-list a { | ||
color: #22335b; | |||
} | |||
.vector-menu-content-list a:hover { | |||
background-color: #e7ecf5; | |||
} | } | ||
/* | /* Tab menüler */ | ||
.vector-menu-tabs a { | |||
background: #e7ecf5; | |||
border: 1px solid #d0d7e2; | |||
color: #22335b; | |||
} | |||
.vector-menu-tabs a.selected { | |||
background: #ffffff; | |||
border-bottom: 1px solid #ffffff; | |||
} | } | ||
/* | /* === InfoBox Genel Stil === */ | ||
.infobox { | .infobox { | ||
float: right; | float: right; | ||
clear: right; | clear: right; | ||
width: 320px; | |||
width: | |||
font-size: 90%; | font-size: 90%; | ||
border: 1px solid # | border: 1px solid #d0d7e2; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
margin: 0 0 1em 1em; | |||
background: #ffffff; | |||
box-shadow: 0 1px 5px rgba(0,0,0,0.05); | |||
} | } | ||
.infobox caption { | .infobox caption { | ||
background: # | background: #dbe4f3; | ||
color: # | color: #22335b; | ||
font-weight: 600; | font-weight: 600; | ||
border-bottom: 1px solid # | text-align: center; | ||
padding: 6px; | |||
border-bottom: 1px solid #c5d0e0; | |||
} | |||
.infobox th, .infobox td { | |||
border-bottom: 1px solid #e2e6ec; | |||
padding: 4px 6px; | |||
} | } | ||
.infobox th { | .infobox th { | ||
width: 38%; | |||
text-align: left; | |||
background: #eef3fa; | |||
color: #1e1e1e; | |||
} | } | ||
.infobox td { | .infobox td { | ||
background: #ffffff; | background: #ffffff; | ||
} | } | ||
/* Görseller */ | |||
.infobox img { | .infobox img { | ||
border-radius: 4px; | border-radius: 4px; | ||
box-shadow: 0 | box-shadow: 0 1px 4px rgba(0,0,0,0.1); | ||
max-width: 250px; | |||
} | } | ||
/* === Görev Kutusu (Infobox Görev) === */ | |||
/* Görev Infobox | |||
.questbox caption { | .questbox caption { | ||
background: # | background: #fff4cf; | ||
color: # | color: #222; | ||
} | } | ||
.questbox th { | .questbox th { | ||
background: #fff8dc; | background: #fff8dc; | ||
} | } | ||
. | |||
/* === Hukuk Özel Kutuları === */ | |||
.lawbox caption { | |||
background: #e8f0ff; | |||
color: #1f3a6d; | |||
} | |||
.lawbox th { | |||
background: #f1f5ff; | |||
} | |||
.lawbox td { | |||
background: #ffffff; | background: #ffffff; | ||
} | |||
/* === Tablo ve kutular === */ | |||
table { | |||
border-collapse: collapse; | |||
} | |||
th, td { | |||
padding: 5px; | |||
} | |||
/* === Alt bilgi ve meta alanlar === */ | |||
#footer, .printfooter { | |||
color: #666; | |||
border-top: 1px solid #dbe4f3; | |||
} | |||
/* === Kod kutuları === */ | |||
pre, code { | |||
background: #f1f3f5; | |||
border: 1px solid #dee2e6; | |||
border-radius: 4px; | |||
padding: 4px 6px; | |||
font-family: "Consolas", monospace; | |||
} | |||
/* === Duyurular / Banner === */ | |||
.announcement-banner { | |||
background: linear-gradient(90deg, #22335b, #4c6ef5); | |||
color: #fff; | |||
text-align: center; | |||
padding: 0.5em; | |||
font-weight: 500; | |||
letter-spacing: 0.5px; | |||
border-radius: 0 0 6px 6px; | |||
} | } | ||
14.40, 10 Kasım 2025 tarihindeki hâli
/* === Genel Stil (Kurumsal Hukuk Teması) === */
body {
background-color: #f8f9fa;
color: #1a1a1a;
font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
line-height: 1.6;
}
/* Başlıklar */
h1, h2, h3, h4 {
color: #22335b;
font-weight: 600;
border-bottom: 1px solid #dbe4f3;
padding-bottom: 2px;
}
/* Bağlantılar */
a {
color: #2a4b8d;
text-decoration: none;
}
a:hover {
color: #1d3366;
text-decoration: underline;
}
/* Sidebar ve üst menü */
.vector-menu-content-list a {
color: #22335b;
}
.vector-menu-content-list a:hover {
background-color: #e7ecf5;
}
/* Tab menüler */
.vector-menu-tabs a {
background: #e7ecf5;
border: 1px solid #d0d7e2;
color: #22335b;
}
.vector-menu-tabs a.selected {
background: #ffffff;
border-bottom: 1px solid #ffffff;
}
/* === InfoBox Genel Stil === */
.infobox {
float: right;
clear: right;
width: 320px;
font-size: 90%;
border: 1px solid #d0d7e2;
border-collapse: collapse;
margin: 0 0 1em 1em;
background: #ffffff;
box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}
.infobox caption {
background: #dbe4f3;
color: #22335b;
font-weight: 600;
text-align: center;
padding: 6px;
border-bottom: 1px solid #c5d0e0;
}
.infobox th, .infobox td {
border-bottom: 1px solid #e2e6ec;
padding: 4px 6px;
}
.infobox th {
width: 38%;
text-align: left;
background: #eef3fa;
color: #1e1e1e;
}
.infobox td {
background: #ffffff;
}
/* Görseller */
.infobox img {
border-radius: 4px;
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
max-width: 250px;
}
/* === Görev Kutusu (Infobox Görev) === */
.questbox caption {
background: #fff4cf;
color: #222;
}
.questbox th {
background: #fff8dc;
}
/* === Hukuk Özel Kutuları === */
.lawbox caption {
background: #e8f0ff;
color: #1f3a6d;
}
.lawbox th {
background: #f1f5ff;
}
.lawbox td {
background: #ffffff;
}
/* === Tablo ve kutular === */
table {
border-collapse: collapse;
}
th, td {
padding: 5px;
}
/* === Alt bilgi ve meta alanlar === */
#footer, .printfooter {
color: #666;
border-top: 1px solid #dbe4f3;
}
/* === Kod kutuları === */
pre, code {
background: #f1f3f5;
border: 1px solid #dee2e6;
border-radius: 4px;
padding: 4px 6px;
font-family: "Consolas", monospace;
}
/* === Duyurular / Banner === */
.announcement-banner {
background: linear-gradient(90deg, #22335b, #4c6ef5);
color: #fff;
text-align: center;
padding: 0.5em;
font-weight: 500;
letter-spacing: 0.5px;
border-radius: 0 0 6px 6px;
}