MediaWiki:Common.css: Difference between revisions

From Tibia Idle wiki

No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 79: Line 79:




 
/* Specyficzny selektor dla TibiaIdle */
 
#tibiaidle-cards .responsive-cards {
 
   display: flex;
 
   flex-wrap: wrap;
 
   justify-content: center;
 
   gap: 15px;
/* Responsive Cards */
.responsive-cards-container {
  width: 100%;
  overflow: hidden;
}
 
.responsive-cards {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   gap: 20px;
   padding: 10px;
   margin: 0 auto;
   margin: 0 auto;
   max-width: 1200px;
   max-width: 1200px;
}
}


.responsive-card {
#tibiaidle-cards .responsive-card {
   background: #2c2c2c;
   background: #2c2c2c;
   border-radius: 10px;
  border: 1px solid #444;
   border-radius: 8px;
   padding: 15px;
   padding: 15px;
  width: 160px;
   text-align: center;
   text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   transition: transform 0.2s;
  color: #fff;
  border: 1px solid #444;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
}


.responsive-card:hover {
#tibiaidle-cards .responsive-card:hover {
   transform: translateY(-5px);
   transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
   border-color: #666;
   border-color: #666;
}
}


.responsive-card img {
#tibiaidle-cards .responsive-card img {
   margin-bottom: 10px;
   margin-bottom: 10px;
  height: 64px;
   object-fit: contain;
   object-fit: contain;
}
}


.responsive-card-title {
#tibiaidle-cards .responsive-card-title {
  font-size: 1.2em;
   font-weight: bold;
   font-weight: bold;
  margin-bottom: 8px;
   color: #f0f0f0;
   color: #f0f0f0;
  margin: 8px 0;
  font-size: 1.1em;
}
}


.responsive-card-desc {
#tibiaidle-cards .responsive-card-desc {
   font-size: 0.9em;
   font-size: 0.85em;
   color: #bbb;
   color: #bbb;
  flex-grow: 1;
}
}


/* Mobile responsiveness */
/* Mobile */
@media (max-width: 768px) {
@media (max-width: 768px) {
   .responsive-cards {
   #tibiaidle-cards .responsive-card {
     grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     width: calc(50% - 20px);
    gap: 15px;
  }
 
  .responsive-card {
     padding: 10px;
     padding: 10px;
  }
 
  .responsive-card-title {
    font-size: 1em;
  }
 
  .responsive-card-desc {
    font-size: 0.8em;
  }
}
@media (max-width: 480px) {
  .responsive-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
   }
   }
}
}

Revision as of 13:10, 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;
}












/* Specyficzny selektor dla TibiaIdle */
#tibiaidle-cards .responsive-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 0 auto;
  max-width: 1200px;
}

#tibiaidle-cards .responsive-card {
  background: #2c2c2c;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 15px;
  width: 160px;
  text-align: center;
  transition: transform 0.2s;
}

#tibiaidle-cards .responsive-card:hover {
  transform: translateY(-3px);
  border-color: #666;
}

#tibiaidle-cards .responsive-card img {
  margin-bottom: 10px;
  height: 64px;
  object-fit: contain;
}

#tibiaidle-cards .responsive-card-title {
  font-weight: bold;
  color: #f0f0f0;
  margin: 8px 0;
  font-size: 1.1em;
}

#tibiaidle-cards .responsive-card-desc {
  font-size: 0.85em;
  color: #bbb;
}

/* Mobile */
@media (max-width: 768px) {
  #tibiaidle-cards .responsive-card {
    width: calc(50% - 20px);
    padding: 10px;
  }
}