added footer/version
This commit is contained in:
parent
9d31171f73
commit
764fcbd313
2 changed files with 22 additions and 5 deletions
20
index.css
20
index.css
|
@ -13,7 +13,7 @@ html {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
background: rgb(30, 30, 40);
|
background: linear-gradient(rgb(15, 15, 20), rgb(65, 50, 80));
|
||||||
color: rgb(245, 245, 255);
|
color: rgb(245, 245, 255);
|
||||||
font-family: 'Lucida Console', 'Courier New', monospace;
|
font-family: 'Lucida Console', 'Courier New', monospace;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
|
@ -27,9 +27,6 @@ solarsystem {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
solarsystem > h1 {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
planet {
|
planet {
|
||||||
background: linear-gradient(-60deg, rgb(30, 30, 40), rgb(27, 56, 70) 200%);
|
background: linear-gradient(-60deg, rgb(30, 30, 40), rgb(27, 56, 70) 200%);
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
|
@ -79,6 +76,7 @@ sign content {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
text-align: center;
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
sign pole {
|
sign pole {
|
||||||
|
@ -102,4 +100,18 @@ sun {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 18vh;
|
top: 18vh;
|
||||||
width: 5vh;
|
width: 5vh;
|
||||||
|
z-index: -10;
|
||||||
|
}
|
||||||
|
footer {
|
||||||
|
bottom: 0;
|
||||||
|
color: rgb(68, 43, 43);
|
||||||
|
position: fixed;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
footer a {
|
||||||
|
color: rgb(68, 43, 43);
|
||||||
|
}
|
||||||
|
.version {
|
||||||
|
float: right;
|
||||||
|
padding: 5px 20px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,11 +14,16 @@
|
||||||
</planet>
|
</planet>
|
||||||
<surface>
|
<surface>
|
||||||
<sign>
|
<sign>
|
||||||
<content>It's not cozy here for now, this little universe has to form itself first. :)</content>
|
<content>It's not cozy here for now, this little universe has to form itself first.<br /><br />:)</content>
|
||||||
<pole></pole>
|
<pole></pole>
|
||||||
</sign>
|
</sign>
|
||||||
</surface>
|
</surface>
|
||||||
<sun></sun>
|
<sun></sun>
|
||||||
</solarsystem>
|
</solarsystem>
|
||||||
|
<footer>
|
||||||
|
<section class="version">
|
||||||
|
<a href="https://git.vrifox.cc/cozy.town/website">concept 2020-12-29</a>
|
||||||
|
</section>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue