Skip to content

Commit

Permalink
added home page
Browse files Browse the repository at this point in the history
  • Loading branch information
DaKahd committed Mar 14, 2024
1 parent cb2ae3f commit b2176b9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 6 deletions.
31 changes: 27 additions & 4 deletions src/routes/(app)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,17 @@

<div class="main">
<!-- <Topnav />-->
<div class="sub"></div>
<div class="sub">
<img alt="CVHS falcon logo" class="big-logo" src="/CVHS-logo.png">
<ul class="list">
<li><p>You must have a locker partner to register for a locker at CV.</p></li>
<li><p>The only exception to this is if you are opting for one of the single lockers on the 3rd floor of the 1000 building.</p></li>
<li><p>If you forget your locker number, you can use the "lookup" feature to find it.</p></li>
<li><p>Locks are available to purhcase at the student store.</p></li>
<li><p>You and your partner are responsible for all items in the locker.</p></li>
<li><p>CV is not responsible for lost or stolen items from lockers.</p></li>
</ul>
</div>
<!-- <Botnav pageId={0}/>-->
</div>

Expand All @@ -40,9 +50,22 @@
width: 100vw;
flex: 1;
}
.list{
padding:2vw;
}
.big-logo{
display: block;
max-height: 20vh;
margin-left: auto;
margin-right: auto;
}
p{
font-size: 20px;
font-family: 'Montserrat', sans-serif;
color: #d6d6d6;
text-align: center;
padding:1vh
}
.sub{
display: flex;
flex: 1;
}
</style>
12 changes: 10 additions & 2 deletions src/routes/(app)/help/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

<div class="main">
<!-- <Topnav />-->
<div class="sub"></div>
<div class="sub">

</div>
<!-- <Botnav pageId={0}/>-->
</div>

Expand All @@ -28,7 +30,12 @@
--secondary: #1b2c42;
--accent: #577db2;
}
p{
font-size: 20px;
font-family: 'Montserrat', sans-serif;
color: #d6d6d6;
text-align: center;
}
.main {
display: flex;
flex-direction: column;
Expand All @@ -41,4 +48,5 @@
display: flex;
flex: 1;
}
</style>

0 comments on commit b2176b9

Please sign in to comment.