Mayx's Home Page
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
878 B

  1. @namespace xsl "http://www.w3.org/1999/XSL/Transform";
  2. xsl|template {
  3. display: none !important;
  4. }
  5. :root {
  6. display: flex !important;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: center;
  10. min-height: 100vh;
  11. background-color: #f8f9fa;
  12. margin: 0;
  13. padding: 2em 1em;
  14. font-family: system-ui, -apple-system, sans-serif;
  15. box-sizing: border-box;
  16. margin-left: max(1em, env(safe-area-inset-left));
  17. margin-right: max(1em, env(safe-area-inset-right));
  18. }
  19. :root::before {
  20. content: "💀 这个 XSLT 模板已被谷歌 (Chrome) 杀死";
  21. display: block;
  22. color: #d93025;
  23. font-size: 24px;
  24. font-weight: 800;
  25. padding: 20px;
  26. border: 2px solid #d93025;
  27. border-radius: 8px;
  28. background: #fff1f0;
  29. margin-bottom: 10px;
  30. box-shadow: 0 4px 12px rgba(217, 48, 37, 0.1);
  31. text-align: center;
  32. }