Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
deleting all custom css
Tag: Blanking
For Nav page layout
Line 1: Line 1:
.nav-grid {
  display: grid;
  grid-template-columns: 60px 60px 60px;
  grid-template-rows: 60px 60px 60px;
  gap: 6px;
  justify-content: center;
  margin: 1.2em 0;
}


.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 0.9em;
  text-decoration: none !important;
  color: #eee !important;
}
.nav-btn:hover {
  background: #333;
  border-color: #777;
}
.nav-empty {
  background: transparent;
  border: none;
}

Revision as of 20:57, 3 December 2025

.nav-grid {
  display: grid;
  grid-template-columns: 60px 60px 60px;
  grid-template-rows: 60px 60px 60px;
  gap: 6px;
  justify-content: center;
  margin: 1.2em 0;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 0.9em;
  text-decoration: none !important;
  color: #eee !important;
}

.nav-btn:hover {
  background: #333;
  border-color: #777;
}

.nav-empty {
  background: transparent;
  border: none;
}