mirror of
https://github.com/sigmasternchen/axowall
synced 2025-03-15 08:38:55 +00:00
86 lines
1.6 KiB
HTML
86 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="bundle.js"></script>
|
|
<style>
|
|
.captcha {
|
|
width: 300px;
|
|
height: 70px;
|
|
padding: 19px;
|
|
border: 1px solid grey;
|
|
box-sizing: border-box;
|
|
font-size: 20px;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.captcha span {
|
|
position: relative;
|
|
top: -9px;
|
|
}
|
|
|
|
.captcha .checkbox {
|
|
position: relative;
|
|
margin: 0;
|
|
margin-right: 20px;
|
|
height: 30px;
|
|
width: 30px;
|
|
display: inline-block;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
border: 1px solid black;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.captcha .checkbox:hover {
|
|
background-color: lightgrey;
|
|
}
|
|
|
|
.captcha .checkbox.checked {
|
|
background-color: #2196F3;
|
|
}
|
|
|
|
.captcha .checkbox.checked::before {
|
|
position: absolute;
|
|
display: block;
|
|
content: "";
|
|
width: 7px;
|
|
height: 15px;
|
|
top: 2px;
|
|
left: 9px;
|
|
border: white solid;
|
|
border-width: 0 5px 5px 0;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.captcha .checkbox.loading {
|
|
}
|
|
|
|
.captcha .checkbox.loading::before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: 2.5px;
|
|
left: 2.5px;
|
|
width: 17px;
|
|
height: 17px;
|
|
border: 4px solid;
|
|
border-radius: 50%;
|
|
border-color: black transparent black transparent;
|
|
animation: captchaLoading infinite 1s;
|
|
}
|
|
|
|
@keyframes captchaLoading {
|
|
to{
|
|
transform: rotate(.5turn)
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|
|
<script>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="captcha"></div>
|
|
</body>
|
|
</html>
|