64 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
 * @Author: Kane
 | 
						|
 * @Date: 2023-02-14 23:18:02
 | 
						|
 * @LastEditors: Kane
 | 
						|
 * @LastEditTime: 2023-02-15 00:22:52
 | 
						|
 * @FilePath: /错误页面/index.html
 | 
						|
 * @Description: 
 | 
						|
 * 
 | 
						|
 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
						|
-->
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
    <head>
 | 
						|
        <meta charset="UTF-8" />
 | 
						|
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | 
						|
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
        <title>Document</title>
 | 
						|
    </head>
 | 
						|
    <style>
 | 
						|
        body {
 | 
						|
            box-sizing: border-box;
 | 
						|
            border: 1px solid red;
 | 
						|
            padding: 10px;
 | 
						|
            margin: 0px;
 | 
						|
            /* height: calc(100vh);
 | 
						|
            width: calc(100vw-5px);
 | 
						|
            max-width: 100vw;
 | 
						|
            max-height: 100vh; */
 | 
						|
            overflow: hidden;
 | 
						|
            background-color: #f0ebe5;
 | 
						|
        }
 | 
						|
 | 
						|
        .container {
 | 
						|
            width: 100%;
 | 
						|
            height: 100%;
 | 
						|
            display: flex;
 | 
						|
            flex-direction: column;
 | 
						|
            justify-content: center;
 | 
						|
            align-items: top;
 | 
						|
        }
 | 
						|
 | 
						|
        .container img {
 | 
						|
            margin: 30px auto 0px auto;
 | 
						|
            width: 400px;
 | 
						|
            height: 400px;
 | 
						|
        }
 | 
						|
 | 
						|
        .container span {
 | 
						|
            display: block;
 | 
						|
            margin: 15px auto 0 auto;
 | 
						|
            font-family: "rgaqsya";
 | 
						|
            font-size: 5em;
 | 
						|
            color: grey;
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
 | 
						|
    <body>
 | 
						|
        <div class="container">
 | 
						|
            <img src="./img/skull.png" />
 | 
						|
            <span>妖秀啊</span>
 | 
						|
        </div>
 | 
						|
    </body>
 | 
						|
</html>
 |