-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Christmas theme * remove css nesting and empty classes
- Loading branch information
1 parent
548247e
commit 8203d90
Showing
5 changed files
with
2,302 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,18 @@ | ||
--- | ||
title: X-mas | ||
author: '@qualabs' | ||
date: 2024-12 | ||
description: A festive Christmas theme for the player with cozy red and green tones, twinkling lights, and a warm holiday vibe—perfect for spreading seasonal cheer! | ||
tagGroups: | ||
media: | ||
- Video | ||
framework: | ||
- HTML | ||
- React | ||
- Next.js | ||
- Vue | ||
- Svelte | ||
features: | ||
- google cast | ||
- airplay | ||
--- |
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,56 @@ | ||
{ | ||
"name": "@player.style/x-mas", | ||
"version": "0.0.2", | ||
"description": "A festive Christmas theme for the player with cozy red and green tones, twinkling lights, and a warm holiday vibe—perfect for spreading seasonal cheer!", | ||
"author": "@qualabs", | ||
"license": "MIT", | ||
"homepage": "https://github.com/muxinc/player.style#readme", | ||
"bugs": { | ||
"url": "https://github.com/muxinc/player.style/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/muxinc/player.style.git", | ||
"directory": "themes/x-mas" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"type": "module", | ||
"types": "./dist/media-theme.d.ts", | ||
"main": "./dist/media-theme.js", | ||
"exports": { | ||
".": { | ||
"types": "./dist/media-theme.d.ts", | ||
"import": "./dist/media-theme.js", | ||
"require": "./dist/cjs/media-theme.js", | ||
"default": "./dist/media-theme.js" | ||
}, | ||
"./react": { | ||
"types": "./dist/react.d.ts", | ||
"import": "./dist/react.js", | ||
"require": "./dist/cjs/react.js", | ||
"default": "./dist/react.js" | ||
} | ||
}, | ||
"typesVersions": { | ||
"*": { | ||
"react": [ | ||
"./dist/react.d.ts" | ||
], | ||
"*": [ | ||
"./dist/media-theme.d.ts" | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"clean": "rimraf dist", | ||
"build": "build-theme" | ||
}, | ||
"peerDependencies": { | ||
"media-chrome": ">=1.0.0" | ||
}, | ||
"devDependencies": { | ||
"build-theme": "^0.0.8" | ||
} | ||
} |
Oops, something went wrong.