<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Apply filters and set the height for the body */
.maindiv {
    display: grid;
  }
  
  /* Center the .tri element */
  .tri {
    margin: auto;
    width: 100px;
    height: 86px;
    display: grid;
    background: conic-gradient(from 150deg at top, rgb(0, 225, 255) 60deg, #4c00ff00 0);
  }
  
  /* Style each child div of the .tri element */
  .tri &gt; div {
    grid-area: 1 / 1;
    background: conic-gradient(from 150deg at top, rgb(229, 249, 252) 60deg, #0000 0);
    transform: rotate(60deg);
    animation: a infinite 1.5s;
  }
  
  /* Set transform origins for each div */
  .div1 {
    transform-origin: 50% 0;
  }
  
  .div2 {
    transform-origin: 100% 100%;
  }
  
  .div3 {
    transform-origin: 0 100%;
  }
  
  /* Define the keyframes for the rotation animation */
  @keyframes a {
    to {
      transform: rotate(300deg);
    }
  }
  </pre></body></html>