Ugrás a tartalomhoz

„Sablon:WarningBox/styles.css” változatai közötti eltérés

Innen: TransLife.FYI
Nincs szerkesztési összefoglaló
Nincs szerkesztési összefoglaló
2. sor: 2. sor:
   border: 1px solid #f00;
   border: 1px solid #f00;
   background-color: #ffe6e6;
   background-color: #ffe6e6;
   padding: 10px;
   padding: 10px 10px 10px 40px; /* Add padding to the left for the icon */
   margin: 10px 0;
   margin: 10px 0;
   border-radius: 5px;
   border-radius: 5px;
   position: relative; /* Position relative to allow absolute positioning of the triangle */
   position: relative;
}
}


.warning-box::before {
.warning-icon {
   content: '';
  background-color: #ffcc00;
   width: 0;
  color: #fff;
   height: 0;
   border-radius: 50%;
   border-style: solid;
   width: 20px;
   border-width: 10px 10px 10px 0;
   height: 20px;
   border-color: transparent #ffcc00 transparent transparent;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   position: absolute;
   position: absolute;
   left: -10px;
   left: 10px;
   top: 50%;
   top: 50%;
   transform: translateY(-50%);
   transform: translateY(-50%);
  font-weight: bold;
}
}

A lap 2025. április 4., 15:06-kori változata

.warning-box {
  border: 1px solid #f00;
  background-color: #ffe6e6;
  padding: 10px 10px 10px 40px; /* Add padding to the left for the icon */
  margin: 10px 0;
  border-radius: 5px;
  position: relative;
}

.warning-icon {
  background-color: #ffcc00;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}