-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (105 loc) · 5.05 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
<!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>Stories</title>
<link rel="icon" href="https://assets.codepen.io/67044/favicon-stories.svg" type="image/svg+xml">
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<header class="header row" data-direction="rtl">
<div class="header__top">
<div>
<h1 class="logo">Stories <sup>Layouts we love</sup></h1>
<p>
Layout patterns built using modern CSS APIs to help you build common
interfaces such as cards, dynamic grid areas, and full-page layouts.
We want to help you build beautiful, accessible, fast, and secure
websites that work cross-browser, and for all of your users.
</p>
</div>
</div>
<hr />
<div class="header__middle">
<div class="tagline">By <a href="https://www.maillard.dev">Michel Maillard</a></div>
</div>
<hr />
</header>
<main class="wrapper">
<section class="prose">
<ul class="cards grid">
<!-- li>
<a href="/01/dist/index.html" class="card">
<img class="card__image" loading="lazy" src="https://assets.codepen.io/67044/poseidon.png" alt="Poseidon">
<div class="card__overlay">
<div class="card__header">
<svg class="card__arc" xmlns="http://www.w3.org/2000/svg"><path /></svg>
<img class="card__thumb" loading="lazy" src="https://assets.codepen.io/67044/internal/avatars/users/default.png?format=auto&version=1&width=80&height=80" alt="Michel">
<div class="card__header-text">
<h3 class="card__title">Poseidon</h3>
<span class="card__status">Last modified: November 2024</span>
</div>
</div>
<p class="card__description">Components Implemented: <code>Scroll Driven Animation API</code> and <code>Popover API</code></p>
</div>
</a>
</li -->
<li>
<a href="/01/dist/index.html" class="card">
<img class="card__image" loading="lazy" src="https://images.unsplash.com/photo-1675025424518-fe68f3e68535?crop=entropy&fm=jpg&fit=crop&w=600&h=600&q=80" alt="Poseidon">
<div class="card__overlay">
<div class="card__header">
<svg class="card__arc" xmlns="http://www.w3.org/2000/svg"><path /></svg>
<img class="card__thumb" loading="lazy" src="https://assets.codepen.io/67044/internal/avatars/users/default.png?format=auto&version=1&width=80&height=80" alt="Michel">
<div class="card__header-text">
<h3 class="card__title">Hangman</h3>
<span class="card__status">Last modified: November 2024</span>
</div>
</div>
<p class="card__description">Asymmetrical Grid Layout</p>
</div>
</a>
</li>
<li>
<a href="/03/dist/index.html" class="card">
<img class="card__image" loading="lazy" src="https://cdn.shopify.com/s/files/1/1834/6621/files/WanderlustLife-earrings_700x.jpg" alt="Poseidon">
<div class="card__overlay">
<div class="card__header">
<svg class="card__arc" xmlns="http://www.w3.org/2000/svg"><path /></svg>
<img class="card__thumb" loading="lazy" src="https://assets.codepen.io/67044/internal/avatars/users/default.png?format=auto&version=1&width=80&height=80" alt="Michel">
<div class="card__header-text">
<h3 class="card__title">Wanderlust</h3>
<span class="card__status">Last modified: November 2024</span>
</div>
</div>
<p class="card__description">Asymmetrical Grid Layout</code></p>
</div>
</a>
</li>
</ul>
<!-- ul class="grid">
<li>
<a href="/01/dist/index.html" class="">Story 01 - Hangman</a>
</li>
<li>
<a href="/02/dist/index.html" class="">Story 02 - ShopShop</a>
</li>
<li>
<a href="/03/dist/index.html" class="">Story 03 - Wanderlust</a>
</li>
<li>
<a href="/04/dist/index.html" class=""
>Story 04 - Laid Back Loafers</a
>
</li>
<li>
<a href="/05/dist/index.html" class="">Story 05 - InFlow ❦</a>
</li>
</ul -->
</section>
</main>
</body>
</html>