subtle-ise planets

This commit is contained in:
ktyl 2021-10-14 23:56:41 +01:00
parent a6bc2d9d8c
commit 64a459961d
13 changed files with 22 additions and 18 deletions

View File

@ -17,7 +17,7 @@
#earth { #earth {
--period: 20s; --period: 20s;
--radius: #pr_earth.css; --radius: #pr_earth.css;
--color: #87ceeb; --color: var(--background-alt);
width: var(--radius); width: var(--radius);
height: var(--radius); height: var(--radius);
@ -44,5 +44,5 @@
width: var(--diameter); width: var(--diameter);
height: var(--diameter); height: var(--diameter);
opacity: 0.065; border: #orbit_thickness.css solid var(--background-alt);
} }

View File

@ -17,7 +17,7 @@
#mars { #mars {
--period: 37.6s; --period: 37.6s;
--radius: #pr_mars.css; --radius: #pr_mars.css;
--color: #ff5349; --color: var(--background-alt);
width: var(--radius); width: var(--radius);
height: var(--radius); height: var(--radius);
@ -44,5 +44,5 @@
width: var(--diameter); width: var(--diameter);
height: var(--diameter); height: var(--diameter);
opacity: 0.05; border: #orbit_thickness.css solid var(--background-alt);
} }

View File

@ -16,8 +16,8 @@
} }
#mercury { #mercury {
--period: 4.82s; --period: 4.82s;
--radius: #pr_mercury.css; --radius: 30px;
--color: #c89d7c; --color: var(--background-alt);
width: var(--radius); width: var(--radius);
height: var(--radius); height: var(--radius);
@ -43,4 +43,6 @@
width: var(--diameter); width: var(--diameter);
height: var(--diameter); height: var(--diameter);
border: #orbit_thickness.css solid var(--background-alt);
} }

View File

@ -1 +1 @@
420px 440px

View File

@ -1 +1 @@
560px 570px

View File

@ -1 +1 @@
300px 320px

View File

@ -15,15 +15,17 @@
position: absolute; position: absolute;
border-radius: 50%; border-radius: 50%;
display: inline-block; display: inline-block;
width: var(--radius);
height: var(--radius);
} }
.orbit { .orbit {
position: absolute; position: absolute;
border: #orbit_thickness.css solid var(--foreground-inactive); /*border: #orbit_thickness.css solid var(--foreground-inactive);*/
border-radius: 100%; border-radius: 100%;
background-color: transparent; background-color: transparent;
opacity: 0.2;
z-index:-1; z-index:-1;
} }

View File

@ -1 +1 @@
70px 30px

View File

@ -1 +1 @@
50px 30px

View File

@ -1 +1 @@
40px 30px

View File

@ -1 +1 @@
60px 30px

View File

@ -17,7 +17,7 @@
#venus { #venus {
--period: 12.3s; --period: 12.3s;
--radius: #pr_venus.css; --radius: #pr_venus.css;
--color: #eed053; --color: var(--background-alt);
width: var(--radius); width: var(--radius);
height: var(--radius); height: var(--radius);
@ -43,6 +43,5 @@
width: var(--diameter); width: var(--diameter);
height: var(--diameter); height: var(--diameter);
border: #orbit_thickness.css solid var(--background-alt);
opacity: 0.1;
} }

View File

@ -1,6 +1,7 @@
:root { :root {
/* Special */ /* Special */
--background: #eee; --background: #eee;
--background-alt: #ccc;
--foreground: #222; --foreground: #222;
--foreground-inactive: #777; --foreground-inactive: #777;
--accent: lightpink; --accent: lightpink;