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

UI of terms and condition and privacy policy is enhanced #3984

Merged
merged 2 commits into from
Oct 25, 2024
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
61 changes: 61 additions & 0 deletions privacynotice.html
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,68 @@
top: 10px;
}
</style>
<style>
.main {
background-color: #f9f9f9;
color: #333;
font-family: Arial, sans-serif;
padding: 20px;
border-radius: 8px;
}
.notice:hover {
background-color: #f9f9f9; /* Light background on hover */
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
transform: translateY(-2px); /* Slight upward movement on hover */
}
h1, h2 {
color: #2c3e50;
}

h2 {
font-size: 1.5em;
margin-top: 20px;
margin-bottom: 10px;
border-bottom: 2px solid #e1e1e1;
padding-bottom: 10px;
}

p, li {
line-height: 1.6;
margin-bottom: 10px;
}

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

.un-list li {
padding-left: 20px;
position: relative;
}

.un-list li:before {
content: '•';
position: absolute;
left: 0;
color: #3498db; /* Change color for bullet */
}

.button {
background-color: #3498db;
color: white;
padding: 10px 15px;
text-align: center;
border-radius: 5px;
text-decoration: none;
display: inline-block;
}

.button:hover {
background-color: #2980b9;
}

</style>
</head>

<body>
Expand Down
82 changes: 82 additions & 0 deletions terms&cond.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,85 @@
transition: transform 0.1s ease-out;
}
</style>
<style>
.book-swap-container {
max-width: 800px;
margin: auto;
padding: 20px;
background: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
font-family: 'Arial', sans-serif;
color: #333;
}
.book-swap-container:hover {
background: #f9f9f9; /* Slightly darker background */
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
transform: translateY(-5px);
}

h1 {
color: #2c3e50;
font-size: 2.5em;
text-align: center;
margin-bottom: 20px;
}

h2 {
color: #34495e;
font-size: 1.8em;
margin-top: 20px;
border-bottom: 2px solid #bdc3c7;
padding-bottom: 5px;
}

p {
line-height: 1.6;
margin: 10px 0;
}

ul {
list-style-type: disc;
padding-left: 20px;
margin: 10px 0;
}

ul li {
margin: 5px 0;
padding-left: 10px;
position: relative;
}

ul li::marker {
color: #3498db; /* Change bullet color */
}

ul li::before {
content: "📚"; /* Example icon for a book */
position: absolute;
left: 0;
font-size: 1.2em; /* Adjust icon size */
}

.button {
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #2980b9;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1em;
text-align: center;
transition: background-color 0.3s;
}

.button:hover {
background-color: #3498db;
}

</style>
</head>
<body id="terms&cond">
<!-- Circles -->
Expand Down Expand Up @@ -205,6 +284,9 @@ <h2>7. Disputes</h2>
<h2>8. Changes to Terms</h2>
<p>We may update these terms. Check back for any changes.</p>
</div>



<script>
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
Expand Down
Loading