├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── logo.svg ├── package-lock.json ├── package.json ├── public ├── assets │ ├── cards │ │ ├── callisto.png │ │ ├── earth.png │ │ ├── europa.png │ │ ├── ganymede.png │ │ ├── io.png │ │ ├── jupiter.png │ │ ├── mars.png │ │ ├── mercury.png │ │ ├── moon.png │ │ ├── neptune.png │ │ ├── saturn.png │ │ ├── sun.png │ │ ├── titan.png │ │ ├── triton.png │ │ ├── uranus.png │ │ └── venus.png │ ├── gltf │ │ ├── callisto.glb │ │ ├── earth.glb │ │ ├── europa.glb │ │ ├── ganymede.glb │ │ ├── io.glb │ │ ├── jupiter.glb │ │ ├── mars.glb │ │ ├── mercury.glb │ │ ├── moon.glb │ │ ├── neptune.glb │ │ ├── saturn.glb │ │ ├── sun.glb │ │ ├── titan.glb │ │ ├── triton.glb │ │ ├── uranus.glb │ │ └── venus.glb │ ├── ogmeta.jpg │ ├── textures │ │ ├── lensflare0.png │ │ └── lensflare1.png │ └── universe.jpg └── favicon.ico ├── readme_gif.gif ├── src ├── App.vue ├── components │ ├── Options.vue │ ├── PlanetCard.vue │ └── Scene.vue ├── constants.js ├── main.js └── sass │ └── main.scss └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | .vscode 26 | blender_assets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |

3 |

Solar System

4 |
🌎​ Interactive Solar System 3D replica 🪐
5 | 6 |

7 | GitHub Repo stars 8 | GitHub 9 |

10 | 11 | ### 12 | 13 |

Try it out!

14 | 15 | ### 16 | 17 |

18 | Solar system gif 19 |

20 |

Made with ThreeJS and Vue

21 | 22 | 23 | ### How does it work? 24 | - Move around the Solar system with mouse 25 | - Click on planet or moon to find out more about it 26 | - Change the speed with side menu 27 | 28 | ### How to install 29 | - Clone repository to your local machine 30 | - Open terminal and cd into repository folder 31 | - run npm install 32 | - run npm run dev 33 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Solar System - View our Solar system in 3D interactive view! 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 |

Our Solar System

