-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 226bdeb
Showing
14 changed files
with
453 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,276 @@ | ||
/* Reset some basic styling */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Body */ | ||
body { | ||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Modern sans-serif font */ | ||
background-color: #e0e0e0; /* Light gray background for a clean, elegant look */ | ||
color: #333; /* Dark text for better readability */ | ||
} | ||
|
||
/* Header Section */ | ||
.header { | ||
background-color: #1c1c1c; /* Dark background for contrast */ | ||
color: white; | ||
padding: 30px; | ||
text-align: center; | ||
border-bottom: 4px solid #ff5c8f; /* Soft pink border for a touch of color */ | ||
} | ||
|
||
.header-title { | ||
font-size: 3.8em; | ||
margin: 0; | ||
letter-spacing: 3px; | ||
font-weight: 700; | ||
} | ||
|
||
.header-tagline { | ||
font-size: 1.4em; | ||
font-style: italic; | ||
color: #f1a7c9; /* Softer pink */ | ||
margin-top: 10px; | ||
} | ||
|
||
/* Navigation Bar */ | ||
.navbar { | ||
background-color: #1c1c1c; | ||
padding: 15px 0; | ||
text-align: center; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.navbar ul { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.navbar li { | ||
display: inline; | ||
margin-right: 30px; | ||
} | ||
|
||
.navbar a { | ||
color: white; | ||
text-decoration: none; | ||
font-size: 1.3em; | ||
font-weight: bold; | ||
letter-spacing: 2px; | ||
transition: color 0.3s ease; | ||
} | ||
|
||
.navbar a:hover { | ||
color: #ff5c8f; /* Soft pink hover effect */ | ||
} | ||
|
||
/* Categories Section */ | ||
#categories { | ||
padding: 60px 0; | ||
background-color: #f9f9f9; /* Light gray background to create contrast */ | ||
text-align: center; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.categories { | ||
display: flex; | ||
justify-content: center; | ||
flex-wrap: wrap; | ||
gap: 40px; | ||
} | ||
|
||
.category { | ||
background-color: #4a4a4a; /* Darker background for each category */ | ||
color: white; | ||
padding: 25px; | ||
margin: 15px; | ||
width: 200px; | ||
text-align: center; | ||
border-radius: 12px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s ease, background-color 0.3s ease; | ||
} | ||
|
||
.category:hover { | ||
background-color: #ff5c8f; /* Soft pink hover */ | ||
transform: scale(1.1); | ||
cursor: pointer; | ||
} | ||
|
||
/* Products Section */ | ||
#products { | ||
padding: 60px 0; | ||
background-color: #ffffff; /* White background for the product section */ | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.section-heading { | ||
text-align: center; | ||
font-size: 2.8em; | ||
margin-bottom: 40px; | ||
color: #333; | ||
font-weight: 700; | ||
} | ||
|
||
.product-grid { | ||
display: flex; | ||
justify-content: center; | ||
flex-wrap: wrap; | ||
gap: 40px; | ||
} | ||
|
||
.product-card { | ||
background-color: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 12px; | ||
width: 300px; | ||
padding: 25px; | ||
text-align: center; | ||
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; | ||
} | ||
|
||
.product-card:hover { | ||
transform: scale(1.05); | ||
box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); | ||
cursor: pointer; | ||
} | ||
|
||
.product-card img { | ||
width: 100%; | ||
height: 230px; | ||
object-fit: cover; | ||
border-radius: 10px; | ||
margin-bottom: 15px; | ||
} | ||
|
||
.product-card h3 { | ||
font-size: 1.7em; | ||
color: #4a4a4a; /* Darker text color for headings */ | ||
margin-bottom: 10px; | ||
} | ||
|
||
.product-card p { | ||
font-size: 1.3em; | ||
color: #555; | ||
margin-bottom: 15px; | ||
} | ||
|
||
.shop-now { | ||
display: inline-block; | ||
padding: 12px 30px; | ||
background-color: #ff5c8f; | ||
color: white; | ||
text-decoration: none; | ||
font-size: 1.2em; | ||
border-radius: 8px; | ||
transition: background-color 0.3s ease, transform 0.2s ease; | ||
} | ||
|
||
.shop-now:hover { | ||
background-color: #e5496f; | ||
transform: translateY(-5px); | ||
} | ||
|
||
/* Contact Section */ | ||
#contact { | ||
padding: 60px 0; | ||
background-color: #f1f1f1; /* Light gray background */ | ||
text-align: center; | ||
border-top: 4px solid #ff5c8f; | ||
} | ||
|
||
#contact p { | ||
font-size: 1.4em; | ||
margin-bottom: 15px; | ||
color: #333; | ||
} | ||
|
||
/* Transaction Form */ | ||
#transaction { | ||
padding: 60px 0; | ||
background-color: #f8f8f8; | ||
} | ||
|
||
#transaction .container { | ||
max-width: 850px; | ||
margin: 0 auto; | ||
} | ||
|
||
#transaction h2 { | ||
text-align: center; | ||
font-size: 2.8em; | ||
color: #333; | ||
margin-bottom: 40px; | ||
font-weight: 700; | ||
} | ||
|
||
form { | ||
background-color: #fff; | ||
padding: 35px; | ||
border-radius: 12px; | ||
box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
label { | ||
font-size: 1.3em; | ||
display: block; | ||
margin-bottom: 15px; | ||
color: #333; | ||
} | ||
|
||
input, textarea, select { | ||
width: 100%; | ||
padding: 14px; | ||
margin-bottom: 20px; | ||
border-radius: 8px; | ||
border: 1px solid #ddd; | ||
font-size: 1.2em; | ||
color: #555; | ||
} | ||
|
||
textarea { | ||
height: 120px; | ||
} | ||
|
||
button { | ||
width: 100%; | ||
padding: 18px; | ||
background-color: #ff5c8f; | ||
color: white; | ||
border: none; | ||
font-size: 1.3em; | ||
cursor: pointer; | ||
border-radius: 8px; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
button:hover { | ||
background-color: #e5496f; | ||
} | ||
|
||
/* Footer */ | ||
footer { | ||
background-color: #1c1c1c; | ||
color: white; | ||
text-align: center; | ||
padding: 20px; | ||
position: relative; | ||
bottom: 0; | ||
width: 100%; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
footer p { | ||
font-size: 1.2em; | ||
letter-spacing: 1px; | ||
} | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background: url('/path/to/gradient_background.jpg') no-repeat center center fixed; | ||
background-size: cover; | ||
color: #333; | ||
} |
Oops, something went wrong.