Added copyright info footer thing.

This commit is contained in:
flash 2024-04-30 23:14:00 +00:00
parent c491d967ba
commit 8cfba3ca23
2 changed files with 26 additions and 3 deletions

View file

@ -29,6 +29,10 @@
</div>
</div>
</div>
<div class="info">
<a class="info-link" href="//flash.moe" target="_blank" rel="noopener">flashwave</a> 2020-2024
| <a class="info-link" href="//patchii.net/flash/ip.flash.moe" target="_blank" rel="noopener">source code</a>
</div>
<script src="/script.js"></script>
</body>
</html>

View file

@ -25,7 +25,7 @@ body {
left: 0;
right: 0;
height: 25%;
z-index: 1;
z-index: 0;
background: -moz-linear-gradient(top, #db5176 0%, #ff9290 100%);
background: -webkit-linear-gradient(top, #db5176 0%, #ff9290 100%);
background: linear-gradient(to bottom, #db5176 0%, #ff9290 100%);
@ -38,7 +38,7 @@ body {
left: 0;
right: 0;
height: 25%;
z-index: 1;
z-index: 0;
background: -moz-linear-gradient(top, #ff9290 0%, #4c8999 100%);
background: -webkit-linear-gradient(top, #ff9290 0%, #4c8999 100%);
background: linear-gradient(to bottom, #ff9290 0%, #4c8999 100%);
@ -46,7 +46,6 @@ body {
}
.container {
z-index: 2;
background: #fff;
margin: 0 auto;
max-width: 850px;
@ -110,3 +109,23 @@ body {
.addrbox-copy:active {
border-style: dotted;
}
.info {
padding: 10px;
text-align: center;
font-size: .8em;
line-height: 1.4em;
color: #fff;
}
.info-link {
color: inherit;
text-decoration: underline dashed;
}
.info-link:hover,
.info-link:focus {
text-decoration-style: solid;
}
.info-link:active {
text-decoration-style: dotted;
}