You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Kernel0/electric.html

138 lines
5.0 KiB

<section class="appliance-list">
<h2>Accepted Electric Shops for Repairing and Recycling</h2>
<p>We work with the following types of electric shops for mobile, PC, and other electronics repairs. Click on a shop type to add it to your submission list!</p>
<ul class="appliance-items">
<li class="appliance-item" style="background-image: url('images/non-fixable-mobile-bg.jpg');">
<a href="submit-ewaste.html?appliance=non-fixable mobile">Non-fixable Mobile</a>
<img src="./images/Phones.jpg" alt="Non-fixable Mobile" class="product-image">
<p class="appliance-description">Electronics shops dealing with non-fixable mobile phones.</p>
<p class="appliance-price"><strong>Price:</strong> $120</p>
<p class="appliance-upload-date"><i class="fas fa-calendar-alt"></i> Uploaded: Jan 12, 2025</p>
<span class="add-to-favorite" title="Add to Favorite"><i class="fas fa-heart"></i></span>
</li>
<li class="appliance-item" style="background-image: url('images/non-fixable-pc-bg.jpg');">
<a href="submit-ewaste.html?appliance=non-fixable pc-repair-shop">Non-fixable PC</a>
<img src="./images/pc.jpg" alt="Non-fixable PC" class="product-image">
<p class="appliance-description">Repair shops for non-fixable PCs and laptops.</p>
<p class="appliance-price"><strong>Price:</strong> $150</p>
<p class="appliance-upload-date"><i class="fas fa-calendar-alt"></i> Uploaded: Jan 11, 2025</p>
<span class="add-to-favorite" title="Add to Favorite"><i class="fas fa-heart"></i></span>
</li>
<li class="appliance-item" style="background-image: url('images/motherboard-bg.jpg');">
<a href="submit-ewaste.html?appliance=motherboard">Motherboards</a>
<img src="./images/Motherboards.jpg" alt="Motherboards" class="product-image">
<p class="appliance-description">Shops specializing in motherboard repairs and recycling.</p>
<p class="appliance-price"><strong>Price:</strong> $180</p>
<p class="appliance-upload-date"><i class="fas fa-calendar-alt"></i> Uploaded: Jan 10, 2025</p>
<span class="add-to-favorite" title="Add to Favorite"><i class="fas fa-heart"></i></span>
</li>
<li class="appliance-item" style="background-image: url('images/damaged-printers-bg.jpg');">
<a href="submit-ewaste.html?appliance=damaged printers">Damaged Printers</a>
<img src="./images/Printers.jpg" alt="Damaged Printers" class="product-image">
<p class="appliance-description">Shops that accept damaged printers for recycling and repair.</p>
<p class="appliance-price"><strong>Price:</strong> $100</p>
<p class="appliance-upload-date"><i class="fas fa-calendar-alt"></i> Uploaded: Jan 9, 2025</p>
<span class="add-to-favorite" title="Add to Favorite"><i class="fas fa-heart"></i></span>
</li>
<li class="appliance-item" style="background-image: url('images/others-bg.jpg');">
<a href="submit-ewaste.html?appliance=others">Others</a>
<img src="./images/Other electric.jpg" alt="Other Electronics" class="product-image">
<p class="appliance-description">Miscellaneous electronics shops and repair types not listed above.</p>
<p class="appliance-price"><strong>Price:</strong> Varies</p>
<p class="appliance-upload-date"><i class="fas fa-calendar-alt"></i> Uploaded: Jan 8, 2025</p>
<span class="add-to-favorite" title="Add to Favorite"><i class="fas fa-heart"></i></span>
</li>
</ul>
<p>Not sure if your electric shop is accepted? <a href="contact.html">Contact us</a> for more information!</p>
</section>
<!-- CSS for Background and Product Images -->
<style>
.appliance-list {
text-align: center;
padding: 20px;
}
.appliance-items {
list-style-type: none;
padding: 0;
margin: 0;
}
.appliance-item {
position: relative;
display: inline-block;
margin: 20px;
padding: 20px;
width: 350px;
height: 500px;
background-size: cover;
background-position: center;
color: rgb(19, 1, 1);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}
.appliance-item a {
display: block;
font-size: 20px;
font-weight: bold;
color: white;
text-decoration: none;
margin-bottom: 10px;
text-align: center;
}
.product-image {
width: 80%;
margin: 0 auto;
display: block;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.appliance-description, .appliance-upload-date, .appliance-price {
font-size: 14px;
margin: 5px 0;
}
.appliance-item:hover {
transform: scale(1.05);
}
.appliance-item a:hover {
color: #ffcc00;
}
.add-to-favorite {
font-size: 20px;
color: #fff;
cursor: pointer;
position: absolute;
top: 10px;
right: 10px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px;
border-radius: 50%;
transition: background-color 0.3s ease;
}
.add-to-favorite:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.add-to-favorite i {
color: #ff0000;
}
/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
</style>