From e0175da60fdafac6b8901ddf304922691b52514d Mon Sep 17 00:00:00 2001 From: 25sana Date: Fri, 26 Aug 2022 13:10:58 +0100 Subject: [PATCH 1/8] last change --- css/store.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/store.css b/css/store.css index 9c331984a..5ac8666e1 100644 --- a/css/store.css +++ b/css/store.css @@ -35,6 +35,7 @@ form{ .store-form .input-box{ margin-bottom:30px ; width: 100%; + font-weight: 500; } .store-form .input-group{ display: flex; @@ -47,12 +48,14 @@ form{ border-radius: 5px; width: 90%; height: 35px; + } .store-form .input-box select{ border: 2px solid #686868; border-radius: 5px; width: 95%; height: 40px; + color: #686868; } .store-form .check-box input{ border: 2px solid #686868; From e28e749a6129d65934b93e967dd65aa95f43821f Mon Sep 17 00:00:00 2001 From: 25sana Date: Tue, 30 Aug 2022 10:22:48 +0100 Subject: [PATCH 2/8] home-page mobil --- index.html | 42 +++++++++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 15 deletions(-) diff --git a/index.html b/index.html index 510878861..5ca7d5d39 100755 --- a/index.html +++ b/index.html @@ -14,23 +14,28 @@ -
- - -
+
+ +
+ + + +
+

Introducing Karma

Bring WiFi with you, everywhere you go.

@@ -81,4 +86,11 @@

Join us on

+ From 039872b98be869ddec15e486f5e99c083813b965 Mon Sep 17 00:00:00 2001 From: 25sana Date: Tue, 30 Aug 2022 10:23:33 +0100 Subject: [PATCH 3/8] home-page mobil --- css/style.css | 97 +++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 86 insertions(+), 11 deletions(-) diff --git a/css/style.css b/css/style.css index b6b5efce6..2c8785a49 100755 --- a/css/style.css +++ b/css/style.css @@ -17,11 +17,11 @@ body { */ - header{ + .header{ top: 0; left: 0; position: fixed; - height: 80px; + height: 80px; display: flex; justify-content: space-around; align-items: center; @@ -29,9 +29,10 @@ body { background-color: #F5F5F5; z-index: 1000; } -header .logo{ - margin-left: 60px; -} +.header .logo{ + margin-left: 40px; + width: 30px; +} ul{ display: flex; list-style-type: none; @@ -50,12 +51,14 @@ ul li a:hover{ li a:hover::after{ width: 100%; } - +.menu-hamburger{ + display: none; +} .content-up{ padding-top: 80px; background-image: url("../img/first-background.jpg"); width: 100%; - height: 650px; + height: 650px; display: flex; flex-direction: column; align-items: center; @@ -147,9 +150,7 @@ footer .footer-bottom{ align-items: center; } .new-section-img{ - width: 35%; - - + width: 35%; } .new-section .new-right{ display: flex; @@ -172,10 +173,84 @@ footer .footer-bottom{ border: none; font-weight: 600; text-transform: capitalize; - border-radius: 5px; + border-radius: 10px; } .new-section span{ color: #cc5500; } +@media screen and (max-width:768px) { + .header ul{ + flex-direction: column; + position: absolute; + top: 55px; + right: 0; + background-color: #F5F5F5; + font-size: 20px; + width: 100%; + text-align: center; + display: none ; + } + .header li{ + margin-top: 10px; + } + .header .logo{ + position: absolute; + left: 25px; + width: 25px; + } + .menu-hamburger{ + display:block; + position: absolute; + top: 25px; + right: 15px; + } + .active{ + display: block; + } + .content-up{ + background-size: 100% 100%; + } + .content-up h1 { + display: flex; + justify-content: center; + align-items: center; + text-align: center; + margin-top: 40px; + font-size: 80px; + } + .content-up p { + font-size: 50px; + } + .Learn-More-button{ + padding: 25px 40px; + font-size: x-large; + font-weight: lighter; + } + .content-down .row1{ + flex-direction: column; + height: 50%; + margin-top: 50px; + margin-bottom: 50px; + } + .new-section{ + flex-direction: column; + } + .new-section img{ + width: 100%; + height: auto; + } + .new-section p{ + margin: 70px 55px ; + padding: 25px; + text-align: justify; + font-weight: 400; + } + .new-section button{ + padding: 25px 100px; + margin-bottom: 70px; + font-size: xx-large; + font-weight: 400; + } +} From 613a93cf11825b0fd9986929d34588fc1471347c Mon Sep 17 00:00:00 2001 From: 25sana Date: Tue, 30 Aug 2022 18:21:53 +0100 Subject: [PATCH 4/8] home-page mobil mod --- css/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index 2c8785a49..1cd6f88a9 100755 --- a/css/style.css +++ b/css/style.css @@ -124,6 +124,8 @@ footer{ bottom: 0; width: 100%; background-color: white; + margin-top: 100px; + padding-top: 100px; } footer .footer-content h4{ font-size: large; @@ -204,7 +206,7 @@ footer .footer-bottom{ display:block; position: absolute; top: 25px; - right: 15px; + right: 20px; } .active{ display: block; From b62959f35005ad6bcd28dad85a3c3dda1ec368e9 Mon Sep 17 00:00:00 2001 From: 25sana Date: Tue, 30 Aug 2022 18:22:45 +0100 Subject: [PATCH 5/8] store-page mobil --- css/store.css | 52 +++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 8 deletions(-) diff --git a/css/store.css b/css/store.css index 5ac8666e1..35234da3f 100644 --- a/css/store.css +++ b/css/store.css @@ -117,13 +117,6 @@ label { .radio input:checked + .radio__radio::after{ transform: scale(1); } -/*.check-box{ - display: flex; - justify-content: center ; - align-items: baseline; - text-align:justify; - cursor: pointer; -} */ .check-box p{ color: #535353; } @@ -151,10 +144,53 @@ label { } .checkmark::after{ - content: url(../level-2/checkmark.svg); + content: url(../level-2/checkmark.svg); display: none; } .check-box input:checked + .checkmark::after { display: block; } +@media screen and (max-width:768px){ + .right-image{ + margin-top: 1200px; + width:100% + } + .store-form{ + position: absolute; + width: 100%; + } + .store-form h1{ + display: flex; + justify-content: center; + text-align: center; + align-items: center; + } + .input-group{ + flex-direction: column; + width: 100%; + } + .radio-group{ + flex-direction: column ; + align-items: flex-start; + } + .radio{ + margin-bottom: 0; + } + .postCode{ + width: 30%; + } + .check-box p{ + overflow: wrap; + padding-right: 10px; + } + .check-box{ + margin-top: 40px; + } + + .store-form .button{ + width: 70%; + padding: 15px 55px; +} + +} \ No newline at end of file From 7eab2a398513283e4b96e50835d86b64961ee0a7 Mon Sep 17 00:00:00 2001 From: 25sana Date: Tue, 30 Aug 2022 18:23:06 +0100 Subject: [PATCH 6/8] store-page mobil --- store.html | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/store.html b/store.html index ade4306f1..87ee9b27b 100644 --- a/store.html +++ b/store.html @@ -11,11 +11,14 @@ -
+ +
+
+ +
-
-
+

Order your Karma wifi divice today!

- +
- +
- +
- +
@@ -63,10 +68,12 @@

Order your Karma wifi divice today!

- +
+ +
- +
-