-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathslide-08.html
More file actions
48 lines (47 loc) · 1.8 KB
/
Copy pathslide-08.html
File metadata and controls
48 lines (47 loc) · 1.8 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 960pt;
height: 540pt;
font-family: 'Pretendard', sans-serif;
background: #0f0f0f;
padding: 48pt 56pt 36pt;
display: flex;
flex-direction: column;
overflow: hidden;
}
.grid { flex: 1; display: flex; flex-direction: column; gap: 10pt; overflow: hidden; }
.row { display: flex; gap: 10pt; flex: 1; min-height: 0; }
.row img { flex: 1; min-width: 0; height: 100%; object-fit: cover; border-radius: 6pt; }
</style>
</head>
<body>
<!-- Header -->
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20pt;">
<div style="display: flex; align-items: center; gap: 12pt;">
<div style="background: #FF6347; border-radius: 4pt; padding: 4pt 10pt;">
<p style="font-size: 9pt; font-weight: 600; color: #ffffff;">06</p>
</div>
<h2 style="font-size: 28pt; font-weight: 600; color: #ffffff;">Screenshots</h2>
</div>
<p style="font-size: 10pt; color: #666666;">08</p>
</div>
<!-- Screenshots -->
<div class="grid">
<div class="row">
<img src="/Users/classys/Projects/climpire/Sample_Img/Office.png" />
<img src="/Users/classys/Projects/climpire/Sample_Img/Dashboard.png" />
<img src="/Users/classys/Projects/climpire/Sample_Img/Kanban.png" />
</div>
<div class="row">
<img src="/Users/classys/Projects/climpire/Sample_Img/Skills.png" />
<img src="/Users/classys/Projects/climpire/Sample_Img/Meeting_Minutes.png" />
<img src="/Users/classys/Projects/climpire/Sample_Img/Report.png" />
</div>
</div>
</body>
</html>