-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomponent-content-tiles.html
More file actions
23 lines (23 loc) · 1.78 KB
/
Copy pathcomponent-content-tiles.html
File metadata and controls
23 lines (23 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html><html><head><meta charset="utf-8"><link rel="stylesheet" href="../colors_and_type.css">
<style>
body { margin:0; padding: 18px; background: var(--bg-page); display:flex; gap:14px; align-items:flex-start; }
.pill { display:inline-flex; align-items:center; padding: 4px 10px; border-radius:6px; font-size:11px; font-weight:700; background: rgba(232,101,10,.10); color: var(--fg-accent); text-transform: uppercase; letter-spacing: .07em; }
.post { background: var(--bg-card); border: 1px solid var(--border-default); border-radius: 12px; padding: 16px; max-width: 320px; }
.post h4 { margin: 8px 0 6px; color: #fff; font-size: 14px; font-weight: 700; }
.post p { margin: 0; color: var(--fg-3); font-size: 12px; line-height: 1.5; }
.youtube { background: var(--grc-gray); border: 1px solid var(--border-default); border-radius: 12px; overflow: hidden; max-width: 240px; }
.youtube .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #2a2a2a, #1a1a1a); display:flex; align-items:center; justify-content:center; }
.play { width:42px; height:42px; border-radius:9999px; background: var(--grc-orange); display:flex; align-items:center; justify-content:center; color:#fff; font-size:14px; }
.youtube .meta { padding: 10px; }
.youtube .meta p { margin: 6px 0 0; color:#fff; font-size: 12px; font-weight: 600; line-height: 1.4; }
</style></head><body>
<div class="post">
<span class="pill">Lab</span>
<h4>Build an Automated Compliance Dashboard with AWS Config</h4>
<p>Hands-on lab: deploy real-time compliance monitoring using AWS Config, Lambda, and CloudWatch.</p>
</div>
<div class="youtube">
<div class="thumb"><div class="play">▶</div></div>
<div class="meta"><span class="pill">Short</span><p>Compliance-as-Code: FedRAMP 20X Disrupts GRC</p></div>
</div>
</body></html>