Skip to content
Merged
Show file tree
Hide file tree
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
27 changes: 16 additions & 11 deletions src/pages/wizard/wizard.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,37 @@
</ion-navbar>
</ion-header>


<ion-content >
<div class="nav-start">
<button ion-button class="start">Exit</button>
<button ion-button class="start">Back</button>

<button ion-button id="end">Start</button>
</div>
<ion-slides pager>
<ion-slide >
<div class='top'>
<h1>Welcome</h1>
<h1>Welcome</h1>
<p> InTranshition is an app designed for Veterans to transition into the civial environment.
This wizard will guide you through the app <br><br>
<strong> Scroll to the right to begin.</strong>
</p>
</div>
</ion-slide>
<ion-slide>
<div class='top'>
<h1>Home Dasboard</h1>
<div class='top'>
<h1>Home Dasboard</h1>

<p>Here you will find links to the timeline and self assessment section.<br><br>
Usefull tips and links are also available to check out. </p>
<img id='dashImg' src='../../assets/imgs/dashboard.png'>
</div>
<p>Here you will find links to the timeline and self assessment section.<br><br>
Usefull tips and links are also available to check out. </p>
<img id='dashImg' src='../../assets/imgs/dashboard.png'>
</div>
</ion-slide>
<ion-slide>
<div class='top'>
<h1>Self Assessment</h1>
<p>Here you will be promted to take your self assessment to assess your finances, relationships, family, and more!</p>
<img id="self" src='../../assets/imgs/asssesment.png'>
<h1>Self Assessment</h1>
<p>Here you will be promted to take your self assessment to assess your finances, relationships, family, and more!</p>
<img id="self" src='../../assets/imgs/asssesment.png'>
</div>
</ion-slide>
<ion-slide>
Expand Down
31 changes: 29 additions & 2 deletions src/pages/wizard/wizard.scss
Original file line number Diff line number Diff line change
@@ -1,15 +1,42 @@
page-wizard {
ion-slide {
background-color: rgb(117, 197, 74);
background-color: rgb(188, 208, 226);
}
ion-slide.swiper-slide {
align-items: flex-start;
}
.nav-start {
position: fixed;
background-color: rgb(26, 39, 71);
width: 100%;
z-index: 2;
height: 5.2%;
// margin-top: .5px;
}

.start {
font-size:2.5vw ;
height: 85%;
color: black;
background-color: aliceblue;
width: 10vw;
min-width: 65px;
}
#end {
font-size:2.5vw ;
min-width: 65px;
width: 10vw;
height: 85%;
float:right;
color: black;
background-color: aliceblue;
}

.top {
position: relative;
display: block;
width: 70%;
margin: auto;
margin: 10vw auto 0px auto;
font-size: 22px;
top: 20px;
}
Expand Down