From e8927ff677a82681f18c1c4673a864836ac1f35b Mon Sep 17 00:00:00 2001 From: hardik singh Date: Wed, 14 Aug 2024 11:10:11 +0530 Subject: [PATCH] Fixed layout issues in CLA page: adjusted header position and ensured options are clearly visible. --- stylesheets/clastyles.css | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/stylesheets/clastyles.css b/stylesheets/clastyles.css index fc8239f..e5c000f 100644 --- a/stylesheets/clastyles.css +++ b/stylesheets/clastyles.css @@ -4,7 +4,7 @@ body, html { width: 100%; height: 100%; margin: 0; - padding: 0 + padding: 0; } body { @@ -12,11 +12,38 @@ body { } iframe { - padding-top:5%; + padding-top: 5%; overflow: auto; + margin-top: 20px; height: 100%; width: 100%; position: absolute; top: 0; left: 0; } + +header { + position: fixed; + top: 0; + width: 100%; + z-index: 1000; + background-color: white; + padding: 10px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + display: flex; + align-items: center; + justify-content: space-between; +} + +.header img { + height: 40px; +} + +.cla-content { + margin-top: 80px; /* Adjust to ensure content starts below the header */ + padding: 20px; +} + +.cla-options { + margin-top: 20px; +} \ No newline at end of file