Toggle menu
7
27
38
5.2K
Sanarchive
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Main Page/styles.css: Difference between revisions

Template page
[checked revision][checked revision]
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 13: Line 13:


/* ==================================================
/* ==================================================
   WIKIPEDIA TABLO HİSSİ
   KUTULAR
================================================== */
================================================== */
.sa-box {
.sa-box {
Line 23: Line 23:


/* ==================================================
/* ==================================================
   HERO / GİRİŞ
   HERO
================================================== */
================================================== */
.sa-hero {
.sa-hero {
Line 32: Line 32:
   font-size: 2.2em;
   font-size: 2.2em;
   font-weight: 600;
   font-weight: 600;
   margin: 0 0 8px;
   margin-bottom: 8px;
}
}


Line 38: Line 38:
   font-size: 1em;
   font-size: 1em;
   color: #54595d;
   color: #54595d;
   margin: 0 0 12px;
   margin-bottom: 12px;
}
}


/* İstatistikler */
.sa-stats {
.sa-stats {
   font-size: 0.95em;
   font-size: 0.95em;
Line 47: Line 46:


/* ==================================================
/* ==================================================
   İKİ KOLON DÜZEN
   GRID
================================================== */
================================================== */
.sa-grid {
.sa-grid {
Line 64: Line 63:
   BAŞLIKLAR
   BAŞLIKLAR
================================================== */
================================================== */
.sa-box h2 {
.sa-box-title {
   font-size: 1.1em;
   font-size: 1.1em;
   font-weight: bold;
   font-weight: bold;
Line 70: Line 69:
   background-color: #f8f9fa;
   background-color: #f8f9fa;
   padding: 4px 8px;
   padding: 4px 8px;
   margin: 0 0 8px;
   margin-bottom: 8px;
}
}


Line 84: Line 83:
.sa-content {
.sa-content {
   font-size: 0.95em;
   font-size: 0.95em;
}
/* Float temizleme */
.sa-clearfix {
  clear: both;
}
}


Line 94: Line 88:
   MEDYA
   MEDYA
================================================== */
================================================== */
.sa-media img,
.sa-media-item {
.sa-media video {
   max-width: 100%;
   max-width: 100%;
   height: auto;
   height: auto;

Revision as of 20:25, 31 January 2026

/* ==================================================
   ANA KAPSAYICI
================================================== */
.sa-mainpage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Inter, Arial, sans-serif;
  color: #202122;
  line-height: 1.6;
}

/* ==================================================
   KUTULAR
================================================== */
.sa-box {
  background-color: #ffffff;
  border: 1px solid #a2a9b1;
  padding: 16px;
  margin-bottom: 16px;
}

/* ==================================================
   HERO
================================================== */
.sa-hero {
  text-align: center;
}

.sa-title {
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

.sa-tagline {
  font-size: 1em;
  color: #54595d;
  margin-bottom: 12px;
}

.sa-stats {
  font-size: 0.95em;
}

/* ==================================================
   GRID
================================================== */
.sa-grid {
  display: table;
  width: 100%;
  border-spacing: 16px 0;
}

.sa-col {
  display: table-cell;
  vertical-align: top;
  width: 50%;
}

/* ==================================================
   BAŞLIKLAR
================================================== */
.sa-box-title {
  font-size: 1.1em;
  font-weight: bold;
  border: 1px solid #a2a9b1;
  background-color: #f8f9fa;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.sa-later {
  font-size: 0.85em;
  color: #72777d;
  font-weight: normal;
}

/* ==================================================
   İÇERİK
================================================== */
.sa-content {
  font-size: 0.95em;
}

/* ==================================================
   MEDYA
================================================== */
.sa-media-item {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ==================================================
   BANNER
================================================== */
.sa-banner {
  text-align: center;
}

/* ==================================================
   MOBİL
================================================== */
@media (max-width: 800px) {
  .sa-grid {
    display: block;
  }

  .sa-col {
    display: block;
    width: 100%;
  }

  .sa-title {
    font-size: 1.8em;
  }
}