diff --git a/WebDev/Backend/lampwebsite/img/lamp.png b/WebDev/Backend/lampwebsite/img/lamp.png new file mode 100644 index 0000000..b779bef Binary files /dev/null and b/WebDev/Backend/lampwebsite/img/lamp.png differ diff --git a/WebDev/Backend/lampwebsite/img/light.png b/WebDev/Backend/lampwebsite/img/light.png new file mode 100644 index 0000000..3690f0b Binary files /dev/null and b/WebDev/Backend/lampwebsite/img/light.png differ diff --git a/WebDev/Backend/lampwebsite/img/logo.png b/WebDev/Backend/lampwebsite/img/logo.png new file mode 100644 index 0000000..ac66128 Binary files /dev/null and b/WebDev/Backend/lampwebsite/img/logo.png differ diff --git a/WebDev/Backend/lampwebsite/img/menu.png b/WebDev/Backend/lampwebsite/img/menu.png new file mode 100644 index 0000000..fc55837 Binary files /dev/null and b/WebDev/Backend/lampwebsite/img/menu.png differ diff --git a/WebDev/Backend/lampwebsite/index.html b/WebDev/Backend/lampwebsite/index.html new file mode 100644 index 0000000..128f4f4 --- /dev/null +++ b/WebDev/Backend/lampwebsite/index.html @@ -0,0 +1,53 @@ + + + + + + + + Lamp + + +
+ + +
+ + +
+ +
+

Latest
in Lightning

+

This is the first Lamp from our company + .we're making a huge collection of modern lamps + in all categories from house to office use +

+ Check all Collection +
+

04

+
+

05

+
+
+ +
+ + + \ No newline at end of file diff --git a/WebDev/Backend/lampwebsite/style.css b/WebDev/Backend/lampwebsite/style.css new file mode 100644 index 0000000..8dc2384 --- /dev/null +++ b/WebDev/Backend/lampwebsite/style.css @@ -0,0 +1,132 @@ +*{ + margin: 0px; + padding: 0px; + font-family: sans-serif; + box-sizing: border-box; +} +.hero{ + background-color: #1d2026; + min-height: 100vh; + width: 100%; + color: #fff; + position: relative; +} +nav{ + display: flex; + align-items: center; + padding: 20px 5%; +} + +nav .menu-img{ + width: 25px; + margin-right: 20px; + cursor: pointer; +} +nav ul{ + flex: 1; + text-align: right; +} +nav ul li{ + display: inline-block; + list-style: none; + margin: 0 20px; +} +nav ul li a{ + text-decoration: none; + color: #fff; +} + +button{ + background: #efefef; + height: 30px; + width: 60px; + border-radius: 20px; + border:0; + outline: 0; + cursor: pointer; + transition: background 0.5s; +} +button span{ + display: block; + background: #999; + height: 26px; + width: 26px; + border-radius: 50%; + margin-left: 2px; + transition: background 0.5s,margin-left 0.5s; +} +.lamp-container{ + position: absolute; + top: -20px; + left: 22%; + width: 200px; + +} +.lamp{ + width: 100%; +} +.light{ + position: absolute; + top: 97%; + left: 50%; + transform: translateX(-50%); + width: 700px; + margin-left: -10px; + opacity: 0; + transition: opacity 0.5s; +} + +.text-container{ + max-width: 600px; + margin-top: 7%; + margin-left: 50%; + +} +.text-container h1{ + font-size: 80px; + font-weight: 400; +} +.text-container a{ + text-decoration: none; + background: #00986f; + padding: 14px 40px; + display: inline-block; + color: #fff; + font-size: 18px; + margin-top: 30px; + border-radius: 30px; +} +.control{ + display: flex; + align-items: centre; + justify-content: flex-end; + margin-top: 150px; + +} +.control .line{ + width: 250px; + height: 4px; + background: #fff; + margin: 0 20px; + border-radius: 2px; +} +.control .line span{ + width: 50%; + height: 8px; + margin-top: -3px; + border-radius: 4px; + background: #00986f; + display: block; +} + +.active{ + background: green; +} +.active span{ + background: #fff; + margin-left: 31px; +} + +.on{ + opacity: 1; +} \ No newline at end of file