משתמש:Neriah/common.css
קפיצה לניווט
קפיצה לחיפוש
הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload), או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh), או ללחוץ על צירוף המקשים Ctrl-F5.
- אופרה: ללחוץ על Ctrl-F5.
/* עיצוב הכפתור */
#censorButton {
display: inline-block;
padding: 0.375rem 0.75rem;
font-size: 0.9rem;
background-color: #f8f9fa;
border: 1px solid #adb5bd;
border-radius: 0.25rem;
color: #212529;
text-decoration: none;
cursor: pointer;
}
#censorButton:hover {
background-color: #e9ecef;
}
#censorButton:active {
background-color: #dee2e6;
}
#censorButton:focus {
outline: none;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* מרווח בין הכפתור לתוכן הדף */
#censorButton-div {
padding-top: 0.0001rem;
position: relative;
}
#censorButton-div #censorButton {
position: absolute;
left: 10px;
top: -1rem;
}