Awesome-PPT-Design-Skills/minimalist-luxury-branding-ppt-skill/assets/template.html

138 lines
3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Minimalist Luxury Branding PPT Template</title>
<style>
:root {
--beige: #f5efe6;
--brown: #a68a64;
--gray: #3a3a3a;
--muted: #746f68;
--line: #d8ccbd;
--cream: #fbf7f1;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: #e7ded2;
font-family: Inter, Arial, "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
color: var(--gray);
}
.deck {
display: grid;
gap: 32px;
padding: 32px;
}
.slide {
position: relative;
width: min(1280px, 100%);
aspect-ratio: 16 / 9;
margin: 0 auto;
overflow: hidden;
background: var(--beige);
border: 1px solid var(--line);
}
.label {
position: absolute;
top: 84px;
left: 92px;
color: var(--brown);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0;
}
h1 {
position: absolute;
left: 90px;
top: 170px;
width: 660px;
margin: 0;
font-family: Georgia, "Times New Roman", serif;
color: var(--gray);
font-size: 72px;
line-height: 1.08;
font-weight: 500;
letter-spacing: 0;
}
.subtitle {
position: absolute;
left: 94px;
bottom: 112px;
width: 420px;
color: var(--muted);
font-size: 20px;
line-height: 1.55;
}
.rule {
position: absolute;
left: 92px;
top: 137px;
width: 168px;
height: 1px;
background: var(--brown);
}
.panel {
position: absolute;
right: 96px;
top: 114px;
width: 324px;
height: 468px;
border-left: 1px solid var(--line);
padding-left: 40px;
}
.panel-title {
margin-top: 18px;
font-family: Georgia, "Times New Roman", serif;
font-size: 34px;
line-height: 1.14;
font-weight: 500;
}
.panel-copy {
margin-top: 38px;
color: var(--muted);
font-size: 16px;
line-height: 1.55;
}
.footer {
position: absolute;
right: 96px;
bottom: 70px;
color: var(--brown);
font-size: 12px;
font-weight: 600;
}
</style>
</head>
<body>
<main class="deck">
<section class="slide">
<div class="label">Minimal Luxury / Brand System</div>
<div class="rule"></div>
<h1>Quiet Precision for Premium Stories</h1>
<p class="subtitle">A calm editorial presentation system for brand strategy, refined proposals, and high-end business narratives.</p>
<aside class="panel">
<div class="panel-title">Warm<br>Neutral<br>Hierarchy</div>
<p class="panel-copy">Serif display typography, measured spacing, soft brown accents, and thin dividers define the visual language.</p>
</aside>
<div class="footer">16:9 / #F5EFE6 / #A68A64 / #3A3A3A</div>
</section>
</main>
</body>
</html>