still concept; still not standardized html
This commit is contained in:
parent
2cb70b0fe7
commit
9d31171f73
3 changed files with 33 additions and 33 deletions
51
index.css
51
index.css
|
@ -13,15 +13,15 @@ html {
|
|||
overflow: hidden;
|
||||
}
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f5f5ff;
|
||||
background: rgb(30, 30, 40);
|
||||
color: rgb(245, 245, 255);
|
||||
font-family: 'Lucida Console', 'Courier New', monospace;
|
||||
line-height: 1.8;
|
||||
margin: 0;
|
||||
scroll-behaviour: smooth;
|
||||
}
|
||||
solarsystem {
|
||||
background: linear-gradient(rgb(5, 5, 50), rgb(200, 65, 65));
|
||||
background: url(stars.png);
|
||||
display: block;
|
||||
min-height: 100vh;
|
||||
overflow: hidden;
|
||||
|
@ -31,21 +31,31 @@ solarsystem > h1 {
|
|||
text-align: center;
|
||||
}
|
||||
planet {
|
||||
background: rgb(240, 120, 120);
|
||||
background: linear-gradient(-60deg, rgb(30, 30, 40), rgb(27, 56, 70) 200%);
|
||||
border-radius: 100%;
|
||||
bottom: 0;
|
||||
height: 1000vh;
|
||||
left: 50%;
|
||||
bottom: 50vh;
|
||||
height: 60vh;
|
||||
left: 70vw;
|
||||
position: absolute;
|
||||
transform: translate(-50%,97%);
|
||||
width: 1000vh;
|
||||
transform: translate(-50%,50%);
|
||||
width: 60vh;
|
||||
}
|
||||
moon {
|
||||
background: linear-gradient(-60deg, rgb(20, 23, 28), rgb(108, 97, 97));
|
||||
border-radius: 100%;
|
||||
height: 4vh;
|
||||
position: absolute;
|
||||
right: 16vh;
|
||||
top: 20vh;
|
||||
width: 4vh;
|
||||
}
|
||||
surface {
|
||||
height: 30vh;
|
||||
background: linear-gradient(rgb(68, 43, 43), rgb(0, 0, 0));
|
||||
bottom: 0;
|
||||
height: 50vh;
|
||||
left: 50%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
transform: translate(-50%, 0);
|
||||
transform: translate(-50vw, 0);
|
||||
width: 100vw;
|
||||
}
|
||||
sign {
|
||||
|
@ -62,9 +72,9 @@ sign {
|
|||
to { transform: translate(-50%,0) rotate(10deg); }
|
||||
}
|
||||
sign content {
|
||||
background: #d5664c;
|
||||
border: 5px outset #dd4949;
|
||||
color: #ffe9e9;
|
||||
background: rgb(98, 49, 37);
|
||||
border: 5px outset rgb(49, 17, 17);
|
||||
color: rgb(193, 193, 193);
|
||||
display: block;
|
||||
height: 200px;
|
||||
overflow: hidden;
|
||||
|
@ -72,7 +82,7 @@ sign content {
|
|||
width: 300px;
|
||||
}
|
||||
sign pole {
|
||||
background: linear-gradient(#4d0000, rgb(135, 35, 35));
|
||||
background: linear-gradient(rgb(32, 11, 11), rgb(47, 27, 27));
|
||||
border-radius: 0 0 20px 5px;
|
||||
bottom: 0;
|
||||
content: '';
|
||||
|
@ -93,12 +103,3 @@ sun {
|
|||
top: 18vh;
|
||||
width: 5vh;
|
||||
}
|
||||
moon {
|
||||
background: rgb(129, 141, 142);
|
||||
border-radius: 100%;
|
||||
height: 4vh;
|
||||
position: absolute;
|
||||
right: 16vh;
|
||||
top: 30vh;
|
||||
width: 4vh;
|
||||
}
|
||||
|
|
15
index.html
15
index.html
|
@ -9,17 +9,16 @@
|
|||
</head>
|
||||
<body>
|
||||
<solarsystem>
|
||||
<h1>cozy.town</h1>
|
||||
<planet>
|
||||
<surface>
|
||||
<sign>
|
||||
<content>It's not cozy here for now, this little universe has to form itself first. :)</content>
|
||||
<pole></pole>
|
||||
</sign>
|
||||
</surface>
|
||||
<moon></moon>
|
||||
</planet>
|
||||
<surface>
|
||||
<sign>
|
||||
<content>It's not cozy here for now, this little universe has to form itself first. :)</content>
|
||||
<pole></pole>
|
||||
</sign>
|
||||
</surface>
|
||||
<sun></sun>
|
||||
<moon></moon>
|
||||
</solarsystem>
|
||||
</body>
|
||||
</html>
|
||||
|
|
BIN
stars.png
Normal file
BIN
stars.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 336 B |
Loading…
Reference in a new issue