2021-09-14 00:30:16 +01:00
|
|
|
.planets {
|
|
|
|
overflow: hidden;
|
2021-10-15 00:33:17 +01:00
|
|
|
position: fixed;
|
2021-09-14 00:30:16 +01:00
|
|
|
height: 80vmax;
|
|
|
|
width: 80vmax;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: -1;
|
|
|
|
|
2021-09-15 01:41:51 +01:00
|
|
|
/*background-color: var(--background);*/
|
|
|
|
background-color: transparent;
|
2021-09-14 00:30:16 +01:00
|
|
|
}
|
2021-12-31 16:37:00 +00:00
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
.planets {
|
2021-12-31 23:09:47 +00:00
|
|
|
height: 200vmax;
|
|
|
|
width: 200vmax;
|
2021-12-31 16:37:00 +00:00
|
|
|
|
|
|
|
transform: scale(0.5) translate(50%, 50%);
|
|
|
|
}
|
|
|
|
}
|
2021-09-14 00:30:16 +01:00
|
|
|
|
|
|
|
.planet {
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
2021-10-14 23:56:41 +01:00
|
|
|
|
|
|
|
width: var(--radius);
|
|
|
|
height: var(--radius);
|
2021-09-14 00:30:16 +01:00
|
|
|
}
|
|
|
|
|
2021-09-15 01:41:51 +01:00
|
|
|
.orbit {
|
|
|
|
position: absolute;
|
|
|
|
|
2021-10-14 23:56:41 +01:00
|
|
|
/*border: #orbit_thickness.css solid var(--foreground-inactive);*/
|
2021-09-15 01:41:51 +01:00
|
|
|
border-radius: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
z-index:-1;
|
|
|
|
}
|
|
|
|
|
2021-09-14 00:30:16 +01:00
|
|
|
#include mercury.css
|
|
|
|
#include earth.css
|
|
|
|
#include venus.css
|
|
|
|
#include mars.css
|