index.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. .shadow {
  56. text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  57. }
  58. @media screen {
  59. .content {
  60. padding: 20px 5px 5px 5px;
  61. }
  62. }
  63. @media screen and (min-width:699px) {
  64. .content {
  65. padding: 20px 75px 40px 75px;
  66. }
  67. }
  68. @media screen and (min-width:1200px) {
  69. .content {
  70. padding: 20px 150px 40px 150px;
  71. }
  72. }
  73. </style>
  74. </head>
  75. <body itemscope itemtype="http://schema.org/WebPage" style="padding: 0px 0px 0px 0px">
  76. <div class="bg">
  77. <div class="content">
  78. <button class="btn btn-default shadow" onclick="history.back()"><span
  79. class="glyphicon glyphicon-home"></span></button>
  80. <a class="btn btn-default" onclick="location.reload()"><span class="glyphicon glyphicon-refresh"></span></a>
  81. <h1>> schtonn</h1>
  82. </div>
  83. </div>
  84. </body>
  85. </html>