Şablon:Imetin/styles.css: Revizyonlar arasındaki fark
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: | ||
/* | /* Ortak hukuk kutusu tasarımı */ | ||
.hukuk-kutu { | .hukuk-kutu { | ||
display: table; | display: table; | ||
width: 100%; | width: 100%; | ||
border: 1px solid #bfbfbf; | border: 1px solid #bfbfbf; | ||
border-radius: 6px; | border-radius: 6px; | ||
background: #fff; | background: #fff; | ||
padding: 12px; | padding: 14px 12px; | ||
margin: 20px 0; | margin: 20px 0; | ||
position: relative; | position: relative; | ||
overflow: hidden; | overflow: hidden; | ||
clear: both; | clear: both; | ||
font-size: 13px; | |||
line-height: 1.55; | |||
} | } | ||
/* | /* Dinamik başlık */ | ||
.hukuk-kutu::before { | .hukuk-kutu::before { | ||
content: attr(data-title); | content: attr(data-title); | ||
position: absolute; | position: absolute; | ||
top: -10px; | top: -10px; | ||
left: 14px; | left: 14px; | ||
background: | background: #fff; | ||
padding: 0 6px; | padding: 0 6px; | ||
font-size: 12px; | font-size: 12px; | ||
font-weight: bold; | font-weight: bold; | ||
color: #555; | color: #555; | ||
letter-spacing: 0.3px; | |||
} | } | ||
/* | /* Karar kutusu – özel kırmızı */ | ||
.hukuk-kutu.karar { | .hukuk-kutu.karar { | ||
border-color: #d9534f; | border-color: #d9534f; | ||
11.38, 13 Kasım 2025 tarihindeki hâli
/* Ortak hukuk kutusu tasarımı */
.hukuk-kutu {
display: table;
width: 100%;
border: 1px solid #bfbfbf;
border-radius: 6px;
background: #fff;
padding: 14px 12px;
margin: 20px 0;
position: relative;
overflow: hidden;
clear: both;
font-size: 13px;
line-height: 1.55;
}
/* Dinamik başlık */
.hukuk-kutu::before {
content: attr(data-title);
position: absolute;
top: -10px;
left: 14px;
background: #fff;
padding: 0 6px;
font-size: 12px;
font-weight: bold;
color: #555;
letter-spacing: 0.3px;
}
/* Karar kutusu – özel kırmızı */
.hukuk-kutu.karar {
border-color: #d9534f;
}
.hukuk-kutu.karar::before {
color: #d9534f;
}