From 6340ff9235d165af8609ada51568ec1b21bd5dd9 Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 18 Nov 2024 12:33:57 +0530 Subject: [PATCH] Added styling and bullet points for the cookie policy page --- Cookiepolicy.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Cookiepolicy.html b/Cookiepolicy.html index 62158964..dac988f5 100644 --- a/Cookiepolicy.html +++ b/Cookiepolicy.html @@ -116,10 +116,35 @@ color: #333; } + h2 { + font-size: 1.8em; + margin-bottom: 15px; + } + p { line-height: 1.6; color: #555; + margin-bottom: 15px; } + + ul { + list-style-type: disc; + padding-left: 20px; + margin-bottom: 20px; /* Added spacing below the list */ + } + +ul li { + margin-bottom: 10px; /* Added spacing between list items */ +} + +a { + color: #2f6be5; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +}