Şablon:Imetin/styles.css
Gezinti kısmına atla
Arama kısmına atla
/* ORTAK HUKUK KUTUSU STİLİ */
.davaozeti,
.gerekce,
.karar {
position: relative;
border: 1px solid #bfbfbf;
border-radius: 6px;
padding: 12px 10px;
margin: 14px 0;
font-size: 13px;
font-weight: normal;
background: white;
overflow: hidden; /* Çizgilerin dışarı taşmasını engeller */
clear: both; /* Sağdaki infobox’a yapışmayı engeller */
}
/* ORTAK BAŞLIK STİLİ */
.davaozeti::before,
.gerekce::before,
.karar::before {
position: absolute;
top: -10px;
left: 12px;
background: white;
padding: 0 6px;
font-size: 12px;
font-weight: bold;
letter-spacing: 0.3px;
color: #555;
}
/* BAŞLIK METİNLERİ */
.davaozeti::before { content: "Dava Özeti"; }
.gerekce::before { content: "Gerekçe"; }
/* KARAR ÖZEL RENK */
.karar {
border-color: #d9534f;
}
.karar::before {
content: "Karar";
color: #d9534f;
}