MediaWiki:UIComponents.css

From The Seven Sages of Rome
Revision as of 12:19, 23 January 2026 by Noeth (talk | contribs) (Created page with "Grid & Layout Containers: .grid-container { display: block; padding: 20px; } .grid-container .wikitable { margin-bottom: 20px; width: 100%; } Standard Card: .card { height: 250px; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); border-radius: 0.75rem; } .card:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); } .card-block { display: grid; align-conte...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Grid & Layout Containers */
.grid-container {
    display: block;
    padding: 20px;
}

.grid-container .wikitable {
    margin-bottom: 20px;
    width: 100%;
}

/* Standard Card */
.card {
    height: 250px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 0.75rem;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.card-block {
    display: grid;
    align-content: space-between;
    height: 100%;
}

/* Primary Action Button */
.primary-btn {
    margin-right: auto;
    margin-left: auto;
    background-color: #222;
    border-radius: 4px;
    border-style: none;
    box-sizing: border-box;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-family: "Farfetch Basis", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    max-width: none;
    min-height: 44px;
    min-width: 10px;
    outline: none;
    overflow: hidden;
    padding: 9px 20px 8px;
    position: relative;
    text-align: center;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

.primary-btn:hover,
.primary-btn:focus {
    opacity: .75;
}

/* Alerts */
.alert-info {
    background: rgba(64, 112, 255, 0.1) !important;
    backdrop-filter: blur(10px) saturate(100%) contrast(45%) brightness(140%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(100%) contrast(45%) brightness(140%) !important;
    border: none !important;
}

/* WIP Banner */
.wip-alert {
    position: fixed;
    display: none;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 999;
}