index.html 2.9 KB

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