/* Duyuru Paneli Başlangıç */
.dpaneli {
position: relative;
margin: 1em;
background: #F2F1EF;
padding: 1em 1em 1em 2em;
border-left: 4px solid #DDD;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
}
.dpaneli:before {
position: absolute;
top: 50%;
margin-top: -17px;
left: -17px;
background-color: #DDD;
color: #FFF;
width: 30px;
height: 30px;
border-radius: 100%;
text-align: center;
line-height: 30px;
font-weight: bold;
font-family: Georgia;
text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}
.bilgi {
border-color: #0074D9;
border-right: 4px solid #0074D9;
}
.bilgi:before {
content: "i";
background-color: #0074D9;
}
.basarili {
border-color: #2ECC40;
border-right: 4px solid #2ECC40;
}
.basarili:before {
content: "√";
background-color: #2ECC40;
}
.uyari {
border-color: #f06c64;
border-right: 4px solid #f06c64;
}
.uyari:before {
content: "!";
background-color: #f06c64;
}
/* Duyuru Paneli Bitiş */