Skip to content

Commit

Permalink
Made Terms & Conditions responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
PradnyaGaitonde committed Jul 17, 2024
1 parent 163c834 commit 18572ed
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions Html-Files/terms_and_conditions.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,52 @@
color: gray;
}

.text-center {
text-align: center;
}

.mt-5 {
margin-top: 3rem;
}

.container {
max-width: 90%;
margin: 0 auto;
}

.list-inline {
padding-left: 0;
list-style: none;
}

.list-inline-item {
display: inline-block;
margin-right: 10px;
}

@media (min-width: 576px) {
.container {
max-width: 540px;
}
}

@media (min-width: 768px) {
.container {
max-width: 720px;
}
}

@media (min-width: 992px) {
.container {
max-width: 960px;
}
}

h1,
h2 {
color: black;
}
</style>
<style>

#progressBar {
position: fixed;
top: 0;
Expand Down

0 comments on commit 18572ed

Please sign in to comment.