it-console/code/web/错误页面/index.html

64 lines
1.5 KiB
HTML
Raw Normal View History

2023-02-14 15:36:40 +00:00
<!--
* @Author: Kane
* @Date: 2023-02-14 23:18:02
* @LastEditors: Kane
2023-02-14 16:26:37 +00:00
* @LastEditTime: 2023-02-15 00:22:52
2023-02-14 15:36:40 +00:00
* @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>
2023-02-14 16:26:37 +00:00
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;
}
2023-02-14 15:36:40 +00:00
.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>
2023-02-14 16:26:37 +00:00
2023-02-14 15:36:40 +00:00
<body>
<div class="container">
<img src="./img/skull.png" />
<span>妖秀啊</span>
</div>
</body>
</html>