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

go to top modified #58

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
43 changes: 43 additions & 0 deletions Assets/Css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -801,8 +801,15 @@ html {
.get-help a:hover {
color: white;
}


/* End of Get help Headings */



iframe {
border-radius: 12px;
margin-top: 1rem;
.footer{
background-color: #ccdbcf;
height: 5rem;
Expand All @@ -814,4 +821,40 @@ html {
.selected {
background: #93a681;
color: #ebebe9;

}

.newbtn {
display: flex;

background: var(--primary);
color: var(--pure);
outline: none;
padding: 8px 20px;
font-size: 20px;
cursor: pointer;
letter-spacing: 1px;
border: 1px solid transparent;
transition: all .5s ease-in-out;
background-color: #49654c;
color: white;
}
.newbtn-color:hover{
background: transparent;
color: var(--primary);
color:black;
}
.top a{text-decoration: none;
text-decoration: none;
text-decoration-color: none;
color: inherit;

}
.newbtn:hover {
background: transparent;
border-color: var(--primary);
color:rgb(15, 15, 15);
}



11 changes: 10 additions & 1 deletion gethelp.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<body onload="loaded()">
<div id="loader"></div>
<header>
<header id="header2">
<a href="./index.html"><img src="./Assets/Images/TruHealth.png" alt="TruHealth" /></a>
<nav class="navbar">
<div class="content">
Expand Down Expand Up @@ -97,8 +97,17 @@ <h3><a href=" https://connectingngo.org">Connecting Trust</a></h3>
</p>
</div>
</div>

</div>
</section>
<br><br>
<center><div class="top"><a href="#header2"><input type="button" class="newbtn btn btn-primary mt-2 btn-block btn-color" value="Go To Top" id="add-task" /></a></div></center><br><br>
<script src="./Script/script.js"></script>
</body>

</section>
<footer class="footer"><p>Made with <i class="fa fa-heart pulse"></i> by Team TruHealth </p></footer>
<script src="./Script/script.js"></script>
</body>

</html>
6 changes: 5 additions & 1 deletion info.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<body onload="loaded()">
<div id="loader"></div>
<header>
<header id="header1">
<a href="./index.html"><img src="./Assets/Images/TruHealth.png" alt="TruHealth" /></a>
<nav class="navbar">
<div class="content">
Expand Down Expand Up @@ -182,6 +182,10 @@ <h3></h3>
</div>
</div>
</div>

</section><br><br>
<center><div class="top"><a href="#header1"><input type="button" class="newbtn btn btn-primary mt-2 btn-block btn-color" value="Go To Top" id="add-task" /></a></div></center><br><br>

</section>
<footer class="footer"><p>Made with <i class="fa fa-heart pulse"></i> by Team TruHealth </p></footer>
<script src="./Script/script.js"></script>
Expand Down