Skip to content

Commit bfe39ac

Browse files
committed
Done
1 parent 38b5744 commit bfe39ac

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

public/playground.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>t-strings: coming soon to a Python near you</title>
7+
<link rel="stylesheet" href="https://use.typekit.net/xls3jeb.css" />
8+
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
9+
<style type="text/tailwindcss">
10+
@theme {
11+
--font-serif: "dolly-new", "serif";
12+
--font-sans: "auto-pro-new", "sans-serif";
13+
14+
--color-treeline: #0f1a2d;
15+
--color-light-treeline: #1a2c47;
16+
--color-foothills: #233d58;
17+
--color-cloudbank: #486280;
18+
--color-light-cloudbank: #66809e;
19+
--color-lighter-cloudbank: #849ebc;
20+
--color-sunset: #d19d4d;
21+
--color-sound: #466b96;
22+
--color-light-sound: #6489b4;
23+
--color-wash: #d2d3d5;
24+
--color-light-wash: #e0e1e3;
25+
--color-lightest-wash: #f0f1f3;
26+
}
27+
28+
html {
29+
font-size: 16pt;
30+
@apply md:text-[22pt];
31+
}
32+
33+
a {
34+
cursor: pointer;
35+
color: var(--color-cloudbank);
36+
text-decoration: underline;
37+
transition: color 0.2s;
38+
}
39+
40+
a:hover {
41+
color: var(--color-sunset);
42+
transition: color 0.2s;
43+
}
44+
45+
strong {
46+
color: #333;
47+
}
48+
49+
.team a {
50+
text-decoration: none;
51+
}
52+
53+
.team svg {
54+
fill: var(--color-cloudbank);
55+
height: 0.85em;
56+
display: inline-block;
57+
margin-left: 0.25em;
58+
vertical-align: baseline;
59+
transition: fill 0.2s;
60+
}
61+
62+
.team svg:hover {
63+
fill: var(--color-sunset);
64+
transition: fill 0.2s;
65+
}
66+
</style>
67+
</head>
68+
<body>
69+
<div
70+
class="flex flex-col items-center min-h-screen bg-lightest-wash py-8 bg-light-cloudbank text-treeline"
71+
>
72+
<div class="mx-3 md:mx-auto max-w-sm pb-4 space-y-4">
73+
<p>Put your playground here!</p>
74+
</div>
75+
</div>
76+
</body>
77+
</html>

0 commit comments

Comments
 (0)