Correcciones y ajustes para pantallas pequeñas

This commit is contained in:
Manuel Cillero 2018-02-14 02:36:34 +01:00
parent d2c310285a
commit f3af13088f
2 changed files with 15 additions and 2 deletions

View file

@ -1141,11 +1141,19 @@ div.details { padding: 20px !important; }
@media screen and (max-width: 899px) { @media screen and (max-width: 899px) {
#top-menu { #top-menu {
display: block !important; display: block !important;
position: fixed;
width: 100%;
} }
#wrapper-top-menu div, #wrapper-top-menu div,
#wrapper-top-menu ul:last-child { #wrapper-top-menu ul:last-child {
display: none; display: none;
} }
body #header {
margin-top: 31px;
}
div#content > div.contextual:first-child {
margin-top: 18px;
}
} }
@media all and (max-width: 899px) { @media all and (max-width: 899px) {
body #header { body #header {

View file

@ -55,18 +55,23 @@ a:hover, a:focus {
color: #f70a0a; color: #f70a0a;
} }
.wiki p { .wiki p, .wiki li {
text-align: justify; text-align: justify;
word-wrap: break-word; word-wrap: break-word;
} }
@media screen and (max-width: 767px) { @media screen and (max-width: 767px) {
.wiki p { .wiki p, .wiki li {
text-align: left; text-align: left;
} }
} }
body.wiki, .wiki p, .wiki li { body.wiki, .wiki p, .wiki li {
font-size: 18px; font-size: 18px;
} }
@media screen and (max-width: 900px) {
body.wiki, .wiki p, .wiki li {
font-size: 16px;
}
}
.wiki li { .wiki li {
margin-top: 3px; margin-top: 3px;