Difference between revisions of "MediaWiki:Common.css"

From The Al`Kabor Project Wiki
Jump to navigation Jump to search
Line 23: Line 23:
}
}


.mobile-full {
@media only screen and (max-width: 800px) {
  width: 100% !important;
  .mobile-full {
  display: block;
    width: 100% !important;
    display: block;
  }
}
}

Revision as of 14:32, 24 November 2021

/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
  font-family: 'Open Sans';
}

body.page-Main_Page h1.firstHeading,
#mw-panel {
  display:none;
}

#content {
  margin: 0 2rem;
}

#mw-content-text {
  overflow: hidden;
}

.mw-body {
  border-right-width: 1px;
}

@media only screen and (max-width: 800px) {
  .mobile-full {
    width: 100% !important;
    display: block;
  }
}