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

View File

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

View File

@ -16,8 +16,8 @@
}
#mercury {
--period: 4.82s;
--radius: #pr_mercury.css;
--color: #c89d7c;
--radius: 30px;
--color: var(--background-alt);
width: var(--radius);
height: var(--radius);
@ -43,4 +43,6 @@
width: 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;
border-radius: 50%;
display: inline-block;
width: var(--radius);
height: var(--radius);
}
.orbit {
position: absolute;
border: #orbit_thickness.css solid var(--foreground-inactive);
/*border: #orbit_thickness.css solid var(--foreground-inactive);*/
border-radius: 100%;
background-color: transparent;
opacity: 0.2;
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 {
--period: 12.3s;
--radius: #pr_venus.css;
--color: #eed053;
--color: var(--background-alt);
width: var(--radius);
height: var(--radius);
@ -43,6 +43,5 @@
width: var(--diameter);
height: var(--diameter);
opacity: 0.1;
border: #orbit_thickness.css solid var(--background-alt);
}

View File

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