15
This commit is contained in:
parent
ecddcf9d88
commit
6e3c890a6f
@ -1,24 +1,11 @@
|
||||
/* Christmas Decorations: Fixed Positioning */
|
||||
/* General Body Styles */
|
||||
body {
|
||||
background-color: #142E35; /* Dark green background */
|
||||
color: #ffffff; /* White text */
|
||||
font-family: 'Poppins', sans-serif;
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
/* Headings */
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: #ffffff !important; /* Use !important to override other styles if necessary */
|
||||
}
|
||||
|
||||
/* Buttons and Inputs */
|
||||
input,
|
||||
button,
|
||||
.btn {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
|
||||
/* Garland */
|
||||
body::before {
|
||||
content: '';
|
||||
@ -46,6 +33,42 @@ body::before {
|
||||
}
|
||||
}
|
||||
|
||||
#christmas-decorations-right {
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
right: 250px;
|
||||
width: 220px;
|
||||
z-index: 1033;
|
||||
}
|
||||
|
||||
#christmas-decorations-right img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#christmas-decorations-left {
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
left: 250px;
|
||||
width: 220px;
|
||||
z-index: 1033;
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
|
||||
#christmas-decorations-left img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Headings */
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: #ffffff !important; /* Use !important to override other styles if necessary */
|
||||
}
|
||||
|
||||
/* Buttons and Inputs */
|
||||
input,
|
||||
button,
|
||||
.btn {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.navbar {
|
||||
@ -387,18 +410,6 @@ animation: fall linear infinite;
|
||||
padding: .25rem .5rem;
|
||||
}
|
||||
|
||||
#christmas-decorations-right {
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
right: 250px;
|
||||
width: 220px;
|
||||
z-index: 1033;
|
||||
}
|
||||
|
||||
#christmas-decorations-right img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Recipe Card Image */
|
||||
.card .card-img-top {
|
||||
height: 200px;
|
||||
@ -428,8 +439,3 @@ animation: fall linear infinite;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
assets/pasted-20251130-194432-3a0cbe61.png
Normal file
BIN
assets/pasted-20251130-194432-3a0cbe61.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
11
index.php
11
index.php
@ -7,7 +7,7 @@
|
||||
<!-- SEO & Meta Tags -->
|
||||
<title>Christmas Recipe Calculator</title>
|
||||
<meta name="description" content="Create and calculate holiday recipe shopping lists. Enter a recipe for one, specify your number of guests, and get a shopping list for your Christmas feast. Built with Flatlogic Generator.">
|
||||
<meta name="keywords" content="recipe calculator, Christmas recipes, holiday cooking, shopping list generator, party food calculator, festive meals, cooking for a crowd, recipe scaler, Built with Flatlogic Generator">
|
||||
<meta name="keywords" content="recipe calculator, Christmas recipes, holiday cooking, shopping list generator, party food calculator, festive meals, cooking for a crowd, recipe scaler, Built with Flatlogic Generator.">
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website">
|
||||
@ -32,18 +32,17 @@
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="christmas-decorations-left">
|
||||
<img src="assets/pasted-20251130-194432-3a0cbe61.png" alt="Christmas Decorations" />
|
||||
</div>
|
||||
<div id="christmas-decorations-right">
|
||||
<img src="assets/pasted-20251130-191602-0ffc27f4.png" alt="Christmas Decorations" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="snow-container"></div>
|
||||
|
||||
|
||||
|
||||
<main class="container my-5">
|
||||
<div class="text-center mb-5">
|
||||
<div class="text-center mb-5" style="padding-top: 50px;">
|
||||
<h1 class="display-4 mt-4">Hey, it's Christmas time!</h1>
|
||||
<p class="lead">Let's get your holiday recipes sorted.</p>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user