1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>random</title>
- <script type="text/javascript" src="/js/jquery.min.js"></script>
- <link rel="stylesheet" href="/css/bootstrap.min.css">
- <script type="text/javascript" src="/js/bootstrap.min.js"></script>
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
- &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
- <link rel="stylesheet" href="/css/style.css">
- <style>
- html,
- body {
- width: 100%;
- height: 100%;
- }
- * {
- margin: 0;
- padding: 0;
- }
- /*背景模糊*/
- .bg {
- width: 100%;
- height: 100%;
- position: relative;
- background: url('https://source.unsplash.com/random/1600x900') no-repeat fixed;
- background-color: black;
- background-size: cover;
- opacity: 50;
- box-sizing: border-box;
- z-index: 1;
- }
- .bg:after {
- content: "";
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- background: inherit;
- /* filter: brightness(150%); */
- z-index: 2;
- }
- .content {
- position: absolute;
- background: inherit;
- text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
- filter: blur(50%);
- z-index: 3;
- }
- .shadow {
- text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
- }
- @media screen {
- .content {
- padding: 20px 5px 5px 5px;
- }
- }
- @media screen and (min-width:699px) {
- .content {
- padding: 20px 75px 40px 75px;
- }
- }
- @media screen and (min-width:1200px) {
- .content {
- padding: 20px 150px 40px 150px;
- }
- }
- </style>
- </head>
- <body itemscope itemtype="http://schema.org/WebPage" style="padding: 0px 0px 0px 0px">
- <div class="bg">
- <div class="content">
- <a class="btn btn-default shadow" href="\fun"><span
- class="glyphicon glyphicon-home"></span></a>
- <a class="btn btn-default" onclick="location.reload()"><span class="glyphicon glyphicon-refresh"></span></a>
- <h1>> schtonn</h1>
- </div>
- </div>
- </body>
|