diff --git a/1.IndexPage/index.html b/1.IndexPage/index.html index e77f9903..0a6a3c0f 100644 --- a/1.IndexPage/index.html +++ b/1.IndexPage/index.html @@ -32,8 +32,10 @@ @@ -46,7 +48,7 @@

Welcome to Retro!

Overlay Image
- Explore Now + Explore Now

Get 30% off on your FIRST order!      Get 30% off on your FIRST order! @@ -99,11 +101,11 @@

Bringing Happiness to You

Online Delivery

- Order Online + Order Online

Click & Collect

- Take Out Order + Take Out Order
@@ -113,7 +115,7 @@

Click & Collect

Get ready to explore our vintage collections!

"Free on Order above $5000"

- See More + See More
@@ -207,7 +209,8 @@

Frequently Asked Questions

Free Delivery!

- delivery animation + delivery animation

Download the App now!

For best discounts and free delivery download the app now from your Google Play Store or App Store. @@ -255,10 +258,10 @@

Contact Us!

- +
-
+
Train Animation - + +
+ + - - - - diff --git a/1.IndexPage/indexStyle.css b/1.IndexPage/indexStyle.css index 4e4046f4..3dbab185 100644 --- a/1.IndexPage/indexStyle.css +++ b/1.IndexPage/indexStyle.css @@ -2,20 +2,6 @@ @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); -/* page positionings */ -.page { - position: relative; /* If not already set, position relative */ - z-index: 1; /* Ensure content stays above the overlay */ -} - -.paper-background { - position: relative; /* Keeps absolute children within this context */ - padding: 20px; /* Adjust padding as needed */ - overflow: hidden; /* Prevent horizontal overflow */ - /* margin-bottom: 70px; */ -} - - /* Retro disk bg */ .overlay-image1 { diff --git a/2.CollectionsPage/electronic.css b/2.CollectionsPage/electronic.css new file mode 100644 index 00000000..a2421ee9 --- /dev/null +++ b/2.CollectionsPage/electronic.css @@ -0,0 +1,125 @@ +@import url("https://fonts.googleapis.com/css2?family=Concert+One&family=Londrina+Shadow&family=Righteous&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@100;300;400;900&display=swap"); + +/* General styles */ +body { + font-family: Arial, sans-serif; + background-color: #f0f0f0; + margin: 0; + padding: 0; + min-height: 100vh; +} + +/* Page container */ +.page { + padding: 0; + margin: 0; +} + +/* Page title styling */ +.title { + margin-top: 60px; + font-size: 3.5em; + font-family: 'Londrina Solid'; + text-shadow: 3px 3px #ffe836; + margin: 30px 0; + color: #000000; + text-align: center; +} + +/* Apply box-sizing only to card-related elements */ +.card, +.card-inner, +.card-front, +.card-back, +.cards-container { + box-sizing: border-box; +} + +/* Card container grid */ +.cards-container { + margin-top: 60px; + margin-bottom: 170px; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 30px; + width: 100%; /* Set to full width */ + padding: 0 220px; /* Add some padding inside to prevent cards from touching edges */ +} + +/* Card styling */ +.card { + perspective: 1000px; +} + +.card-inner { + position: relative; + width: 100%; + height: 300px; + transform-style: preserve-3d; + transition: transform 1.5s; +} + +.card:hover .card-inner { + transform: rotateY(180deg); +} + +.card-front, .card-back { + position: absolute; + width: 100%; + height: 100%; + backface-visibility: hidden; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + border-radius: 10px; +} + +/* Front side styling */ +.card-front { + background-color: #f4e27e; + color: rgb(188, 25, 25); + border: 3px solid rgb(255, 119, 0); + padding: 20px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.card-front h2 { + font-size: 2rem; + font-family: 'Righteous'; + font-family: 'Concert One'; +} + +/* Back side (image) styling */ +.card-back { + transform: rotateY(180deg); + background-color: white; + overflow: hidden; +} + +.card-back img { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 10px; +} + +/* Adjusting card responsiveness */ +@media (max-width: 768px) { + .cards-container { + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + } + + .card-front h2 { + font-size: 1.2rem; + } + + .card-front p { + font-size: 0.9rem; + } +} diff --git a/2.CollectionsPage/electronics.html b/2.CollectionsPage/electronics.html new file mode 100644 index 00000000..100b88a3 --- /dev/null +++ b/2.CollectionsPage/electronics.html @@ -0,0 +1,201 @@ + + + + + + + Flipping Electronics Showcase + + + + + + + +
+
+ + +

Electronics

+
+
+
+
+

Univac Buffer Processor

+
+
+ Electronic 1 +
+
+
+ +
+
+
+

Street Light

+
+
+ Electronic 2 +
+
+
+ +
+
+
+

Vaccum Tube

+
+
+ Electronic 3 +
+
+
+ +
+
+
+

Refrigerator

+
+
+ Electronic 4 +
+
+
+ +
+
+
+

X Ray Machine

+
+
+ Electronic 5 +
+
+
+ +
+
+
+

Newspaper Recorder

+
+
+ Electronic 6 +
+
+
+ +
+
+
+

4-track magnetic stereophonic soundheads

+
+
+ Electronic 7 +
+
+
+ +
+
+
+

Telephone Operator

+
+
+ Electronic 8 +
+
+
+ +
+
+
+

Gamewell Fire Alarm Telegraph Call Boxs

+
+
+ Electronic 9 +
+
+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/2.CollectionsPage/menu.html b/2.CollectionsPage/menu.html index 256ebc01..d7141d77 100644 --- a/2.CollectionsPage/menu.html +++ b/2.CollectionsPage/menu.html @@ -50,7 +50,8 @@

Phonograph

- +
@@ -67,7 +68,8 @@

Radio

- +
@@ -84,7 +86,8 @@

Television

-
@@ -102,7 +105,8 @@

Movie Screen

-
@@ -122,7 +126,8 @@

Toy

- +
@@ -139,7 +144,8 @@

Puppet Show

- +
@@ -156,7 +162,8 @@

Marbles

-
@@ -170,11 +177,12 @@

Marbles

Drinks

Drinks

-

$10.20

+

$10.20

-
@@ -186,7 +194,8 @@

Drinks

- +

Gadgets

@@ -199,7 +208,8 @@

Telephone

- +
@@ -216,7 +226,8 @@

Pager

- +
@@ -233,7 +244,8 @@

Camera

-
@@ -251,7 +263,8 @@

Type Writer

-
@@ -275,7 +288,8 @@

Cross Bow

- +
@@ -292,7 +306,8 @@

Catapult

- +
@@ -309,7 +324,8 @@

Sedan Chair

-
@@ -327,7 +343,8 @@

Palanquin

-
@@ -341,68 +358,69 @@

Palanquin

-
- - + + + \ No newline at end of file diff --git a/Html-files/Electronic.html b/Html-files/Electronic.html deleted file mode 100644 index 3ac2784e..00000000 --- a/Html-files/Electronic.html +++ /dev/null @@ -1,874 +0,0 @@ - - - - - - Retro - - - - - - - - - - - - - - - - - - - Retro - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
- -
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - diff --git a/Images/electronics/4 - track magnetic stereophonic soundheads.jpg b/Images/electronics/4 - track magnetic stereophonic soundheads.jpg new file mode 100644 index 00000000..57e458e4 Binary files /dev/null and b/Images/electronics/4 - track magnetic stereophonic soundheads.jpg differ diff --git a/Images/electronics/Gamewell Fire Alarm Telegraph Call Boxs.jpg b/Images/electronics/Gamewell Fire Alarm Telegraph Call Boxs.jpg new file mode 100644 index 00000000..80af6731 Binary files /dev/null and b/Images/electronics/Gamewell Fire Alarm Telegraph Call Boxs.jpg differ diff --git a/Images/electronics/Newspaper Recorder.jpg b/Images/electronics/Newspaper Recorder.jpg new file mode 100644 index 00000000..74a2de4c Binary files /dev/null and b/Images/electronics/Newspaper Recorder.jpg differ diff --git a/Images/electronics/Telephone Operator.jpg b/Images/electronics/Telephone Operator.jpg new file mode 100644 index 00000000..1da5da0b Binary files /dev/null and b/Images/electronics/Telephone Operator.jpg differ diff --git a/Images/electronics/Univac Buffer Processor.jpg b/Images/electronics/Univac Buffer Processor.jpg new file mode 100644 index 00000000..c9e53166 Binary files /dev/null and b/Images/electronics/Univac Buffer Processor.jpg differ diff --git a/Images/electronics/refrigerator.jpg b/Images/electronics/refrigerator.jpg new file mode 100644 index 00000000..4064cd32 Binary files /dev/null and b/Images/electronics/refrigerator.jpg differ diff --git a/Images/electronics/street light.jpg b/Images/electronics/street light.jpg new file mode 100644 index 00000000..52e376d6 Binary files /dev/null and b/Images/electronics/street light.jpg differ diff --git a/Images/electronics/vaccum tube.jpg b/Images/electronics/vaccum tube.jpg new file mode 100644 index 00000000..57e137d3 Binary files /dev/null and b/Images/electronics/vaccum tube.jpg differ diff --git a/Images/electronics/x-ray machine.jpg b/Images/electronics/x-ray machine.jpg new file mode 100644 index 00000000..457eda9f Binary files /dev/null and b/Images/electronics/x-ray machine.jpg differ diff --git a/style.css b/style.css index 91858c58..c940e4f4 100644 --- a/style.css +++ b/style.css @@ -10,9 +10,17 @@ body { background-color: #f4f1e4; /* Paper-like background */ } +/* page positionings */ +.page { + position: relative; /* If not already set, position relative */ + z-index: 1; /* Ensure content stays above the overlay */ +} + .paper-background { - position: relative; - padding: 20px; + position: relative; /* Keeps absolute children within this context */ + padding: 20px; /* Adjust padding as needed */ + overflow: hidden; /* Prevent horizontal overflow */ + /* margin-bottom: 70px; */ } .paper-background::before { @@ -30,11 +38,6 @@ body { z-index: -1; /* Places the background behind the content */ } -.page { - position: relative; - z-index: 1; /* Keeps content on top of background */ -} - /* Retro Navbar */ .retro-navbar { font-family: 'Courier New', Courier, monospace;