မာတိကာသို့ ခုန်သွားရန်

မီဒီယာဝီကီ:Gadget-TripleTabView Font size.css

wikishia မှ

မှတ်ချက်။ လွှင့်တင်လိုက်ပြီးသည့်နောက် ပြောင်းလဲမှုများ မြင်ရနိုင်ရန် သင့်အနေဖြင့် ဘရောက်ဇာ၏ cache အား ဖြတ်ကျော်နိုင်ရန် လိုအပ်ပါသည်။

  • Firefox / Safari: Reload ကို နှိပ်နေစဉ်အတွင်း Shift ကို ဖိထားပါ၊ သို့မဟုတ် Ctrl-F5 သို့ Ctrl-R (Mac တွင် ⌘-R) ကို နှိပ်ပါ။
  • Google Chrome: Ctrl-Shift-R (Mac တွင် ⌘-Shift-R) ကို နှိပ်ပါ။
  • Internet Explorer / Edge: Refresh ကို နှိပ်နေစဉ်အတွင်း Ctrl ကို ဖိထားပါ၊ သို့မဟုတ် Ctrl-F5 ကို နှိပ်ပါ။
  • Opera: Menu → Settings (Mac တွင် Opera → Preferences) သို့ သွားပြီး Privacy & security → Clear browsing data → Cached images and files ကို ပြုလုပ်ပါ။
/* دکمه های + - و ریست */
.table-controls {
    text-align: left;
    margin: 10px 10px 10px 20px;
}

.font-button {
    cursor: pointer;
    display: inline-block;
    padding: 4px 6px;
    font: icon;
    background-color: #4CAF50;
    border-radius: 4px;
    font-size: 16px; /* اندازه بزرگ‌تر برای نماد */
    transition: all 0.3s ease; /* اضافه کردن انیمیشن کوچک */
    text-align: center;
    outline: none;
}

.font-button:hover {
    color: #0056b3; /* رنگ آبی تیره‌تر برای حالت هاور */
    background-color: #45a049;
}

.decrease-button {
    background-color: #f44336;
}

.decrease-button:hover {
    background-color: #e53935;
}

.reset-button {
    background-color: #2196F3;
}

.reset-button:hover {
    background-color: #1976D2;
}

/* Styles for Dark Mode Button */
.dark-mode-button {
    background-color: #555;
}

.dark-mode-button:hover {
    background-color: #333;
}

/* استایل‌های مخصوص راست‌چین */
html[dir="rtl"] .table-controls {
    text-align: left;
    margin: 10px 10px 10px 20px;
}

/* استایل‌های مخصوص چپ‌چین */
html[dir="ltr"] .table-controls {
    text-align: right;
    margin: 10px 20px 10px 10px;
}