Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added exploration message #22

Merged
merged 4 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
64 changes: 64 additions & 0 deletions components/ExplorationMessage.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<template>
<div class="exploration-container">
<div class="exploration-message">
<p><i>Bitcamp is a place for exploration...</i>
<br><br>
You have 36 hours to explore, learn, and create with world-class mentors and over 1,000 participants.
Whether you're a seasoned hacker or new to it all, there's something for everyone.
<br><br>
<b>If you're ready for an adventure, we'll see you by the campfire!</b>
</p>
</div>
</div>
</template>

<script lang="ts">
export default {
name: 'ExplorationMessage',
};
</script>

<style scoped>
.exploration-message {
background-color: #B94923;
border-radius: 6rem;
border: 15px solid #FFD978;
border-right-style: none;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
float: right;
color: white;
padding: 3rem;
padding-left: 5rem;
padding-right: 6rem;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
font-family: Aleo;
box-sizing: border-box;
max-width: 70rem;
}

.exploration-container {
background-color: #ff5b01;
position: relative;
width: 100%;
}

@media (max-width: 796px) {

.exploration-message {
background-image: linear-gradient(#084600, #C4B500);
border: 0;
border-radius: 0;
text-align: center;
width: 100%;
margin: 0;
padding: 6rem;
padding-left: 13rem;
padding-right: 13rem;
max-width: none;
}
}



</style>
15 changes: 14 additions & 1 deletion components/LandingPage.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<template>
<div class="gradient">Landing Page
<div class="gradient">
Landing Page
<ExplorationMessage />
</div>
</template>

<script lang="ts">
import ExplorationMessage from '~/components/ExplorationMessage.vue';

export default {
name: 'PastEventsGrid',
};
Expand All @@ -15,4 +19,13 @@ export default {
display: flex;
height: 40rem;
}

@media (max-width: 796px) {
.gradient {
background-color: #ff5b01;
display: flex;
flex-direction: column;
height: 40rem;
}
}
</style>