MediaWiki:Common.css: Difference between revisions

From Tibia Idle wiki

No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 66: Line 66:
     background: #f7e6e6;
     background: #f7e6e6;
     border-radius: 3px;
     border-radius: 3px;
}
/* TibiaIdle - Główny kontener */
.tibiaidle-container {
  overflow-x: auto;
  padding: 10px;
  margin: 20px auto;
  max-width: 100%;
}
/* Tabela */
.tibiaidle-table {
  border-collapse: separate;
  min-width: 650px;
  margin: 0 auto !important;
}
/* Komórki tabeli */
.tibiaidle-table td {
  text-align: center;
  vertical-align: top;
  padding: 10px;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Obrazki */
.tibiaidle-table img {
  max-width: 64px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
/* Opisy */
.tibiaidle-table span {
  display: block;
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}
/* Nagłówki linków */
.tibiaidle-table strong {
  font-weight: bold;
  color: #333;
}
/* Quest (ostatni wiersz) */
.tibiaidle-table tr:last-child td {
  background: #e6f7ff;
}
/* Responsywność */
@media (max-width: 768px) {
  .tibiaidle-table {
    border-spacing: 8px !important;
    min-width: 500px;
  }
  .tibiaidle-table img {
    max-width: 50px;
  }
}
@media (max-width: 480px) {
  .tibiaidle-table {
    border-spacing: 5px !important;
    min-width: 300px;
  }
  .tibiaidle-table td {
    padding: 5px;
  }
}
}

Revision as of 13:15, 26 June 2025

/* NOWOCZESNA, atrakcyjna tabela */

.wikitable, .wikitable th, .wikitable td {
    border: none !important;
    background: none;
}

.wikitable {
    border-radius: 18px !important;
    box-shadow: 0 8px 40px 0 rgba(30, 42, 73, 0.16), 0 1.5px 6px 0 rgba(30, 42, 73, 0.03);
    overflow: hidden;
    background: #f6f8fa;
    font-size: 16px;
    margin: 40px auto;
    width: 96%;
}

.wikitable th {
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 16px 18px;
    border-bottom: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.07);
    font-size: 17px;
}

.wikitable td {
    background: #fff;
    padding: 15px 18px;
    transition: background 0.18s, box-shadow 0.18s;
    font-size: 16px;
}

.wikitable tr {
    transition: background 0.18s;
}

.wikitable tr:nth-child(even) td {
    background: #f0f4f8;
}

.wikitable tr:hover td {
    background: #e3f0fd !important;
    box-shadow: 0 2px 10px rgba(50,130,250,0.07);
}

.wikitable img {
    width: 40px;
    height: 40px;
    padding: 3px;
    margin-right: 3px;
}

.wikitable a {
    color: #1976d2;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.19s;
    border-bottom: 1.5px solid rgba(30, 80, 200, 0.07);
    padding-bottom: 2px;
}

.wikitable a:hover {
    color: #e53935;
    border-bottom: 1.5px solid #e53935;
    background: #f7e6e6;
    border-radius: 3px;
}