-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
126 lines (116 loc) · 4.13 KB
/
portfolio.html
File metadata and controls
126 lines (116 loc) · 4.13 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/auth.js"></script>
<script>document.addEventListener('DOMContentLoaded', requireAuth);</script>
</head>
<body>
<header class="site-header" id="site-header">
<a href="portfolio.html" class="header-logo">Lucas</a>
<nav class="header-nav">
<a href="various.html">Various</a>
</nav>
</header>
<main class="portfolio-main">
<ul class="case-studies">
<!-- Case Study 1 -->
<li class="case-study-item">
<a href="case-study-1.html" class="case-study-link">
<div class="cs-image-wrap">
<!-- Replace the placeholder divs with <img src="images/cs1-a.jpg" alt="..."> -->
<div class="placeholder-img ph-cs1-a img-default"></div>
<div class="placeholder-img ph-cs1-b img-hover"></div>
</div>
<div class="cs-info">
<div>
<p class="cs-number">01</p>
<h2 class="cs-title">Brand Identity</h2>
</div>
<div class="cs-info-right">
<span class="cs-category">Branding & Visual</span>
<span class="cs-arrow">→</span>
</div>
</div>
</a>
</li>
<!-- Case Study 2 -->
<li class="case-study-item">
<a href="case-study-2.html" class="case-study-link">
<div class="cs-image-wrap">
<div class="placeholder-img ph-cs2-a img-default"></div>
<div class="placeholder-img ph-cs2-b img-hover"></div>
</div>
<div class="cs-info">
<div>
<p class="cs-number">02</p>
<h2 class="cs-title">Editorial Design</h2>
</div>
<div class="cs-info-right">
<span class="cs-category">Print & Digital</span>
<span class="cs-arrow">→</span>
</div>
</div>
</a>
</li>
<!-- Case Study 3 -->
<li class="case-study-item">
<a href="case-study-3.html" class="case-study-link">
<div class="cs-image-wrap">
<div class="placeholder-img ph-cs3-a img-default"></div>
<div class="placeholder-img ph-cs3-b img-hover"></div>
</div>
<div class="cs-info">
<div>
<p class="cs-number">03</p>
<h2 class="cs-title">Packaging</h2>
</div>
<div class="cs-info-right">
<span class="cs-category">Product Design</span>
<span class="cs-arrow">→</span>
</div>
</div>
</a>
</li>
<!-- Case Study 4 -->
<li class="case-study-item">
<a href="case-study-4.html" class="case-study-link">
<div class="cs-image-wrap">
<div class="placeholder-img ph-cs4-a img-default"></div>
<div class="placeholder-img ph-cs4-b img-hover"></div>
</div>
<div class="cs-info">
<div>
<p class="cs-number">04</p>
<h2 class="cs-title">Campaign</h2>
</div>
<div class="cs-info-right">
<span class="cs-category">Art Direction</span>
<span class="cs-arrow">→</span>
</div>
</div>
</a>
</li>
</ul>
<!-- Various Projects link -->
<div class="various-link-wrap">
<a href="various.html" class="various-link">
Various projects <span class="arrow">→</span>
</a>
</div>
</main>
<script>
// Sticky header border on scroll
const header = document.getElementById('site-header');
window.addEventListener('scroll', () => {
header.classList.toggle('scrolled', window.scrollY > 10);
}, { passive: true });
</script>
</body>
</html>