Şablon:AnaBanner/styles.css
Gezinti kısmına atla
Arama kısmına atla
/* ================================
Hukukipedia Ana Sayfa Banner CSS
TemplateStyles uyumlu sürüm
================================ */
/* Genel banner alanı */
.hp-banner {
display: flex;
justify-content: space-between;
align-items: center;
padding: 28px 35px;
border-radius: 10px;
background: linear-gradient(90deg, #f8fafc, #f3f6fb);
border: 1px solid #d8e1ee;
box-shadow: 0 2px 5px rgba(0,0,0,0.04);
position: relative;
overflow: hidden;
margin-bottom: 25px;
min-height: 110px;
}
/* Arka plandaki watermark */
.hp-banner::after {
content: "§ LAW";
position: absolute;
right: 25px;
bottom: -5px;
font-size: 85px;
font-weight: 700;
color: rgba(30, 55, 110, 0.06); /* Kurumsal koyu mavi */
/*pointer-events: none;*/
user-select: none;
}
/* Sol taraf */
.hp-banner-left h1 {
margin: 0;
font-size: 1.9rem;
font-weight: 600;
color: #1e3a8a; /* Derin mavi */
font-family: "Nimbus Roman No9 L", "Times New Roman", Times, serif;
}
/* Alt başlık */
.hp-banner-sub {
margin-top: 6px;
font-size: 1.05rem;
color: #34425f;
font-family: "Segoe UI","Inter","Helvetica Neue",sans-serif;
}
/* Sağ taraf */
.hp-banner-right {
text-align: right;
}
/* İstatistik */
.hp-stats {
font-size: 1rem;
color: #1e3a8a;
margin-bottom: 6px;
font-family: "Segoe UI","Inter",sans-serif;
}
.hp-count {
font-weight: bold;
color: #123075; /* Koyu mavi */
}
/* Link grubu */
.hp-links a {
color: #1e3a8a !important;
font-weight: 600;
text-decoration: none;
margin-left: 8px;
font-family: "Segoe UI","Inter","Helvetica Neue",sans-serif;
}
.hp-links a:hover {
text-decoration: underline;
}
/* Mobil uyum */
@media (max-width: 800px) {
.hp-banner {
flex-direction: column;
text-align: center;
padding: 24px 20px;
}
.hp-banner-right {
margin-top: 15px;
text-align: center;
}
.hp-banner::after {
display: none; /* Mobilde watermark gizli daha iyi */
}
}