-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
816 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
219 changes: 219 additions & 0 deletions
219
pr-preview/pr-36/packages/pillarbox-debug-panel/assets/index-CZYLnWs4.js
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
pr-preview/pr-36/packages/pillarbox-debug-panel/assets/index-DhtRFMaS.css
Large diffs are not rendered by default.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
pr-preview/pr-36/packages/pillarbox-debug-panel/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
219
pr-preview/pr-36/packages/pillarbox-playlist/assets/index-BGSA8Lbi.js
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
pr-preview/pr-36/packages/pillarbox-playlist/assets/index-BmuOoaPc.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
219
pr-preview/pr-36/packages/skip-button/assets/index-B9KY0Yw8.js
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
pr-preview/pr-36/packages/skip-button/assets/index-BdVXP4qA.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |