﻿html {
    font-size: 16px !important;
    position: relative;
    min-height: 100%;
    overscroll-behavior: none; /*ekranı aşağı sürüklediğinde refresh olmasın*/
}

body {
    padding: 2px;
    padding-bottom:100px; /*body içindeki her şey aşağıda boşluk bıraksın*/
    background-color: black;
    color: white !important;
    overscroll-behavior: none; /*ekranı aşağı sürüklediğinde refresh olmasın*/
}



@media only screen and (min-width: 768px) {
    body {
        font-size: 16px; /*mobil uygulamalarda aksi takdirde çalışmıyor*/
    }
}


@media only screen and (max-width: 768px) {
    body {
        font-size: 16px; /*mobil uygulamalarda aksi takdirde çalışmıyor*/
    }
}

@media only screen and (min-width: 1024px) and (max-width: 2199px)
{
    body {
    }
  
}


.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*Benim*/
table {
    font-size: 16px;
    vertical-align: middle;
    border: solid !important;
    padding: 2px !important;
}



/*Blink text*/
.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
/*Blink Text Son*/





.footerMessage {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rosybrown;
    color: black;
    text-align: center;
    z-index: 999999;
}

myHeader1 {
    position: fixed;
    top: 67px;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    /*   padding: 10px; */
    text-align: center;
}


.myClassBottom {
    position: fixed;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #333;
    color: #fff;
    z-index: 99;
    /*   padding: 10px; */
    /* text-align: center;*/
}



/*tinyMce textarea yazdırılırsa kendi kendine başlık koymasın */
@media print{
    .no-title{
        display:none;
    }
}












/*Bunu mobile için koydum. Modal close buttonu çalışmıyordu. Arka fonu kaldırınca ancak çalıştır*/
@media (max-width:768px) {
    .modal-backdrop {
        display: none;
        width: 100%;
    }
}




/*Bunu mobile için koydum. Modal close buttonu full screen olunca kayboluyordu.Sadece mobile butonda 
    100% olabiliyordu. Inline style bakarsanız 80%. Büyük ekranlarda 80% olmazsa close butonu kayboluyordu.
*/
@media only screen and (max-width:768px) {
    .modal-dialog {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

/*
@media only screen and (max-width: 768px) {

    .benim-margin {
        margin-right: 12px !important;
        margin-left: 12px !important;
        margin-top: 202px !important;
       
    }
}*/


/*button çalışmayınca body içinde marginları tanımladım*/
/*@media only screen and (min-width: 1024px) and (max-width: 2199px) {
    .benim-margin {
        margin-right: 12px !important;
        margin-left: 12px !important;
        margin-top: 2px !important;
    }
}*/


/*Readonly olan zemin rengi değişsin*/
input[readonly] {
    background-color: bisque !important;
}

select[readonly] {
    background-color: bisque !important;
}

textarea[readonly] {
    background-color: bisque !important;
}