37 |
38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- 1 | 2 | image/svg+xml 48 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "solarsystem", 3 | "version": "0.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@babel/parser": { 8 | "version": "7.18.6", 9 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", 10 | "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" 11 | }, 12 | "@types/three": { 13 | "version": "0.141.0", 14 | "resolved": "https://registry.npmjs.org/@types/three/-/three-0.141.0.tgz", 15 | "integrity": "sha512-OJdKDgTPVBUgc+s74DYoy4aLznbFFC38Xm4ElmU1YwGNgR7GGFVvFCX7lpVgOsT6S1zSJtGdajTsOYE8/xY9nA==", 16 | "dev": true, 17 | "requires": { 18 | "@types/webxr": "*" 19 | } 20 | }, 21 | "@types/webxr": { 22 | "version": "0.4.0", 23 | "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.4.0.tgz", 24 | "integrity": "sha512-LQvrACV3Pj17GpkwHwXuTd733gfY+D7b9mKdrTmLdO7vo7P/o6209Qqtk63y/FCv/lspdmi0pWz6Qe/ull9kQg==", 25 | "dev": true 26 | }, 27 | "@vitejs/plugin-vue": { 28 | "version": "2.3.3", 29 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-2.3.3.tgz", 30 | "integrity": "sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==", 31 | "dev": true 32 | }, 33 | "@vue/compiler-core": { 34 | "version": "3.2.37", 35 | "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.37.tgz", 36 | "integrity": "sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==", 37 | "requires": { 38 | "@babel/parser": "^7.16.4", 39 | "@vue/shared": "3.2.37", 40 | "estree-walker": "^2.0.2", 41 | "source-map": "^0.6.1" 42 | } 43 | }, 44 | "@vue/compiler-dom": { 45 | "version": "3.2.37", 46 | "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.37.tgz", 47 | "integrity": "sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ==", 48 | "requires": { 49 | "@vue/compiler-core": "3.2.37", 50 | "@vue/shared": "3.2.37" 51 | } 52 | }, 53 | "@vue/compiler-sfc": { 54 | "version": "3.2.37", 55 | "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.37.tgz", 56 | "integrity": "sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==", 57 | "requires": { 58 | "@babel/parser": "^7.16.4", 59 | "@vue/compiler-core": "3.2.37", 60 | "@vue/compiler-dom": "3.2.37", 61 | "@vue/compiler-ssr": "3.2.37", 62 | "@vue/reactivity-transform": "3.2.37", 63 | "@vue/shared": "3.2.37", 64 | "estree-walker": "^2.0.2", 65 | "magic-string": "^0.25.7", 66 | "postcss": "^8.1.10", 67 | "source-map": "^0.6.1" 68 | } 69 | }, 70 | "@vue/compiler-ssr": { 71 | "version": "3.2.37", 72 | "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.37.tgz", 73 | "integrity": "sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw==", 74 | "requires": { 75 | "@vue/compiler-dom": "3.2.37", 76 | "@vue/shared": "3.2.37" 77 | } 78 | }, 79 | "@vue/reactivity": { 80 | "version": "3.2.37", 81 | "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.37.tgz", 82 | "integrity": "sha512-/7WRafBOshOc6m3F7plwzPeCu/RCVv9uMpOwa/5PiY1Zz+WLVRWiy0MYKwmg19KBdGtFWsmZ4cD+LOdVPcs52A==", 83 | "requires": { 84 | "@vue/shared": "3.2.37" 85 | } 86 | }, 87 | "@vue/reactivity-transform": { 88 | "version": "3.2.37", 89 | "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.37.tgz", 90 | "integrity": "sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==", 91 | "requires": { 92 | "@babel/parser": "^7.16.4", 93 | "@vue/compiler-core": "3.2.37", 94 | "@vue/shared": "3.2.37", 95 | "estree-walker": "^2.0.2", 96 | "magic-string": "^0.25.7" 97 | } 98 | }, 99 | "@vue/runtime-core": { 100 | "version": "3.2.37", 101 | "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.37.tgz", 102 | "integrity": "sha512-JPcd9kFyEdXLl/i0ClS7lwgcs0QpUAWj+SKX2ZC3ANKi1U4DOtiEr6cRqFXsPwY5u1L9fAjkinIdB8Rz3FoYNQ==", 103 | "requires": { 104 | "@vue/reactivity": "3.2.37", 105 | "@vue/shared": "3.2.37" 106 | } 107 | }, 108 | "@vue/runtime-dom": { 109 | "version": "3.2.37", 110 | "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.37.tgz", 111 | "integrity": "sha512-HimKdh9BepShW6YozwRKAYjYQWg9mQn63RGEiSswMbW+ssIht1MILYlVGkAGGQbkhSh31PCdoUcfiu4apXJoPw==", 112 | "requires": { 113 | "@vue/runtime-core": "3.2.37", 114 | "@vue/shared": "3.2.37", 115 | "csstype": "^2.6.8" 116 | } 117 | }, 118 | "@vue/server-renderer": { 119 | "version": "3.2.37", 120 | "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.37.tgz", 121 | "integrity": "sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA==", 122 | "requires": { 123 | "@vue/compiler-ssr": "3.2.37", 124 | "@vue/shared": "3.2.37" 125 | } 126 | }, 127 | "@vue/shared": { 128 | "version": "3.2.37", 129 | "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.37.tgz", 130 | "integrity": "sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==" 131 | }, 132 | "anymatch": { 133 | "version": "3.1.2", 134 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", 135 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", 136 | "dev": true, 137 | "requires": { 138 | "normalize-path": "^3.0.0", 139 | "picomatch": "^2.0.4" 140 | } 141 | }, 142 | "binary-extensions": { 143 | "version": "2.2.0", 144 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 145 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 146 | "dev": true 147 | }, 148 | "braces": { 149 | "version": "3.0.2", 150 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 151 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 152 | "dev": true, 153 | "requires": { 154 | "fill-range": "^7.0.1" 155 | } 156 | }, 157 | "chokidar": { 158 | "version": "3.5.3", 159 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 160 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 161 | "dev": true, 162 | "requires": { 163 | "anymatch": "~3.1.2", 164 | "braces": "~3.0.2", 165 | "fsevents": "~2.3.2", 166 | "glob-parent": "~5.1.2", 167 | "is-binary-path": "~2.1.0", 168 | "is-glob": "~4.0.1", 169 | "normalize-path": "~3.0.0", 170 | "readdirp": "~3.6.0" 171 | } 172 | }, 173 | "csstype": { 174 | "version": "2.6.20", 175 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.20.tgz", 176 | "integrity": "sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==" 177 | }, 178 | "esbuild": { 179 | "version": "0.14.48", 180 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.48.tgz", 181 | "integrity": "sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA==", 182 | "dev": true, 183 | "requires": { 184 | "esbuild-android-64": "0.14.48", 185 | "esbuild-android-arm64": "0.14.48", 186 | "esbuild-darwin-64": "0.14.48", 187 | "esbuild-darwin-arm64": "0.14.48", 188 | "esbuild-freebsd-64": "0.14.48", 189 | "esbuild-freebsd-arm64": "0.14.48", 190 | "esbuild-linux-32": "0.14.48", 191 | "esbuild-linux-64": "0.14.48", 192 | "esbuild-linux-arm": "0.14.48", 193 | "esbuild-linux-arm64": "0.14.48", 194 | "esbuild-linux-mips64le": "0.14.48", 195 | "esbuild-linux-ppc64le": "0.14.48", 196 | "esbuild-linux-riscv64": "0.14.48", 197 | "esbuild-linux-s390x": "0.14.48", 198 | "esbuild-netbsd-64": "0.14.48", 199 | "esbuild-openbsd-64": "0.14.48", 200 | "esbuild-sunos-64": "0.14.48", 201 | "esbuild-windows-32": "0.14.48", 202 | "esbuild-windows-64": "0.14.48", 203 | "esbuild-windows-arm64": "0.14.48" 204 | } 205 | }, 206 | "esbuild-android-64": { 207 | "version": "0.14.48", 208 | "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.48.tgz", 209 | "integrity": "sha512-3aMjboap/kqwCUpGWIjsk20TtxVoKck8/4Tu19rubh7t5Ra0Yrpg30Mt1QXXlipOazrEceGeWurXKeFJgkPOUg==", 210 | "dev": true, 211 | "optional": true 212 | }, 213 | "esbuild-android-arm64": { 214 | "version": "0.14.48", 215 | "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.48.tgz", 216 | "integrity": "sha512-vptI3K0wGALiDq+EvRuZotZrJqkYkN5282iAfcffjI5lmGG9G1ta/CIVauhY42MBXwEgDJkweiDcDMRLzBZC4g==", 217 | "dev": true, 218 | "optional": true 219 | }, 220 | "esbuild-darwin-64": { 221 | "version": "0.14.48", 222 | "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.48.tgz", 223 | "integrity": "sha512-gGQZa4+hab2Va/Zww94YbshLuWteyKGD3+EsVon8EWTWhnHFRm5N9NbALNbwi/7hQ/hM1Zm4FuHg+k6BLsl5UA==", 224 | "dev": true, 225 | "optional": true 226 | }, 227 | "esbuild-darwin-arm64": { 228 | "version": "0.14.48", 229 | "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.48.tgz", 230 | "integrity": "sha512-bFjnNEXjhZT+IZ8RvRGNJthLWNHV5JkCtuOFOnjvo5pC0sk2/QVk0Qc06g2PV3J0TcU6kaPC3RN9yy9w2PSLEA==", 231 | "dev": true, 232 | "optional": true 233 | }, 234 | "esbuild-freebsd-64": { 235 | "version": "0.14.48", 236 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.48.tgz", 237 | "integrity": "sha512-1NOlwRxmOsnPcWOGTB10JKAkYSb2nue0oM1AfHWunW/mv3wERfJmnYlGzL3UAOIUXZqW8GeA2mv+QGwq7DToqA==", 238 | "dev": true, 239 | "optional": true 240 | }, 241 | "esbuild-freebsd-arm64": { 242 | "version": "0.14.48", 243 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.48.tgz", 244 | "integrity": "sha512-gXqKdO8wabVcYtluAbikDH2jhXp+Klq5oCD5qbVyUG6tFiGhrC9oczKq3vIrrtwcxDQqK6+HDYK8Zrd4bCA9Gw==", 245 | "dev": true, 246 | "optional": true 247 | }, 248 | "esbuild-linux-32": { 249 | "version": "0.14.48", 250 | "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.48.tgz", 251 | "integrity": "sha512-ghGyDfS289z/LReZQUuuKq9KlTiTspxL8SITBFQFAFRA/IkIvDpnZnCAKTCjGXAmUqroMQfKJXMxyjJA69c/nQ==", 252 | "dev": true, 253 | "optional": true 254 | }, 255 | "esbuild-linux-64": { 256 | "version": "0.14.48", 257 | "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.48.tgz", 258 | "integrity": "sha512-vni3p/gppLMVZLghI7oMqbOZdGmLbbKR23XFARKnszCIBpEMEDxOMNIKPmMItQrmH/iJrL1z8Jt2nynY0bE1ug==", 259 | "dev": true, 260 | "optional": true 261 | }, 262 | "esbuild-linux-arm": { 263 | "version": "0.14.48", 264 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.48.tgz", 265 | "integrity": "sha512-+VfSV7Akh1XUiDNXgqgY1cUP1i2vjI+BmlyXRfVz5AfV3jbpde8JTs5Q9sYgaoq5cWfuKfoZB/QkGOI+QcL1Tw==", 266 | "dev": true, 267 | "optional": true 268 | }, 269 | "esbuild-linux-arm64": { 270 | "version": "0.14.48", 271 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.48.tgz", 272 | "integrity": "sha512-3CFsOlpoxlKPRevEHq8aAntgYGYkE1N9yRYAcPyng/p4Wyx0tPR5SBYsxLKcgPB9mR8chHEhtWYz6EZ+H199Zw==", 273 | "dev": true, 274 | "optional": true 275 | }, 276 | "esbuild-linux-mips64le": { 277 | "version": "0.14.48", 278 | "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.48.tgz", 279 | "integrity": "sha512-cs0uOiRlPp6ymknDnjajCgvDMSsLw5mST2UXh+ZIrXTj2Ifyf2aAP3Iw4DiqgnyYLV2O/v/yWBJx+WfmKEpNLA==", 280 | "dev": true, 281 | "optional": true 282 | }, 283 | "esbuild-linux-ppc64le": { 284 | "version": "0.14.48", 285 | "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.48.tgz", 286 | "integrity": "sha512-+2F0vJMkuI0Wie/wcSPDCqXvSFEELH7Jubxb7mpWrA/4NpT+/byjxDz0gG6R1WJoeDefcrMfpBx4GFNN1JQorQ==", 287 | "dev": true, 288 | "optional": true 289 | }, 290 | "esbuild-linux-riscv64": { 291 | "version": "0.14.48", 292 | "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.48.tgz", 293 | "integrity": "sha512-BmaK/GfEE+5F2/QDrIXteFGKnVHGxlnK9MjdVKMTfvtmudjY3k2t8NtlY4qemKSizc+QwyombGWTBDc76rxePA==", 294 | "dev": true, 295 | "optional": true 296 | }, 297 | "esbuild-linux-s390x": { 298 | "version": "0.14.48", 299 | "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.48.tgz", 300 | "integrity": "sha512-tndw/0B9jiCL+KWKo0TSMaUm5UWBLsfCKVdbfMlb3d5LeV9WbijZ8Ordia8SAYv38VSJWOEt6eDCdOx8LqkC4g==", 301 | "dev": true, 302 | "optional": true 303 | }, 304 | "esbuild-netbsd-64": { 305 | "version": "0.14.48", 306 | "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.48.tgz", 307 | "integrity": "sha512-V9hgXfwf/T901Lr1wkOfoevtyNkrxmMcRHyticybBUHookznipMOHoF41Al68QBsqBxnITCEpjjd4yAos7z9Tw==", 308 | "dev": true, 309 | "optional": true 310 | }, 311 | "esbuild-openbsd-64": { 312 | "version": "0.14.48", 313 | "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.48.tgz", 314 | "integrity": "sha512-+IHf4JcbnnBl4T52egorXMatil/za0awqzg2Vy6FBgPcBpisDWT2sVz/tNdrK9kAqj+GZG/jZdrOkj7wsrNTKA==", 315 | "dev": true, 316 | "optional": true 317 | }, 318 | "esbuild-sunos-64": { 319 | "version": "0.14.48", 320 | "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.48.tgz", 321 | "integrity": "sha512-77m8bsr5wOpOWbGi9KSqDphcq6dFeJyun8TA+12JW/GAjyfTwVtOnN8DOt6DSPUfEV+ltVMNqtXUeTeMAxl5KA==", 322 | "dev": true, 323 | "optional": true 324 | }, 325 | "esbuild-windows-32": { 326 | "version": "0.14.48", 327 | "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.48.tgz", 328 | "integrity": "sha512-EPgRuTPP8vK9maxpTGDe5lSoIBHGKO/AuxDncg5O3NkrPeLNdvvK8oywB0zGaAZXxYWfNNSHskvvDgmfVTguhg==", 329 | "dev": true, 330 | "optional": true 331 | }, 332 | "esbuild-windows-64": { 333 | "version": "0.14.48", 334 | "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.48.tgz", 335 | "integrity": "sha512-YmpXjdT1q0b8ictSdGwH3M8VCoqPpK1/UArze3X199w6u8hUx3V8BhAi1WjbsfDYRBanVVtduAhh2sirImtAvA==", 336 | "dev": true, 337 | "optional": true 338 | }, 339 | "esbuild-windows-arm64": { 340 | "version": "0.14.48", 341 | "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.48.tgz", 342 | "integrity": "sha512-HHaOMCsCXp0rz5BT2crTka6MPWVno121NKApsGs/OIW5QC0ggC69YMGs1aJct9/9FSUF4A1xNE/cLvgB5svR4g==", 343 | "dev": true, 344 | "optional": true 345 | }, 346 | "estree-walker": { 347 | "version": "2.0.2", 348 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 349 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" 350 | }, 351 | "fill-range": { 352 | "version": "7.0.1", 353 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 354 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 355 | "dev": true, 356 | "requires": { 357 | "to-regex-range": "^5.0.1" 358 | } 359 | }, 360 | "fsevents": { 361 | "version": "2.3.2", 362 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 363 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 364 | "dev": true, 365 | "optional": true 366 | }, 367 | "function-bind": { 368 | "version": "1.1.1", 369 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 370 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 371 | "dev": true 372 | }, 373 | "glob-parent": { 374 | "version": "5.1.2", 375 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 376 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 377 | "dev": true, 378 | "requires": { 379 | "is-glob": "^4.0.1" 380 | } 381 | }, 382 | "has": { 383 | "version": "1.0.3", 384 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 385 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 386 | "dev": true, 387 | "requires": { 388 | "function-bind": "^1.1.1" 389 | } 390 | }, 391 | "immutable": { 392 | "version": "4.1.0", 393 | "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz", 394 | "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==", 395 | "dev": true 396 | }, 397 | "is-binary-path": { 398 | "version": "2.1.0", 399 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 400 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 401 | "dev": true, 402 | "requires": { 403 | "binary-extensions": "^2.0.0" 404 | } 405 | }, 406 | "is-core-module": { 407 | "version": "2.9.0", 408 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", 409 | "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", 410 | "dev": true, 411 | "requires": { 412 | "has": "^1.0.3" 413 | } 414 | }, 415 | "is-extglob": { 416 | "version": "2.1.1", 417 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 418 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 419 | "dev": true 420 | }, 421 | "is-glob": { 422 | "version": "4.0.3", 423 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 424 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 425 | "dev": true, 426 | "requires": { 427 | "is-extglob": "^2.1.1" 428 | } 429 | }, 430 | "is-number": { 431 | "version": "7.0.0", 432 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 433 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 434 | "dev": true 435 | }, 436 | "magic-string": { 437 | "version": "0.25.9", 438 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", 439 | "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", 440 | "requires": { 441 | "sourcemap-codec": "^1.4.8" 442 | } 443 | }, 444 | "nanoid": { 445 | "version": "3.3.4", 446 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", 447 | "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" 448 | }, 449 | "normalize-path": { 450 | "version": "3.0.0", 451 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 452 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 453 | "dev": true 454 | }, 455 | "path-parse": { 456 | "version": "1.0.7", 457 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 458 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 459 | "dev": true 460 | }, 461 | "picocolors": { 462 | "version": "1.0.0", 463 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 464 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 465 | }, 466 | "picomatch": { 467 | "version": "2.3.1", 468 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 469 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 470 | "dev": true 471 | }, 472 | "postcss": { 473 | "version": "8.4.14", 474 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 475 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 476 | "requires": { 477 | "nanoid": "^3.3.4", 478 | "picocolors": "^1.0.0", 479 | "source-map-js": "^1.0.2" 480 | } 481 | }, 482 | "postprocessing": { 483 | "version": "6.28.1", 484 | "resolved": "https://registry.npmjs.org/postprocessing/-/postprocessing-6.28.1.tgz", 485 | "integrity": "sha512-3KwA5k9IwdB0bpyJ/jK1KnXAk1BJYV1jnywGXJnQXg5trSNVRUq0Gkas2GDIpo+6ThCbwb20NmF6WQOaeyk1Og==" 486 | }, 487 | "readdirp": { 488 | "version": "3.6.0", 489 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 490 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 491 | "dev": true, 492 | "requires": { 493 | "picomatch": "^2.2.1" 494 | } 495 | }, 496 | "resolve": { 497 | "version": "1.22.1", 498 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", 499 | "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", 500 | "dev": true, 501 | "requires": { 502 | "is-core-module": "^2.9.0", 503 | "path-parse": "^1.0.7", 504 | "supports-preserve-symlinks-flag": "^1.0.0" 505 | } 506 | }, 507 | "rollup": { 508 | "version": "2.75.7", 509 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.75.7.tgz", 510 | "integrity": "sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==", 511 | "dev": true, 512 | "requires": { 513 | "fsevents": "~2.3.2" 514 | } 515 | }, 516 | "sass": { 517 | "version": "1.53.0", 518 | "resolved": "https://registry.npmjs.org/sass/-/sass-1.53.0.tgz", 519 | "integrity": "sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==", 520 | "dev": true, 521 | "requires": { 522 | "chokidar": ">=3.0.0 <4.0.0", 523 | "immutable": "^4.0.0", 524 | "source-map-js": ">=0.6.2 <2.0.0" 525 | } 526 | }, 527 | "source-map": { 528 | "version": "0.6.1", 529 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 530 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" 531 | }, 532 | "source-map-js": { 533 | "version": "1.0.2", 534 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 535 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" 536 | }, 537 | "sourcemap-codec": { 538 | "version": "1.4.8", 539 | "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", 540 | "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" 541 | }, 542 | "supports-preserve-symlinks-flag": { 543 | "version": "1.0.0", 544 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 545 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 546 | "dev": true 547 | }, 548 | "three": { 549 | "version": "0.142.0", 550 | "resolved": "https://registry.npmjs.org/three/-/three-0.142.0.tgz", 551 | "integrity": "sha512-ESjPO+3geFr+ZUfVMpMnF/eVU2uJPOh0e2ZpMFqjNca1wApS9lJb7E4MjwGIczgt9iuKd8PEm6Pfgp2bJ92Xtg==" 552 | }, 553 | "to-regex-range": { 554 | "version": "5.0.1", 555 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 556 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 557 | "dev": true, 558 | "requires": { 559 | "is-number": "^7.0.0" 560 | } 561 | }, 562 | "vite": { 563 | "version": "2.9.13", 564 | "resolved": "https://registry.npmjs.org/vite/-/vite-2.9.13.tgz", 565 | "integrity": "sha512-AsOBAaT0AD7Mhe8DuK+/kE4aWYFMx/i0ZNi98hJclxb4e0OhQcZYUrvLjIaQ8e59Ui7txcvKMiJC1yftqpQoDw==", 566 | "dev": true, 567 | "requires": { 568 | "esbuild": "^0.14.27", 569 | "fsevents": "~2.3.2", 570 | "postcss": "^8.4.13", 571 | "resolve": "^1.22.0", 572 | "rollup": "^2.59.0" 573 | } 574 | }, 575 | "vue": { 576 | "version": "3.2.37", 577 | "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.37.tgz", 578 | "integrity": "sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==", 579 | "requires": { 580 | "@vue/compiler-dom": "3.2.37", 581 | "@vue/compiler-sfc": "3.2.37", 582 | "@vue/runtime-dom": "3.2.37", 583 | "@vue/server-renderer": "3.2.37", 584 | "@vue/shared": "3.2.37" 585 | } 586 | } 587 | } 588 | } 589 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "solarsystem", 3 | "private": true, 4 | "version": "0.0.0", 5 | "scripts": { 6 | "dev": "vite --host", 7 | "build": "vite build", 8 | "preview": "vite preview" 9 | }, 10 | "dependencies": { 11 | "postprocessing": "^6.28.1", 12 | "three": "^0.142.0", 13 | "vue": "^3.2.25" 14 | }, 15 | "devDependencies": { 16 | "@types/three": "^0.141.0", 17 | "@vitejs/plugin-vue": "^2.3.3", 18 | "sass": "^1.53.0", 19 | "vite": "^2.9.9" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /public/assets/cards/callisto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/callisto.png -------------------------------------------------------------------------------- /public/assets/cards/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/earth.png -------------------------------------------------------------------------------- /public/assets/cards/europa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/europa.png -------------------------------------------------------------------------------- /public/assets/cards/ganymede.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/ganymede.png -------------------------------------------------------------------------------- /public/assets/cards/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/io.png -------------------------------------------------------------------------------- /public/assets/cards/jupiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/jupiter.png -------------------------------------------------------------------------------- /public/assets/cards/mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/mars.png -------------------------------------------------------------------------------- /public/assets/cards/mercury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/mercury.png -------------------------------------------------------------------------------- /public/assets/cards/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/moon.png -------------------------------------------------------------------------------- /public/assets/cards/neptune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/neptune.png -------------------------------------------------------------------------------- /public/assets/cards/saturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/saturn.png -------------------------------------------------------------------------------- /public/assets/cards/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/sun.png -------------------------------------------------------------------------------- /public/assets/cards/titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/titan.png -------------------------------------------------------------------------------- /public/assets/cards/triton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/triton.png -------------------------------------------------------------------------------- /public/assets/cards/uranus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/uranus.png -------------------------------------------------------------------------------- /public/assets/cards/venus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/cards/venus.png -------------------------------------------------------------------------------- /public/assets/gltf/callisto.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/callisto.glb -------------------------------------------------------------------------------- /public/assets/gltf/earth.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/earth.glb -------------------------------------------------------------------------------- /public/assets/gltf/europa.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/europa.glb -------------------------------------------------------------------------------- /public/assets/gltf/ganymede.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/ganymede.glb -------------------------------------------------------------------------------- /public/assets/gltf/io.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/io.glb -------------------------------------------------------------------------------- /public/assets/gltf/jupiter.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/jupiter.glb -------------------------------------------------------------------------------- /public/assets/gltf/mars.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/mars.glb -------------------------------------------------------------------------------- /public/assets/gltf/mercury.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/mercury.glb -------------------------------------------------------------------------------- /public/assets/gltf/moon.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/moon.glb -------------------------------------------------------------------------------- /public/assets/gltf/neptune.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/neptune.glb -------------------------------------------------------------------------------- /public/assets/gltf/saturn.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/saturn.glb -------------------------------------------------------------------------------- /public/assets/gltf/sun.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/sun.glb -------------------------------------------------------------------------------- /public/assets/gltf/titan.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/titan.glb -------------------------------------------------------------------------------- /public/assets/gltf/triton.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/triton.glb -------------------------------------------------------------------------------- /public/assets/gltf/uranus.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/uranus.glb -------------------------------------------------------------------------------- /public/assets/gltf/venus.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/gltf/venus.glb -------------------------------------------------------------------------------- /public/assets/ogmeta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/ogmeta.jpg -------------------------------------------------------------------------------- /public/assets/textures/lensflare0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/textures/lensflare0.png -------------------------------------------------------------------------------- /public/assets/textures/lensflare1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/textures/lensflare1.png -------------------------------------------------------------------------------- /public/assets/universe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/assets/universe.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/public/favicon.ico -------------------------------------------------------------------------------- /readme_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honzaap/SolarSystem/7c638eec6c75b9d543b37b6cf33e2abe4bb24d07/readme_gif.gif -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 26 | 27 | 81 | -------------------------------------------------------------------------------- /src/components/Options.vue: -------------------------------------------------------------------------------- 1 | 26 | 27 | 46 | 47 | -------------------------------------------------------------------------------- /src/components/PlanetCard.vue: -------------------------------------------------------------------------------- 1 | 46 | 47 | 80 | 81 | -------------------------------------------------------------------------------- /src/components/Scene.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 503 | 504 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const PLANETS = [ 2 | /* - - Sun - - */ 3 | { 4 | name: "sun", 5 | displayName: "The Sun", 6 | caption: "Yellow dwarf star", 7 | description: "The Sun is the center of our solar system and source of life on Earth. The temperature in Sun's core is about 15 million °C (27 million °F).", 8 | year: "230 milion Earth years", 9 | day: null, 10 | radius: 695508, 11 | meanTemp: 5500, 12 | timesLarger: 109.2, 13 | orbitalVelocity: 0, 14 | orbitObject: null, 15 | orbitalRadius: 0, 16 | scaledOrbitalRadius: 0, 17 | rotationVelocity: 2, 18 | orbitalInclination: 0, 19 | axialTilt: 7.25, 20 | }, 21 | /* - - Sun - - */ 22 | 23 | /* - - Planets - - */ 24 | { 25 | name: "mercury", 26 | displayName: "Mercury", 27 | caption: "Swift Planet", 28 | description: "Mercury is the fastest and smallest planet in our solar system. On the surface, the Sun would appear 3 times as large as it does from Earth.", 29 | year: "88 Earth days", 30 | day: "59 Earth days", 31 | moons: 0, 32 | distanceFromSun: 0.4, 33 | minTemp: -170, 34 | maxTemp: 449, 35 | radius: 2439.7, 36 | timesLarger: 0.38, 37 | orbitalVelocity: 47.9, 38 | orbitObject: "sun", 39 | orbitalRadius: 57909050, 40 | scaledOrbitalRadius: 24, 41 | rotationVelocity: 0.003, 42 | orbitalInclination: 7, 43 | axialTilt: 0.03, 44 | }, 45 | { 46 | name: "venus", 47 | displayName: "Venus", 48 | caption: "Morning Star", 49 | description: "Venus is the hottest planet in our solar system. This is caused by its thick atmosphere which traps heat and causes greenhouse effect.", 50 | year: "225 Earth days", 51 | day: "243 Earth days", 52 | moons: 0, 53 | distanceFromSun: 0.7, 54 | meanTemp: 465, 55 | radius: 6051.8, 56 | timesLarger: 0.9, 57 | orbitalVelocity: 35.0, 58 | orbitObject: "sun", 59 | orbitalRadius: 108200000, 60 | scaledOrbitalRadius: 31, 61 | rotationVelocity: 0.003, 62 | orbitalInclination: 3.4, 63 | axialTilt: 177, 64 | }, 65 | { 66 | name: "earth", 67 | displayName: "Earth", 68 | caption: "Blue Planet", 69 | description: "Earth is the only planet in our solar system with liquid water on its surface. The atmosphere allows us humans to breathe, while it also protects us from meteoroids.", 70 | year: "365.25 Earth days", 71 | day: "23.9 hours", 72 | moons: 1, 73 | distanceFromSun: 1, 74 | minTemp: -89, 75 | maxTemp: 58, 76 | radius: 6371, 77 | timesLarger: -1, 78 | orbitalVelocity: 29.8, 79 | orbitObject: "sun", 80 | orbitalRadius: 149600000, 81 | scaledOrbitalRadius: 37, 82 | rotationVelocity: 0.46, 83 | orbitalInclination: 0, 84 | axialTilt: 23.44, 85 | }, 86 | { 87 | name: "mars", 88 | displayName: "Mars", 89 | caption: "Red Planet", 90 | description: "Mars is our best candidate for living outside of Earth. It is the only planet we've sent rovers to. Perseverance rover's Mars samples should make it to Earth in 2033.", 91 | year: "1.88 Earth years", 92 | day: "24.6 hours", 93 | moons: 2, 94 | distanceFromSun: 1.5, 95 | minTemp: -125, 96 | maxTemp: 20, 97 | radius: 3389.5, 98 | timesLarger: 0.52, 99 | orbitalVelocity: 24.1, 100 | orbitObject: "sun", 101 | orbitalRadius: 227939366, 102 | scaledOrbitalRadius: 45, 103 | rotationVelocity: 0.241, 104 | orbitalInclination: 1.8, 105 | axialTilt: 25.19, 106 | }, 107 | { 108 | name: "jupiter", 109 | displayName: "Jupiter", 110 | caption: "Giant Planet", 111 | description: "Jupiter is the largest planet in our solar system. The Great Red Spot is Jupiter's super storm that is twice the size of Earth and has raged for more than 100 years.", 112 | year: "11.86 Earth years", 113 | day: "9.93 hours", 114 | moons: 79, 115 | distanceFromSun: 5.1, 116 | meanTemp: -110, 117 | radius: 69911, 118 | timesLarger: 11, 119 | orbitalVelocity: 24.1, 120 | orbitObject: "sun", 121 | orbitalRadius: 778412027, 122 | scaledOrbitalRadius: 72, 123 | rotationVelocity: 12.6, 124 | orbitalInclination: 1.3, 125 | axialTilt: 3.13, 126 | }, 127 | { 128 | name: "saturn", 129 | displayName: "Saturn", 130 | caption: "Ringed Planet", 131 | description: "Saturn isn't the only ringed planet in our solar system, but none are as beautiful as Saturn's. Saturn has a total of 7 rings.", 132 | year: "29.45 Earth years", 133 | day: "10.7 hours", 134 | moons: 82, 135 | distanceFromSun: 9.5, 136 | meanTemp: -140, 137 | radius: 58232, 138 | timesLarger: 9.1, 139 | orbitalVelocity: 9.7, 140 | orbitObject: "sun", 141 | orbitalRadius: 1433530000, 142 | scaledOrbitalRadius: 108, 143 | rotationVelocity: 9.87, 144 | orbitalInclination: 2.5, 145 | axialTilt: 26.73, 146 | }, 147 | { 148 | name: "uranus", 149 | displayName: "Uranus", 150 | caption: "Ice Giant", 151 | description: "Uranus is an icy gas giant. It is the only planet in our solar system that rotates on its side. Just like Venus, Uranus also rotates east to west.", 152 | year: "84 Earth years", 153 | day: "17 hours", 154 | moons: 27, 155 | distanceFromSun: 19.8, 156 | meanTemp: -195, 157 | radius: 25362, 158 | timesLarger: 4, 159 | orbitalVelocity: 6.8, 160 | orbitObject: "sun", 161 | orbitalRadius: 2870972000, 162 | scaledOrbitalRadius: 145, 163 | rotationVelocity: 2.59, 164 | orbitalInclination: 0.8, 165 | axialTilt: 82.23, 166 | }, 167 | { 168 | name: "neptune", 169 | displayName: "Neptune", 170 | caption: "Big Blue Planet", 171 | description: "Neptune is the only planet in our solar system not visible to the naked eye. NASA's Voyager 2 flew by Neptune in 1989 making it the only spacecraft to visit it up close.", 172 | year: "164 Earth years", 173 | day: "16 hours", 174 | moons: 14, 175 | distanceFromSun: 30.1, 176 | meanTemp: -200, 177 | radius: 24622, 178 | timesLarger: 3.9, 179 | orbitalVelocity: 5.4, 180 | orbitObject: "sun", 181 | orbitalRadius: 4514953000, 182 | scaledOrbitalRadius: 180, 183 | rotationVelocity: 2.6, 184 | orbitalInclination: 1.8, 185 | axialTilt: 28.32, 186 | }, 187 | /* - - Sun - - */ 188 | 189 | /* - - Moons - - */ 190 | { 191 | name: "moon", 192 | displayName: "Earth's Moon", 193 | caption: "The brightest object in the night sky", 194 | description: "Earth's Moon is the fifth largest moon in our solar system. The Moon has so far had 24 human and more than 105 robotic visitors.", 195 | year: "27 days", 196 | radius: 1737.5, 197 | timesLarger: 0.27, 198 | distance: 385000, 199 | minTemp: -173, 200 | maxTemp: 127, 201 | orbitalVelocity: 1.022, 202 | orbitObject: "earth", 203 | orbitalRadius: 385000, 204 | scaledOrbitalRadius: 3, 205 | rotationVelocity: 0.005, 206 | orbitalInclination: 5.1, 207 | }, 208 | { 209 | name: "io", 210 | displayName: "Io", 211 | caption: "Most volcanic activity", 212 | description: "Io is so volcanically active that it has lakes made of lava. Some of its volcanoes are so powerful, that with a telescope they can be seen from Earth.", 213 | year: "42 hours", 214 | radius: 1821.6, 215 | timesLarger: 0.285, 216 | distance: 262000, 217 | meanTemp: -143, 218 | orbitalVelocity: 17.334, 219 | orbitObject: "jupiter", 220 | orbitalRadius: 262000, 221 | scaledOrbitalRadius: 10, 222 | rotationVelocity: 0.07, 223 | orbitalInclination: 0.05, 224 | }, 225 | { 226 | name: "europa", 227 | displayName: "Europa", 228 | caption: "Life promising moon", 229 | description: "Europa's subsurface ocean of salty water contains twice as much water as Earth's oceans. It is possible, that beneath its frozen surface exists some form of life.", 230 | year: "85 hours", 231 | radius: 1560.8, 232 | timesLarger: 0.24, 233 | distance: 670900, 234 | minTemp: -220, 235 | maxTemp: -160, 236 | orbitalVelocity: 13.743, 237 | orbitObject: "jupiter", 238 | orbitalRadius: 670900, 239 | scaledOrbitalRadius: 13, 240 | rotationVelocity: 0.03, 241 | orbitalInclination: 0.47, 242 | }, 243 | { 244 | name: "ganymede", 245 | displayName: "Ganymede", 246 | caption: "Largest moon in the Solar System", 247 | description: "Ganymede is a moon bigger than Mercury. Ganymede has underground oceans and a faint oxygen atmosphere. It is also only moon to have its own magnetic field.", 248 | year: "172 hours", 249 | radius: 2634.1, 250 | timesLarger: 0.416, 251 | distance: 1070400, 252 | minTemp: -180, 253 | maxTemp: -113, 254 | orbitalVelocity: 10.880, 255 | orbitObject: "jupiter", 256 | orbitalRadius: 1070400, 257 | scaledOrbitalRadius: 15, 258 | rotationVelocity: 0.026, 259 | orbitalInclination: 0.2, 260 | }, 261 | { 262 | name: "callisto", 263 | displayName: "Callisto", 264 | caption: "The long dead moon", 265 | description: "Callisto is the most heavily cratered object in our solar system. It has almost none geologic activity on its surface, but may contain oceans beneath the surface.", 266 | year: "17 days", 267 | radius: 2410.3, 268 | timesLarger: 0.384, 269 | distance: 1883000, 270 | minTemp: -193, 271 | maxTemp: -108, 272 | orbitalVelocity: 8.204, 273 | orbitObject: "jupiter", 274 | orbitalRadius: 1883000, 275 | scaledOrbitalRadius: 17.5, 276 | rotationVelocity: 0.01, 277 | orbitalInclination: 0.28, 278 | }, 279 | { 280 | name: "titan", 281 | displayName: "Titan", 282 | caption: "Moon with liquids on its surface", 283 | description: "Titan is the only moon in our solar system that has clouds and a dense atmosphere. There are also lakes and oceans on the surface, however they are made of methane and ethane.", 284 | year: "16 days", 285 | radius: 2574.7, 286 | timesLarger: 0.4, 287 | distance: 1221865, 288 | meanTemp: -179, 289 | orbitalVelocity: 5.57, 290 | orbitObject: "saturn", 291 | orbitalRadius: 1221865, 292 | scaledOrbitalRadius: 16, 293 | rotationVelocity: 0.011, 294 | orbitalInclination: 0.33, 295 | }, 296 | { 297 | name: "triton", 298 | displayName: "Triton", 299 | caption: "The coldest object in Solar system", 300 | description: "Triton is the coldest moon in our solar system. It is also the largest moon that orbits in the opposite direction of its planet's rotation.", 301 | year: "141 hours", 302 | radius: 1353.4, 303 | timesLarger: 0.21, 304 | distance: 354759, 305 | meanTemp: -235, 306 | orbitalVelocity: 4.39, 307 | orbitObject: "neptune", 308 | orbitalRadius: 354759, 309 | scaledOrbitalRadius: 7, 310 | rotationVelocity: 0.017, 311 | orbitalInclination: 156.885, 312 | }, 313 | /* - - Moons - - */ 314 | ] -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import App from './App.vue' 3 | import './sass/main.scss'; 4 | 5 | createApp(App).mount('#app') -------------------------------------------------------------------------------- /src/sass/main.scss: -------------------------------------------------------------------------------- 1 | :root{ 2 | --primary: #191C44; 3 | --secondary: #1A1D79; 4 | --tertiary: #0587cc; 5 | --text: #F3F3F3; 6 | --dark: #05051A; 7 | --radius: 18px; 8 | } 9 | 10 | *{ 11 | padding: 0; 12 | margin: 0; 13 | box-sizing: border-box; 14 | } 15 | 16 | body{ 17 | overflow: hidden; 18 | min-height: 100vh; 19 | min-width: 100vw; 20 | background: #000; 21 | color: var(--text); 22 | font-family: 'Chivo', sans-serif; 23 | position: relative; 24 | } 25 | 26 | h1, h2 { 27 | font-family: 'Bai Jamjuree', sans-serif; 28 | } 29 | 30 | h1 { 31 | position: absolute; 32 | pointer-events: none; 33 | display: block; 34 | top: 10px; 35 | left: 50%; 36 | transform: translateX(-50%); 37 | z-index: 1; 38 | font-size: 20px; 39 | } 40 | 41 | #app { 42 | width: 100%; 43 | height: 100%; 44 | position: relative; 45 | } 46 | 47 | .ico { 48 | width: 1em; 49 | height: 1em; 50 | } 51 | 52 | @media (max-width: 560px) { 53 | h1 { 54 | top: 2px; 55 | } 56 | } -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [vue()] 7 | }) 8 | --------------------------------------------------------------------------------