تفصیل کے لیے کھولیں کے بٹن پر کلک کریں یاددہانی: محفوظ کرنے کے بعد تازہ ترین تبدیلیوں کو دیکھنے کے لیے آپ کو اپنے براؤزر کا کیش صاف کرنا ہوگا۔

  • فائرفاکس/ سفاری: جب Reload پر کلک کریں تو Shift دبا کر رکھیں، یا Ctrl-F5 یا Ctrl-R دبائیں (Mac پر R- )
  • گوگل کروم: Ctrl-Shift-R دبائیں (Mac پر Shift-R-⌘)
  • انٹرنیٹ ایکسپلورر: جب Refresh پر کلک کریں تو Ctrl یا Ctrl-F5 دبائیں
  • اوپیرا: Tools → Preferences میں جائیں اور کیش صاف کریں

/* Dialog box container */
#peshkarModal {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Dialog box */
#peshkarContent {
    background-color: #fff;
    margin: 15% auto;
    padding: 6px;
    border-radius: 2px;
    border: 1px solid #000;
    width: 50%;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2);
}

/* Title bar */
#peshkarHeader {
    color: black;
    border-bottom: 1px solid;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}

#peshkarTitle {
  padding: 5px 26px;
  background: linear-gradient(#36c, #4f7fdf);
  color: white;
  font-size: 18px;
  cursor: move;
}

#lineBreakSpace {
	margin-top: 11px;
}

#infoboxCheckbox {
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin-right: 13px;
	margin-top: 3px;
}

#infoboxCheckboxText {
	padding: 19px;
	font-size: 18px;
}

#listHeader {
	padding: 15px 15px;
	font-size: 18px;
	margin-top: -20px;
}

#durustiList {
	font-size: 16px;
	padding: 5px 25px;
	margin-top: -15px;
}

/* Close button */
.closeButton {
	font-family: inherit;
	font-size: 16px;
    background-color: #498013;
    color: white;
    padding: 7px 25px;
    margin: 25px;
    border: none;
    cursor: pointer;
    float: left;
}

/* Accept button */
.acceptButton {
	font-family: inherit;	
	font-size: 16px;
    background-color: #36c;
    color: white;
    padding: 7px 30px;
    margin: 25px;
    margin-left: -15px;
    border: none;
    cursor: pointer;
    float: left;
}

/* Clear float styles */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Status box animation */
#statusBox {
    position: fixed;
    width: 60%;
    height: auto;
    max-width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8f6f6;
    border-radius: 25px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    box-shadow: 10px 15px 20px 2px rgba(0, 0, 0, 0.17);
    padding: 20px;
}

/* Media query for tablets and desktops */
@media (min-width: 768px) {
    #statusBox {
        width: 30%; 
        max-width: 600px;
    }
}

/* Media query for large desktops */
@media (min-width: 1200px) {
    #statusBox {
        width: 18%;
        padding: 10px;
    }
}


.status-header {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
    display: block;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin: 5px; 
    transition: transform 0.6s, background-color 0.1s;
}

.mw-notification-tag-peshkar-notification {
    background-color: #fff;
    color: #757575; 
    border: 1px solid #757575; 
    padding: 13px 60px 13px 13px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/1/1e/Eo_circle_grey_white_checkmark.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 25px) center;
    background-size: 25px;
    font-weight: bold;
}