-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamas-ingredients.html
98 lines (85 loc) · 3.91 KB
/
amas-ingredients.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sasha Beattie's Portfolio</title>
<link rel="stylesheet" href="home.css">
<link rel="icon" type="image/png" sizes="32x32" href="Images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Images/favicon-16x16.png">
</head>
<body style="background-color: #F0EDE6">
<header>
<aside></aside>
<nav class="hflex">
<a href="index.html" class="hflex" id="SB-logo">
<img src="Images/logo_filled.svg" alt="sasha beattie logo" style="height: 40px">
</a>
<div class="flex hidden" style="height: 100%; gap: 4px; align-items: center;" id="mobile-menu-links">
<a class="menu-links mobile" href="/about.html">About me</a>
<a class="menu-links mobile" href="/work.html">Work</a>
</div>
<div class="flex" style="height: 100%; align-items: center; gap: 6px; padding: 0px 16px;">
<a class="menu-links desktop" href="/about.html">About me</a>
<a class="menu-links desktop" href="/work.html">Work</a>
</div>
<button class="menu-button" id="menu-button" onclick="toggleMenu()">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000">
<path d="M0 0h24v24H0V0z" fill="none" />
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" />
</svg>
</button>
</nav>
</header>
<main class="border-b flex">
<aside>
<div class="flex"
style="transform: rotate(270deg); -webkit-transform: rotate(270deg); align-items: center; position: sticky; top: 50%;">
<h4 style="margin-right: 8px; flex-shrink: 0; flex-grow: 1;">Ama's Ingredients</h4>
<p style="flex-shrink: 0; flex-grow: 1;">illustrations</p>
</div>
</aside>
<section class="vflex">
<article class="flex" style="width: 100%; flex-wrap: wrap-reverse; margin-top: 52px;">
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_shoyu.png">
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_udon.png">
<div class="cflex" style="flex: 1 1 0;">
<h4 class="dp48-mp24" style="margin-bottom: 32px; text-align: center; font-size: 1.25rem;">
Illustrated posters of the ingredients used in my Ama’s (Taiwanese grandmother’s) treasured recipes.
</h4>
</div>
</article>
<article class="flex" style="width: 100%; flex-wrap: wrap;">
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_bbq.png">
<div class="ama-spacer"></div>
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_vinegar.png">
</article>
<article class="flex" style="width: 100%; flex-wrap: wrap;">
<div class="ama-spacer"></div>
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_somen.png">
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_oyster.png">
</article>
<article class="flex" style="width: 100%; flex-wrap: wrap;">
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_kimchee.png">
<div class="ama-spacer"></div>
<img class="ama-image" src="/Images/Projects/Amas_Ingredients/ama_kimchee_2.png">
</article>
</section>
</main>
<footer>
<aside></aside>
<article class="border-r cflex" style="flex-grow: 1">
<div class="cflex" style="flex-direction: column">
<h4>Say Hello!</h4>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</article>
<article class="cflex" style="flex-grow: 1; border-right: transparent 2px solid">
<a href="https://www.linkedin.com/in/sasha-beattie/">LinkedIn</a>
</article>
</footer>
<script src="navigation.js">
</script>
</body>
</html>