ATLYSS TechPendium

Special:Common.css

Common.css

* {
  box-sizing: border-box;
}

p:empty {
  display: none;
}

/* Colors */
body {
  --atlyss-rarity-common: #000000;
  --atlyss-rarity-rare: #0070dd;
  --atlyss-rarity-exotic: #a335ee;
  --atlyss-rarity-cosmetic: #ebbb1d;
}

body[data-theme="dark"] {
  --atlyss-rarity-common: #e6e6e6;
  --atlyss-rarity-rare: #3399ff;
  --atlyss-rarity-exotic: #c27fff;
  --atlyss-rarity-cosmetic: #ffd966;
}

/* Wiki Layout */
.wiki-layout {
  max-width: none;
}

.wiki-content-area {
  min-width: 0;
}

a.wiki-link.wiki-missing {
  border: none;
}

/* External links */
a[target="_blank"] {
  color: var(--wiki-redirected-from_a-color, rgb(77, 166, 255));
}

/* Relative links */
.wiki-content a.wiki-link,
.wiki-content a.wiki-link:visited,
.wiki-category-list ul li a {
  color: #4da6ff;
  text-decoration: none;
  padding: 0;
}

.wiki-content a.wiki-link:hover {
  text-decoration: underline;
  color: #4da6ff;
}

/* Inline Images */
.wiki-content img.wiki-media-inline {
  vertical-align: middle;
}

/* Table */
.wiki-table {
  font-size: 14px;
}

/* WIP Banner */
.lg-banner-wip {
  width: 100%;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;

  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;

  color: #5c3d00;
  background: linear-gradient(180deg, #fff4cc 0%, #ffe08a 100%);
  border: 1px solid #e0b400;
  border-radius: 10px;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


/* ATLYSS Styles */
.rarity-common {
  color: var(--atlyss-rarity-common);
}

.rarity-rare {
  color: var(--atlyss-rarity-rare);
}

.rarity-exotic {
  color: var(--atlyss-rarity-exotic);
}

.rarity-cosmetic {
  color: var(--atlyss-rarity-cosmetic);
}


/* Version codes */
code.latest {
  color: lime;
}

code.outdated {
  color: orange;
}


/* Tooltips */
.lgws-tooltip {
  position: absolute;
  z-index: 9999;
  background: rgba(30, 30, 30, 0.95);
  color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  line-height: 1.4;
  pointer-events: none;
  /* allows mouse events to pass through */
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

/* Tooltip line */
.lgws-tooltip-line {
  margin-bottom: 4px;
}

/* Remove last line bottom margin */
.lgws-tooltip-line:last-child {
  margin-bottom: 0;
}


/* Calculators */
.lgws-calculator {
  border: 1px solid #2a2a2a;
  background: #141414;
  padding: 12px;
  max-width: 420px;
  color: #e6e6e6;
  font-size: 13px;
  font-family: system-ui, sans-serif;
}

.lgws-calc-section {
  margin-bottom: 12px;
}

.lgws-calc-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.lgws-calc-row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.lgws-calc-label {
  width: 44px;
  text-align: right;
  opacity: 0.8;
}

.lgws-calc-row input {
  margin-left: 6px;
  width: 60px;
}

.lgws-calc-select {
  width: 100%;
  margin-bottom: 6px;
}

.lgws-calc-results {
  border-top: 1px solid #2a2a2a;
  padding-top: 8px;
}

.lgws-calc-result {
  margin-bottom: 2px;
}
Last Edited by on 2/7/2026, 12:15:18 AM