MediaWiki:Test.css: различия между версиями

Страница интерфейса MediaWiki
Нет описания правки
Нет описания правки
Метка: ручная отмена
 
(не показаны 4 промежуточные версии этого же участника)
Строка 2: Строка 2:
   display: flex;
   display: flex;
   flex-wrap: wrap;
   flex-wrap: wrap;
  gap: 10px;
   justify-content: center;
   justify-content: center;
  gap: 10px;
}
}


Строка 9: Строка 9:
   border: 2px solid #411144;
   border: 2px solid #411144;
   padding: 10px;
   padding: 10px;
   display: flex;
   display: inline-block;
  flex-direction: column;
  align-items: center;
   background-color: #3133;
   background-color: #3133;
   text-align: center;
   text-align: center;
Строка 18: Строка 16:
   border-radius: 10px;
   border-radius: 10px;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-out;
   cursor: pointer;
   cursor: pointer;
}
.race-box img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.race-box:hover img {
  transform: scale(1.1);
}
.race-box .race-name {
  color: #f1f1f1;
  font-size: 14px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}
}


Строка 47: Строка 24:
   left: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   background-color: #222;
   background: #222;
   color: #f1f1f1;
   color: #fff;
   padding: 20px;
   padding: 20px;
   border-radius: 10px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  z-index: 1000;
   display: none;
   display: none;
}
}
Строка 60: Строка 36:
}
}


.info-popup .close-btn {
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
   cursor: pointer;
   cursor: pointer;
   color: #ff6666;
   color: #fff;
   font-weight: bold;
   font-size: 18px;
  float: right;
}
}

Текущая версия от 18:19, 19 января 2025

.race-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.race-box {
  border: 2px solid #411144;
  padding: 10px;
  display: inline-block;
  background-color: #3133;
  text-align: center;
  width: 120px;
  height: 160px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.info-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  display: none;
}

.info-popup.active {
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
}