Skip to content

Commit 698c725

Browse files
committed
workload
1 parent c760d16 commit 698c725

File tree

127 files changed

+8327
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+8327
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@
3535

3636
/resources/charts/node_modules/
3737
/resources/todomvc/big-dom-generator/node_modules/
38+
/experimental/responsive-design/node_modules/

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ package-lock.json
4646
/resources/perf.webkit.org
4747

4848
/resources/react-stockcharts
49+
50+
/experimental/responsive-design/
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
src/tailwind.generated.css
2+
src/tailwind.chat-window.generated.css
3+
dist/
4+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSameLine": false,
4+
"bracketSpacing": true,
5+
"htmlWhitespaceSensitivity": "css",
6+
"printWidth": 250,
7+
"semi": true,
8+
"singleQuote": false,
9+
"tabWidth": 4,
10+
"trailingComma": "es5",
11+
"useTabs": false,
12+
"plugins": ["prettier-plugin-tailwindcss"]
13+
}
Lines changed: 114 additions & 0 deletions

experimental/responsive-design/dist/app.js

Lines changed: 314 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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>Cooking iframe</title>
7+
<script type="module" src="app.js"></script>
8+
<!-- Preload links autogenerated by Rollup -->
9+
<link rel="preload" as="image" href="./public/images/5-healthy-smoothie.webp">
10+
<link rel="preload" as="image" href="./public/images/beef-stroganoff.webp">
11+
<link rel="preload" as="image" href="./public/images/beef-tacos.webp">
12+
<link rel="preload" as="image" href="./public/images/best-comfort-food.webp">
13+
<link rel="preload" as="image" href="./public/images/bread-at-home.webp">
14+
<link rel="preload" as="image" href="./public/images/caesar-salad.webp">
15+
<link rel="preload" as="image" href="./public/images/chicken-alfredo.webp">
16+
<link rel="preload" as="image" href="./public/images/chocolate-cake.webp">
17+
<link rel="preload" as="image" href="./public/images/chocolate-chip-cookies.webp">
18+
<link rel="preload" as="image" href="./public/images/fruit-salad.webp">
19+
<link rel="preload" as="image" href="./public/images/garlic-bread.webp">
20+
<link rel="preload" as="image" href="./public/images/gluten-free-baking.webp">
21+
<link rel="preload" as="image" href="./public/images/greek-salad.webp">
22+
<link rel="preload" as="image" href="./public/images/homemade-pizza.webp">
23+
<link rel="preload" as="image" href="./public/images/icons-outline.webp">
24+
<link rel="preload" as="image" href="./public/images/lemon-drizzle-cake.webp">
25+
<link rel="preload" as="image" href="./public/images/low-carb-desserts.webp">
26+
<link rel="preload" as="image" href="./public/images/margherita-pizza.webp">
27+
<link rel="preload" as="image" href="./public/images/mastering-art-of-french-cooking.webp">
28+
<link rel="preload" as="image" href="./public/images/meal-prepping.webp">
29+
<link rel="preload" as="image" href="./public/images/mediterranean-cuisine.webp">
30+
<link rel="preload" as="image" href="./public/images/pancakes.webp">
31+
<link rel="preload" as="image" href="./public/images/plant-based-protein.webp">
32+
<link rel="preload" as="image" href="./public/images/quinoa-stuffed-peppers.webp">
33+
<link rel="preload" as="image" href="./public/images/ramen-noodles.webp">
34+
<link rel="preload" as="image" href="./public/images/seasonal-salads.webp">
35+
<link rel="preload" as="image" href="./public/images/shrimp-paella.webp">
36+
<link rel="preload" as="image" href="./public/images/spaghetti-carbonara.webp">
37+
<link rel="preload" as="image" href="./public/images/superfoods-you-should-include.webp">
38+
<link rel="preload" as="image" href="./public/images/sushi-platter.webp">
39+
<link rel="preload" as="image" href="./public/images/thai-green-curry.webp">
40+
<link rel="preload" as="image" href="./public/images/tomato-soup.webp">
41+
<link rel="preload" as="image" href="./public/images/vegan-burger.webp">
42+
<link rel="preload" as="image" href="./public/images/vegan-desserts.webp">
43+
<link rel="preload" as="image" href="./public/images/vegetable-stir-fry.webp">
44+
<link rel="preload" as="image" href="./public/images/vegetarian-stir-fry.webp">
45+
<link rel="preload" as="image" href="./public/images/week-night-dinners.webp">
46+
</head>
47+
<body>
48+
<cooking-app></cooking-app>
49+
</body>
50+
</html>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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>Cooking with Lit and Tailwind</title>
7+
<style>
8+
body,
9+
html {
10+
margin: 0;
11+
width: 100%;
12+
height: 100%;
13+
overflow: hidden;
14+
}
15+
#content-iframe {
16+
width: 100%;
17+
height: 100%;
18+
border: none;
19+
}
20+
</style>
21+
</head>
22+
<body>
23+
<iframe title="Cooking Website with Recipes" id="content-iframe" src="iframe.html"></iframe>
24+
</body>
25+
</html>
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)