-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/release'
- Loading branch information
Showing
14 changed files
with
669 additions
and
33 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<script setup> | ||
import virtual_orrey from '@/assets/images/virtual_orrery.jpeg' | ||
</script> | ||
<template> | ||
<section class="exploration-hero"> | ||
<h1 class="exploration-title">Look beyond Earth. <br />Explore with us!</h1> | ||
</section> | ||
<div class="module-container"> | ||
<div class="submodule submodule-orrery"> | ||
<h1 class="orrery-title">Virtual Orrery</h1> | ||
<p class="orrery-description"> | ||
Let's explore <br />the Solar System! | ||
</p> | ||
</div> | ||
</div> | ||
<div> | ||
</div> | ||
</template> | ||
|
||
<style scoped lang="scss"> | ||
.exploration-hero { | ||
max-width: 866px; | ||
position: relative; | ||
top: 12%; | ||
left: 12%; | ||
} | ||
.exploration-title { | ||
color: #fff; | ||
font: 800 64px/80px Gilroy, sans-serif; | ||
letter-spacing: 6.4px; | ||
padding: 17px 0; | ||
} | ||
.module-container { | ||
position: relative; | ||
top: 12%; | ||
left: 12%; | ||
.submodule { | ||
height: 380px; | ||
border: 2px solid white; | ||
border-radius: 25px; | ||
} | ||
.submodule-orrery { | ||
padding: 38px 80px 38px 35px; | ||
width: 480px; | ||
// background-color: aqua; | ||
background: v-bind("`no-repeat center/90% url('${virtual_orrey}')`"); | ||
} | ||
.orrery-title { | ||
position: relative; | ||
text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5); | ||
font-size: 40px; | ||
line-height: 1; | ||
letter-spacing: 4px; | ||
} | ||
.orrery-description { | ||
position: relative; | ||
text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5); | ||
font-size: 24px; | ||
line-height: 35px; | ||
letter-spacing: 2.4px; | ||
margin-top: 185px; | ||
} | ||
} | ||
/* | ||
@media (max-width: 991px) { | ||
.exploration-title { | ||
font-size: 40px; | ||
line-height: 55px; | ||
max-width: 100%; | ||
padding-right: 20px; | ||
} | ||
} */ | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<template> | ||
<SmorreryScence /> | ||
<ExplorationHero /> | ||
</template> | ||
|
||
<script setup> | ||
import ExplorationHero from '@/components/ExplorationHero.vue'; | ||
// | ||
</script> |
Oops, something went wrong.