101 lines
3.8 KiB
HTML
101 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Beach Party Balloons Color Palette Picker</title>
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Autour+One&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
|
|
<link rel="stylesheet" href="../style.css">
|
|
<link rel="stylesheet" href="color.css">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="../assets/favicon/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="../assets/favicon/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="../assets/favicon/favicon-16x16.png">
|
|
<link rel="manifest" href="../assets/favicon/site.webmanifest">
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar is-info is-spaced has-shadow" role="navigation" aria-label="main navigation">
|
|
<div class="navbar-brand is-size-1">
|
|
<a class="navbar-item" href="/">
|
|
<img style="background-color: white;" src="../assets/logo/BeachPartyBalloons-logo.webp" alt="Beach Party Balloons logo">
|
|
</a>
|
|
|
|
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
|
|
<span aria-hidden="true"></span>
|
|
<span aria-hidden="true"></span>
|
|
<span aria-hidden="true"></span>
|
|
<span aria-hidden="true"></span>
|
|
</a>
|
|
</div>
|
|
|
|
<div id="navbarBasicExample" class="navbar-menu has-text-right">
|
|
<div class="navbar-end">
|
|
<a class="navbar-item is-tab" href="/">Home</a>
|
|
<a class="navbar-item" href="../about/">About Us</a>
|
|
<a class="navbar-item" href="../faq/">FAQ</a>
|
|
<a class="navbar-item" href="../terms/">Terms</a>
|
|
<a class="navbar-item" href="../gallery/">Gallery</a>
|
|
<a class="navbar-item is-active is-tab" href="../color/">Colors</a>
|
|
<a class="navbar-item" href="../contact/">Contact</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main>
|
|
<div id="selected-palette">
|
|
<div class="palette-header-row">
|
|
<h2 class="has-text-dark">Your Palette</h2>
|
|
<div id="palette-controls">
|
|
<label class="switch" title="Toggle Animations">
|
|
<input type="checkbox" id="toggle-animation" checked>
|
|
<span class="slider"></span>
|
|
</label>
|
|
<button id="shuffle-palette" class="palette-control-btn" title="Shuffle Palette">
|
|
<i class="fa-solid fa-shuffle"></i>
|
|
</button>
|
|
<button id="share-palette" class="palette-control-btn" title="Share Palette">
|
|
<i class="fa-solid fa-share-nodes"></i>
|
|
</button>
|
|
<button id="zoom-palette" class="palette-control-btn" title="Zoom In Palette">
|
|
<i class="fa-solid fa-magnifying-glass-plus"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="palette-colors">
|
|
</div>
|
|
|
|
<button id="clear-palette" class="has-text-dark">Clear Palette</button>
|
|
</div>
|
|
|
|
<div id="color-families">
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>Made with 🎨 and 🎈 | Chris © 2025</p>
|
|
</footer>
|
|
|
|
<div class="palette-modal-backdrop">
|
|
<div class="palette-modal">
|
|
<h3>Share Your Palette</h3>
|
|
<div id="modal-color-list"></div>
|
|
<button id="close-modal">Close</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="zoom-overlay">
|
|
<div id="zoomed-palette-content"></div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
<script src="../script.js"></script>
|
|
|
|
</body>
|
|
</html> |