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

Improved the UI of home page #177

Closed
wants to merge 2 commits into from
Closed
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
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
body {
padding: 25px;
padding: 0px;
background-color: white;
color: black;
font-size: 20px;
}



</style
</head>

Expand Down Expand Up @@ -86,7 +87,7 @@ <h1 class="logo me-auto"><a href="index.html">RapiDoc</a></h1>


<section id="home" class="d-flex align-items-center">
<div class="container">
<div class="container homecontainer">
<h1>Welcome to RapiDoc</h1>
<h2>Your One-stop digital healthcare destination.<br>Get details about <span class="multiple-text"></span></h2>
<a href="#about" class="btn-get-started scrollto">Download App</a>
Expand Down
15 changes: 9 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,9 @@ section {
#home .container {
position: relative;
margin-top: 150px;
margin-left: 150px;
line-height: 40px;

}

#home h1 {
Expand Down Expand Up @@ -386,12 +389,12 @@ section {
background: #3fbcc0a4;
}
#home video{
margin-top: -70px;
margin-left: 50PX;
height: 900px;
margin-top: 50px;
margin-left: 400PX;
height: 600px;
position: absolute;
top: 200px;
left: 550px;
left: 450px;
}

#home .btn-get-started:hover {
Expand Down Expand Up @@ -624,8 +627,8 @@ section {
border-radius: 50%;
display: block;
position: absolute;
left: calc(50% - 47px);
top: calc(50% - 47px);
left: calc(50% - -40px);
top: calc(50% - -350px);
overflow: hidden;
}

Expand Down