Spaces:
Running
Running
File size: 5,324 Bytes
40cb704 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Floor Plan - Home Design</title>
<style>
:root {
--primary: #4361ee;
--secondary: #3a0ca3;
--accent: #f72585;
--light: #f8f9fa;
--dark: #212529;
--success: #4cc9f0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f5f7ff;
color: var(--dark);
line-height: 1.6;
}
header {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 2rem 0;
text-align: center;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 2rem 0;
}
h1, h2, h3 {
margin-bottom: 1rem;
}
h1 {
font-size: 2.5rem;
}
h2 {
color: var(--secondary);
border-bottom: 2px solid var(--accent);
padding-bottom: 0.5rem;
margin-top: 2rem;
}
.nav-links {
display: flex;
justify-content: center;
gap: 2rem;
margin: 1rem 0;
flex-wrap: wrap;
}
.nav-links a {
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 5px;
background: rgba(255, 255, 255, 0.1);
transition: background 0.3s;
}
.nav-links a:hover {
background: rgba(255, 255, 255, 0.2);
}
.floor-plan-container {
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
padding: 2rem;
margin: 2rem 0;
overflow-x: auto;
}
.mermaid {
text-align: center;
margin: 2rem 0;
}
footer {
background: var(--dark);
color: white;
text-align: center;
padding: 2rem 0;
margin-top: 3rem;
}
@media (max-width: 768px) {
.nav-links {
flex-direction: column;
align-items: center;
gap: 1rem;
}
h1 {
font-size: 2rem;
}
}
</style>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
</script>
</head>
<body>
<header>
<div class="container">
<h1>Home Design Floor Plan</h1>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="floor-plan.html">Floor Plan</a>
</div>
</div>
</header>
<div class="container">
<section class="floor-plan-container">
<h2>The Serene Modern - Floor Plan</h2>
<div class="mermaid">
flowchart TD
subgraph Exterior
direction TB
Deck["Deck<br>Wooden Furniture"]
GravelPath["Gravel Path<br>Japanese Maple"]
end
subgraph Interior["The Serene Modern - Interior"]
direction LR
subgraph Entry
Foyer["Foyer<br>Bench & Mirror"]
end
subgraph LivingNorth["Living Area - North"]
LR["Living Room<br>Sectional Sofa<br>Armchairs<br>TV"]
end
subgraph LivingEast["Living Area - East"]
DR["Dining Room<br>Wood Table for 6"]
end
subgraph LivingSouth["Living Area - South"]
K["Kitchen<br>Island with Stools"]
end
BR["Bedroom<br>King Bed<br>Dresser"]
Office["Office<br>Desk & Bookshelf"]
Bath["Bathroom<br>Walk-in Shower<br>Vanity"]
Storage["Storage/Utility"]
%% Define the flow (connections)
Foyer --> LR
LR --> DR
DR --> K
K --> Deck
Foyer --> BR
BR --> Bath
Foyer --> Office
Office --> Storage
end
</div>
</section>
</div>
<footer>
<div class="container">
<p>Home Design Floor Plan - The Serene Modern</p>
</div>
</footer>
</body>
</html> |