Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,54 @@
</v-card>
</v-col>
</v-row>

<div>

<p class="font-weight-white text">
OUR PLATFORM
</p>

<p class="font-weight-white text">
FEATURES
</p>
<p class="font-weight-white text">
ABOUT US
</p>

</template>

<style scoped>
@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Londrina+Shadow&family=Poppins:wght@200;300;400;500;600&family=Roboto:wght@300&display=swap');

.text{
font-size: 70px;
padding-top: 30px;
text-align: right;
font-family:Londrina Shadow;
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}


.text:hover{
-webkit-text-stroke: 1px white;
color: white;
text-shadow:
3px 3px 0 #fff,
-1px -1px 0 #fff,
1px -1px 0 #fff,
-1px 1px 0 #fff,
1px 1px 0 #fff;

}


</style>

<script>
export default {
name: 'IndexPage'
Expand Down