reinitialize local repo
This commit is contained in:
@@ -29,12 +29,16 @@ header .logo img {
|
||||
|
||||
}
|
||||
|
||||
header h1 {
|
||||
.business-name {
|
||||
font-family: 'Georgia', serif;
|
||||
font-size: 2.8rem;
|
||||
color: #014038; /* Dark green for the title */
|
||||
margin: 10px 0;
|
||||
text-align: center;
|
||||
text-shadow: 0.5px 0.5px 1px #f7f7f7, /* Bottom-right top shadow */
|
||||
-0.5px -0.5px 1px #f7f7f7, /* Top-left top shadow */
|
||||
-0.5px 0.5px 1px #f7f7f7, /* Bottom-left top shadow */
|
||||
0.5px -0.5px 1px #f7f7f7; /* Top-right top shadow */
|
||||
}
|
||||
|
||||
header p.tagline {
|
||||
@@ -45,7 +49,102 @@ header p.tagline {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav {
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (max-width: 780px) {
|
||||
/* --- Main Header Container --- */
|
||||
header {
|
||||
flex-direction: column;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.header-main {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.logo-and-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
/* --- Logo --- */
|
||||
header .logo {
|
||||
position: static;
|
||||
width: 100px; /* Smaller logo for compact header */
|
||||
}
|
||||
|
||||
header .logo img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* --- Business Name --- */
|
||||
.business-name {
|
||||
font-size: 1.8rem; /* Smaller name for mobile */
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* --- Header Icons --- */
|
||||
.header-icons {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
#shopping-cart {
|
||||
position: static;
|
||||
padding: 0;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: block;
|
||||
background: none;
|
||||
border: none;
|
||||
color: #014038;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* --- Compact Navigation Menu --- */
|
||||
nav {
|
||||
display: none;
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
background-color: #f7f7f7;
|
||||
border-radius: 5px;
|
||||
box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
nav.is-open {
|
||||
display: block;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
flex-direction: column;
|
||||
padding: 5px 0; /* Reduced vertical padding */
|
||||
}
|
||||
|
||||
nav ul li a {
|
||||
padding: 10px 0; /* Reduced padding for each link */
|
||||
font-size: 1rem; /* Smaller font size for links */
|
||||
text-align: center;
|
||||
border: none;
|
||||
}
|
||||
|
||||
nav ul li a.current-page {
|
||||
background: none;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
nav, #footer-nav {
|
||||
margin-top: 20px;
|
||||
background-color: #f7f7f7; /* White for navigation background */
|
||||
padding: 10px 20px;
|
||||
@@ -54,28 +153,32 @@ nav {
|
||||
box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
button#shopping-cart{
|
||||
#shopping-cart {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
right: 100px;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
background-color: #f7f7f7;
|
||||
color: #014038;
|
||||
color: #014038;
|
||||
cursor: pointer;
|
||||
z-index: 5;
|
||||
transition: background-color 0.3s ease, color 0.3s ease;
|
||||
box-shadow: 1px 2px 3px 0.5px rgba(0, 0, 0, 0.5);
|
||||
border: none;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
button#shopping-cart:hover {
|
||||
#shopping-cart:hover {
|
||||
background-color: #014038;
|
||||
color: #96baa0;
|
||||
border: solid #f7f7f7;
|
||||
box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
nav ul {
|
||||
nav ul, #footer-nav ul {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
list-style: none;
|
||||
@@ -83,7 +186,7 @@ nav ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
nav ul li {
|
||||
nav ul li, #footer-nav ul li {
|
||||
margin: 0 20px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
@@ -100,11 +203,10 @@ nav ul li {
|
||||
box-shadow: 1px 2px 3px 0.5px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
nav ul li a {
|
||||
nav ul li a, #footer-nav ul li a {
|
||||
font-family: 'Arial', sans-serif;
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
border: solid #f7f7f7;
|
||||
color: #014038;
|
||||
text-decoration: underline;
|
||||
padding: 8px 15px;
|
||||
@@ -112,7 +214,7 @@ nav ul li a {
|
||||
transition: background-color 0.3s ease, color 0.3s ease;
|
||||
}
|
||||
|
||||
nav ul li a:hover {
|
||||
nav ul li a:hover, #footer-nav ul li a:hover {
|
||||
background-color: #f7f7f7;
|
||||
color: #014038;
|
||||
border: solid #014038;
|
||||
@@ -169,17 +271,19 @@ footer div label {
|
||||
box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
/* #footer-nav {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#footer-nav ul {
|
||||
position: relative;
|
||||
list-style-type: none;
|
||||
display: inline-block;
|
||||
flex-direction: row;
|
||||
margin-top: 20px;
|
||||
background-color: #f7f7f7; /* White for navigation background */
|
||||
padding: 5px 20px;
|
||||
background-color: #f7f7f7;
|
||||
border-radius: 5px;
|
||||
width: 100%; /* Ensures the nav spans the width of the header */
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adds subtle shadow for depth */
|
||||
width: fit-content;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
#footer-nav ul li {
|
||||
@@ -201,7 +305,7 @@ footer div label {
|
||||
font-family: 'Arial', sans-serif;
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
color: #014038; /* Dark green for the links */
|
||||
color: #014038;
|
||||
text-decoration: none;
|
||||
padding: 8px 15px;
|
||||
border-radius: 5px;
|
||||
@@ -213,7 +317,7 @@ footer div label {
|
||||
color: #014038;
|
||||
border: solid #014038;
|
||||
border-radius: 10px;
|
||||
}
|
||||
} */
|
||||
|
||||
#social-media {
|
||||
position: relative;
|
||||
@@ -223,7 +327,7 @@ footer div label {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#social-media p {
|
||||
#social-media h3 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user