diff --git a/navigation/voteforthegoat/beveragedebates.md b/navigation/voteforthegoat/beveragedebates.md index 75855064..4141b56c 100644 --- a/navigation/voteforthegoat/beveragedebates.md +++ b/navigation/voteforthegoat/beveragedebates.md @@ -24,9 +24,10 @@ Our group has chosen to focus on discussions about which drinks should be added /* Body Styling */ body { background: linear-gradient(135deg, #1d2671, #c33764); + background-attachment: fixed; /* Makes background fixed */ color: #ffffff; font-family: Arial, sans-serif; - height: 100vh; + min-height: 100vh; /* Ensures it covers the viewport height */ margin: 0; display: flex; justify-content: center; @@ -39,7 +40,7 @@ Our group has chosen to focus on discussions about which drinks should be added border-radius: 12px; padding: 30px; width: 100%; - max-width: 400px; + max-width: 800px; /* Increased to accommodate side-by-side layout */ text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease; @@ -60,13 +61,15 @@ Our group has chosen to focus on discussions about which drinks should be added background: linear-gradient(135deg, #ff8a00, #e52e71); color: #ffffff; padding: 12px 20px; - margin: 8px; + width: 200px; + margin: 8px 0; border: none; border-radius: 50px; cursor: pointer; font-size: 16px; transition: background 0.3s ease, transform 0.2s ease; outline: none; + display: block; } .option-button:hover { background: linear-gradient(135deg, #e52e71, #ff8a00); @@ -155,22 +158,147 @@ Our group has chosen to focus on discussions about which drinks should be added .clickable-image:hover { opacity: 0.8; } + /* Add these new styles */ + .beverage-details { + display: none; + padding: 15px; + background: rgba(255, 255, 255, 0.15); + border-radius: 8px; + text-align: left; + position: sticky; + top: 20px; + } + + .beverage-details img { + max-width: 200px; + border-radius: 8px; + margin: 10px 0; + } + + .beverage-details p { + font-size: 14px; + line-height: 1.4; + color: #ffffff; + } + + /* Add new styles for the layout */ + .voting-layout { + display: flex; + gap: 20px; + justify-content: space-between; + } + + .options-container { + flex: 0 0 40%; + display: flex; + flex-direction: column; + gap: 20px; + align-items: center; + } + + .details-container { + flex: 0 0 55%; + position: relative; + } + + /* Add or update these styles */ + nav { + display: flex; + gap: 20px; + justify-content: center; + align-items: center; + padding: 20px; + background: transparent; + } + + nav a, .DNHS-title { + background: rgba(0, 0, 0, 0.5); + color: #00c6ff; + padding: 12px 20px; + text-decoration: none; + transition: all 0.3s ease; + font-family: Arial, sans-serif; + font-size: 16px; + } + + nav a:hover, .DNHS-title:hover { + background: rgba(0, 0, 0, 0.7); + color: #00e6ff; + transform: scale(1.05); + } + + .nav-container { + border-bottom: 2px solid #00c6ff; + background: transparent; + } + + .header-container { + background: transparent; + padding: 20px; + } + + /* Style for the DNHS Flocker title */ + .header-title, + h1, + .DNHS-title { /* Use whichever class/element your title uses */ + background: transparent; + color: #ffffff; + font-family: Arial, sans-serif; + padding: 12px 20px; + text-decoration: none; + transition: all 0.3s ease; + } + + .header-title:hover, + h1:hover, + .DNHS-title:hover { + transform: scale(1.1); + text-shadow: 0 4px 8px rgba(255, 138, 0, 0.3); + } + + /* Revert paragraph font to default or previous style */ + p { + font-family: Arial, sans-serif; /* Or your previous font */ + font-size: 16px; /* Adjust size as needed */ + color: #ffffff; /* Ensure text is readable */ + } - - Description of image -

Choose Your an Beverage that you would like to be added to Del Norte Cafeteria

-
- - - - +
+
+ + + + +
Your Choice: None
+ +
+ +
+
+ Coca Cola +

Ingredients: Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine

+
+ +
+ Gatorade +

Ingredients: Water, Sugar, Dextrose, Citric Acid, Natural and Artificial Flavor, Salt, Sodium Citrate, Monopotassium Phosphate, Modified Food Starch, Red 40

+
+ +
+ Banana Milk +

Ingredients: Milk, Banana Puree, Sugar, Natural Flavors, Vitamins A & D

+
+ +
+ Coconut Water +

Ingredients: 100% Natural Coconut Water, No Added Sugar or Preservatives

+
+
-
Your Choice: None
-

Why did you choose this beverage?

@@ -180,10 +308,24 @@ Our group has chosen to focus on discussions about which drinks should be added