Skip to content

Commit

Permalink
Deploy preview for PR 36 🛫
Browse files Browse the repository at this point in the history
  • Loading branch information
jboix committed Oct 31, 2024
1 parent 738fac8 commit edd33c8
Show file tree
Hide file tree
Showing 10 changed files with 816 additions and 0 deletions.
79 changes: 79 additions & 0 deletions pr-preview/pr-36/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!DOCTYPE html>
<html>
<head>
<title>Package Showcase</title>
<link rel="stylesheet" href="https://unpkg.com/open-props">
<style>
body {
font-family: var(--font-sans);
background-color: var(--gray-9); /* Dark background for body */
color: var(--gray-1); /* Light text color */
margin: 0 auto;
padding: var(--size-3);
max-width: var(--size-sm);
}

header {
color: var(--gray-3); /* Lightest text color */
padding-bottom: var(--size-2);
text-align: center;
font-size: var(--font-size-1); /* Larger text for the header */
margin: var(--size-2) auto;
}

ul {
list-style-type: none;
padding: 0;
margin: var(--size-2) auto;
background-color: var(--gray-8); /* Slightly lighter dark background for contrast */
box-shadow: var(--shadow-3); /* Prominent shadow for 3D effect */
border-radius: var(--radius-2);
}

li {
border-bottom: 1px solid var(--gray-7);
margin: 0;
transition: background-color 0.3s;
}

li:first-child {
border-radius: var(--radius-2) var(--radius-2) 0 0;
}

li:last-child {
border-radius: 0 0 var(--radius-2) var(--radius-2);
}

li:only-child {
border-radius: var(--radius-2);
}

li:hover {
background-color: var(--gray-6); /* Slightly lighter on hover for interactive feel */
}

a {
display: block;
padding: var(--size-3) var(--size-4);
text-decoration: none;
color: var(--gray-4); /* Subtle blue color for links */
transition: color 0.3s;
font-size: var(--font-size-2); /* Standard text size for links */
}

a:hover {
color: var(--gray-12); /* Slightly brighter blue on hover */
}
</style>
</head>
<body>
<header>
<h1>Pillarbox Extensions</h1>
</header>
<ul>
<li><a href="packages/pillarbox-playlist/index.html">pillarbox-playlist</a></li>
<li><a href="packages/skip-button/index.html">skip-button</a></li>
<li><a href="packages/pillarbox-debug-panel/index.html">pillarbox-debug-panel</a></li>
</ul>
</body>
</html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions pr-preview/pr-36/packages/pillarbox-debug-panel/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!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>Pillarbox-Debug-Panel Demo</title>
<style>
html,
body {
height: 100%;
}

body {
margin: 0;
overflow: hidden;
}
</style>
<script type="module" crossorigin src="./assets/index-CZYLnWs4.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DhtRFMaS.css">
</head>
<body>
<video id="player" class="pillarbox-js" controls muted></video>
</body>
</html>
219 changes: 219 additions & 0 deletions pr-preview/pr-36/packages/pillarbox-playlist/assets/index-BGSA8Lbi.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions pr-preview/pr-36/packages/pillarbox-playlist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!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>Pillarbox-Playlist Demo</title>
<style>
html,
body {
height: 100%;
}

body {
margin: 0;
overflow: hidden;
}
</style>
<script type="module" crossorigin src="./assets/index-BGSA8Lbi.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-BmuOoaPc.css">
</head>
<body>
<video id="player" class="pillarbox-js" controls muted></video>

</body>
</html>
219 changes: 219 additions & 0 deletions pr-preview/pr-36/packages/skip-button/assets/index-B9KY0Yw8.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions pr-preview/pr-36/packages/skip-button/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!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>SkipButton Demo</title>
<style>
html,
body {
height: 100%;
}

body {
margin: 0;
overflow: hidden;
}
</style>
<script type="module" crossorigin src="./assets/index-B9KY0Yw8.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-BdVXP4qA.css">
</head>
<body>
<video id="player" class="pillarbox-js" controls muted></video>

</body>
</html>

0 comments on commit edd33c8

Please sign in to comment.