Şablon:Imetin/styles.css: Revizyonlar arasındaki fark

WikiKod sitesinden
Gezinti kısmına atla Arama kısmına atla
Değişiklik özeti yok
Değişiklik özeti yok
1. satır: 1. satır:
.davaozeti {
/* Ortak stil – tüm hukuk kutuları burada bir örnek tasarımı izler */
.hukuk-kutu {
     position: relative;
     position: relative;
     border: 1px solid gray;
     border: 1px solid #bfbfbf;  /* Daha yumuşak gri */
     padding: 10px;
    border-radius: 6px;
     border-radius: 5px;
     padding: 12px 10px;
     margin: 10px;
     margin: 14px 0;
    font-size: 13px;
    font-weight: normal;
    background: white;
    overflow: hidden;            /* Yan kutulara taşmayı engeller */
    clear: both;                /* Sağdaki infobox’a yapışmayı engeller */
}
 
/* Ortak başlık */
.hukuk-kutu::before {
    position: absolute;
     top: -10px;
    left: 12px;
    background: white;
    padding: 0 6px;
     font-size: 12px;
     font-size: 12px;
     font-weight: bold;
     font-weight: bold;
    color: #555;
    letter-spacing: 0.3px;
}
/* Dava Özeti */
.davaozeti {


}
}
.davaozeti::before {
.davaozeti::before {
     content: "Dava Özeti";
     content: "Dava Özeti";
    position: absolute;
    top: -10px;            /* Kutunun üstünde dursun */
    left: 10px;            /* Sol boşluk */
    background: white;    /* Çizgiyi kesmesi için arka plan */
    padding: 0 5px;
    font-size: 11px;
    font-weight: bold;
    color: gray;
}
}
/* Gerekçe */
.gerekce {
.gerekce {
    position: relative;
    border: 1px solid gray;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    font-size: 12px;
    font-weight: bold;


}
}
.gerekce::before {
.gerekce::before {
     content: "Gerekçe";
     content: "Gerekçe";
    position: absolute;
    top: -10px;            /* Kutunun üstünde dursun */
    left: 10px;            /* Sol boşluk */
    background: white;    /* Çizgiyi kesmesi için arka plan */
    padding: 0 5px;
    font-size: 11px;
    font-weight: bold;
    color: gray;
}
}


/* Karar */
.karar {


.karar {
    border-color: #d9534f;      /* Daha yasal bir kırmızı tonu */
color:red;
}
.karar::before {
    content: "Karar";
    background: white;
    color: #d9534f;
    font-weight: bold;
}
}

11.34, 13 Kasım 2025 tarihindeki hâli

/* Ortak stil – tüm hukuk kutuları burada bir örnek tasarımı izler */
.hukuk-kutu {
    position: relative;
    border: 1px solid #bfbfbf;   /* Daha yumuşak gri */
    border-radius: 6px;
    padding: 12px 10px;
    margin: 14px 0;
    font-size: 13px;
    font-weight: normal;
    background: white;
    overflow: hidden;            /* Yan kutulara taşmayı engeller */
    clear: both;                 /* Sağdaki infobox’a yapışmayı engeller */
}

/* Ortak başlık */
.hukuk-kutu::before {
    position: absolute;
    top: -10px;
    left: 12px;
    background: white;
    padding: 0 6px;
    font-size: 12px;
    font-weight: bold;
    color: #555;
    letter-spacing: 0.3px;
}

/* Dava Özeti */
.davaozeti {

}
.davaozeti::before {
    content: "Dava Özeti";
}

/* Gerekçe */
.gerekce {

}
.gerekce::before {
    content: "Gerekçe";
}

/* Karar */
.karar {

    border-color: #d9534f;      /* Daha yasal bir kırmızı tonu */
}
.karar::before {
    content: "Karar";
    background: white;
    color: #d9534f;
    font-weight: bold;
}