-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (69 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS box-shadow examples - CSS Shadow Realm</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<header>
<p>Catalog of attractive CSS shadows from websites and services</p>
<p>Click on a card to copy the shadow</p>
</header>
<ul>
<li>
<span>#1</span>
<span class="source">from Discord</span>
</li>
<li>
<span>#2</span>
<span class="source">from Discord</span>
</li>
<li>
<span>#3</span>
<span class="source">from Discord</span>
</li>
<li>
<span>#4</span>
<span class="source">from MaterializeCSS</span>
</li>
<li>
<span>#5</span>
<span class="source">from Tailwind-xs</span>
</li>
<li>
<span>#6</span>
<span class="source">from Tailwind-md</span>
</li>
<li>
<span>#7</span>
<span class="source">from Tailwind-xl</span>
</li>
<li>
<span>#8</span>
<span class="source">from Tailwind inner</span>
</li>
<li>
<span>#9</span>
<span class="source">from ls.graphics</span>
</li>
<li>
<span>#10</span>
<span class="source">from box-shadows.co</span>
</li>
<li>
<span>#11</span>
</li>
</ul>
<div class="credit">
</div>
<div class="notification">
Box-shadow copied to Clipboard
</div>
</main>
<script src="./app.js"></script>
</body>
</html>