gradient-glass.svg 391 B

12345678910
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg xmlns="http://www.w3.org/2000/svg">
  3. <defs>
  4. <linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
  5. <stop offset="50%" stop-color="rgba(255, 255, 255, 0.15)" />
  6. <stop offset="50%" stop-color="rgba(255, 255, 255, 0)" />
  7. </linearGradient>
  8. </defs>
  9. <rect width="100%" height="100%" style="fill:url(#grad);" />
  10. </svg>