Toggle menu
Toggle preferences menu
Toggle personal menu
Nejste přihlášen(a)
Your IP address will be publicly visible if you make any edits.

Šablona:Pískoviště/styles.css: Porovnání verzí

Z Star Citizen CZ Wiki
založena nová stránka s textem „.box { background: hsl(0, 0%, 100%); padding: 16px 24px; position: relative; border-radius: 8px; box-shadow: 0 0 0 1px rgba(0,0,0,.01);: } .box::after { position: absolute; content: ""; top: 15px; left: 0; right: 0; z-index: -1; height: 100%; width: 100%; transform: scale(0.9); filter: blur(15px); background: linear-gradient( to left, #ff5770, #e4428d, #c42da8, #9e…“
 
mBez shrnutí editace
Řádek 1: Řádek 1:
.box {
.homeP-featured .box {
   /*background: hsl(0, 0%, 100%);
   /*background: hsl(0, 0%, 100%);
   padding: 16px 24px;
   padding: 16px 24px;
   position: relative;
   position: relative;
   border-radius: 8px;
   border-radius: 8px;*/
   box-shadow: 0 0 0 1px rgba(0,0,0,.01);*/
   box-shadow: 0 0 0 1px rgba(0,0,0,.01);
}
}


.box::after {
.homeP-featured .box::after {
     position: absolute;
     position: absolute;
     content: "";
     content: "";

Verze z 19. 1. 2026, 14:52

.homeP-featured .box {
  /*background: hsl(0, 0%, 100%);
  padding: 16px 24px;
  position: relative;
  border-radius: 8px;*/
  box-shadow: 0 0 0 1px rgba(0,0,0,.01);
}

.homeP-featured .box::after {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(0.9);
    filter: blur(15px);
    background: linear-gradient(
      to left,
      #ff5770,
      #e4428d,
      #c42da8,
      #9e16c3,
      #6501de,
      #9e16c3,
      #c42da8,
      #e4428d,
      #ff5770
    );
    background-size: 200% 200%;
    animation: animateGlow 1.25s linear infinite;
  }

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}