Removed important from some CSS properties set on body. (#6013)
This commit is contained in:
parent
6cb525900f
commit
18cc329925
1 changed files with 32 additions and 17 deletions
|
|
@ -7,9 +7,9 @@ body {
|
|||
@include themeable(color, theme-color, $black);
|
||||
font-family: $helvetica;
|
||||
font-size: 18px;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
margin-top: -20px !important;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-top: -20px;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
|
|
@ -48,9 +48,10 @@ body {
|
|||
}
|
||||
|
||||
@media print {
|
||||
.top-bar, .article-actions {
|
||||
display: none;
|
||||
}
|
||||
.top-bar,
|
||||
.article-actions {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.config_minimize_newest_listings {
|
||||
|
|
@ -190,7 +191,8 @@ input[type='email'] {
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
body.night-theme, body.ten-x-hacker-theme {
|
||||
body.night-theme,
|
||||
body.ten-x-hacker-theme {
|
||||
.on-page-nav-butt img,
|
||||
.icon-img,
|
||||
.dropdown-icon,
|
||||
|
|
@ -252,17 +254,25 @@ body.open-dyslexic-article-body {
|
|||
font-family: OpenDyslexic, sans-serif;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
.body b, .body strong {
|
||||
.body b,
|
||||
.body strong {
|
||||
font-family: OpenDyslexic-Bold, sans-serif;
|
||||
}
|
||||
|
||||
.body i, .body em {
|
||||
|
||||
.body i,
|
||||
.body em {
|
||||
font-family: OpenDyslexic-Italic, sans-serif;
|
||||
}
|
||||
|
||||
.body b>i, .body b>em, .body strong>i, .body strong>em,
|
||||
.body i>b, .body em>b, .body i>strong, .body em>strong {
|
||||
font-family: OpenDyslexic-Bolditalic
|
||||
|
||||
.body b > i,
|
||||
.body b > em,
|
||||
.body strong > i,
|
||||
.body strong > em,
|
||||
.body i > b,
|
||||
.body em > b,
|
||||
.body i > strong,
|
||||
.body em > strong {
|
||||
font-family: OpenDyslexic-Bolditalic;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -295,7 +305,8 @@ body.trusted-status-true .trusted-visible-block {
|
|||
}
|
||||
|
||||
body.hidden-shell {
|
||||
.top-bar, footer {
|
||||
.top-bar,
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
.container {
|
||||
|
|
@ -360,6 +371,10 @@ body.hidden-shell {
|
|||
}
|
||||
|
||||
@keyframes loading-fadein {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 0.6; }
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue