index.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>random</title>
  6. <script type="text/javascript" src="/js/jquery.min.js" crossorigin="anonymous"></script>
  7. <link rel="stylesheet" href="/css/bootstrap.min.css" crossorigin="anonymous">
  8. <script type="text/javascript" src="/js/bootstrap.min.js" crossorigin="anonymous"></script>
  9. <link rel="preconnect" href="https://fonts.gstatic.com">
  10. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  11. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  12. <link rel="stylesheet" href="/css/style.css">
  13. <style>
  14. html,
  15. body {
  16. width: 100%;
  17. height: 100%;
  18. }
  19. * {
  20. margin: 0;
  21. padding: 0;
  22. }
  23. /*背景模糊*/
  24. .bg {
  25. width: 100%;
  26. height: 100%;
  27. position: relative;
  28. background: url('https://source.unsplash.com/random/1600x900') no-repeat fixed;
  29. background-color: black;
  30. background-size: cover;
  31. opacity: 50;
  32. box-sizing: border-box;
  33. z-index: 1;
  34. }
  35. .bg:after {
  36. content: "";
  37. width: 100%;
  38. height: 100%;
  39. position: absolute;
  40. left: 0;
  41. top: 0;
  42. background: inherit;
  43. /* filter: brightness(150%); */
  44. z-index: 2;
  45. }
  46. .content {
  47. position: absolute;
  48. background: inherit;
  49. text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  50. filter: blur(50%);
  51. z-index: 3;
  52. }
  53. .shadow {
  54. text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  55. }
  56. @media screen {
  57. .content {
  58. padding: 20px 5px 5px 5px;
  59. }
  60. }
  61. @media screen and (min-width:699px) {
  62. .content {
  63. padding: 20px 75px 40px 75px;
  64. }
  65. }
  66. @media screen and (min-width:1200px) {
  67. .content {
  68. padding: 20px 150px 40px 150px;
  69. }
  70. }
  71. </style>
  72. </head>
  73. <body itemscope itemtype="http://schema.org/WebPage" style="padding: 0px 0px 0px 0px">
  74. <div class="bg">
  75. <div class="content">
  76. <a class="btn btn-default shadow" href="\fun"><span
  77. class="glyphicon glyphicon-home"></span></a>
  78. <a class="btn btn-default" onclick="location.reload()"><span class="glyphicon glyphicon-refresh"></span></a>
  79. <h1>> schtonn</h1>
  80. </div>
  81. </div>
  82. </body>