Template:Main Page/styles.css

Revision as of 20:08, 31 January 2026 by Aurelianus (talk | contribs)
/* Genel sıfırlama, çünkü tarayıcılara güven olmaz */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #202122;
}

/* Ana sayfa kapsayıcı */
.homepage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Logo */
.homepage-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
}

/* Site adı */
.homepage-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
}

/* Slogan */
.homepage-tagline {
  font-size: 1rem;
  color: #54595d;
  margin: 8px 0 28px;
}

/* Arama alanı */
.homepage-search-input {
  width: 360px;
  max-width: 90%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #a2a9b1;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.homepage-search-input:focus {
  border-color: #3366cc;
  box-shadow: 0 0 0 2px rgba(51,102,204,0.15);
}

/* Enter ipucu */
.homepage-search-hint {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #72777d;
}

/* Mobil */
@media (max-width: 480px) {
  .homepage-title {
    font-size: 1.8rem;
  }
}