2020-04-03 09:03:20 +08:00

93 lines
2.4 KiB
HTML
Vendored

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link rel="manifest" href="<%= BASE_URL %>manifest.json">
<title>正则大全</title>
<!-- 百度统计 -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?0a8aba0d0567d5e3b7fa2c9eac9d781f";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.8/styles/github.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.8/highlight.min.js"></script> -->
<style>
:root {
--primary: #42b983;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
overflow-x: hidden;
overflow-y: scroll;
}
a {
text-decoration: none;
}
input {
outline: none;
border: 0 none;
}
li {
list-style-type: none;
}
@keyframes rotate {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
.loading {
animation: rotate 1s infinite linear;
margin: 0;
padding: 0;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
display: block;
width: 100px;
height: 100px;
border: 0 solid #42b983;
border-right-width: 4px;
border-radius: 50%;
}
</style>
</head>
<body>
<noscript>
<strong>We're sorry but any-rule doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app">
<i class="loading"></i>
</div>
<!-- built files will be auto injected -->
</body>
</html>