-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #496 from Shalinis19137/main
- Loading branch information
Showing
2 changed files
with
87 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,57 @@ | ||
|
||
.privacy-policy-container { | ||
max-width: 900px; | ||
margin: 0 auto; | ||
padding: 30px 15px; | ||
background-color: #f9f9f9; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); | ||
max-width: 800px; | ||
margin: 20px auto; | ||
padding: 40px 20px; | ||
background-color: #f5f5f5; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); | ||
color: #333; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
.privacy-policy-header { | ||
text-align: center; | ||
margin-bottom: 30px; | ||
margin-bottom: 40px; | ||
} | ||
|
||
.privacy-policy-header h1 { | ||
font-size: 2rem; | ||
color: #007bff; | ||
margin-bottom: 8px; | ||
font-size: 2.2rem; | ||
color: #0066cc; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.privacy-policy-header p { | ||
font-size: 1rem; | ||
color: #555; | ||
font-size: 1.1rem; | ||
color: #444; | ||
} | ||
|
||
|
||
.privacy-policy-section h2 { | ||
font-size: 1.5rem; | ||
font-size: 1.6rem; | ||
color: #333; | ||
margin-bottom: 12px; | ||
border-bottom: 2px solid #007bff; | ||
padding-bottom: 4px; | ||
margin-bottom: 16px; | ||
border-bottom: 2px solid #0066cc; | ||
padding-bottom: 6px; | ||
} | ||
|
||
.privacy-policy-section p { | ||
font-size: 0.9rem; | ||
line-height: 1.5; | ||
color: #666; | ||
margin-bottom: 15px; | ||
font-size: 1rem; | ||
line-height: 1.6; | ||
color: #555; | ||
margin-bottom: 18px; | ||
} | ||
|
||
.privacy-policy-section ul { | ||
margin-left: 15px; | ||
margin-bottom: 15px; | ||
margin-left: 20px; | ||
margin-bottom: 18px; | ||
} | ||
|
||
.privacy-policy-section ul li { | ||
font-size: 0.9rem; | ||
color: #666; | ||
line-height: 1.5; | ||
font-size: 1rem; | ||
color: #555; | ||
line-height: 1.6; | ||
} | ||
|
||
|
||
|
||
.privacy-policy-section a:hover { | ||
text-decoration: underline; | ||
color: #0056a3; | ||
} |