Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added slopwind (tailwind) support #374

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions LIVE/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Slopify S1</title>
Expand All @@ -18,6 +18,8 @@
crossorigin="anonymous"
></script>
<script src="src/static/js/speech.js"></script>
<link rel="stylesheet" href="src/static/css/main.css">
<link rel="stylesheet" href="src/static/css/tailwind.css">
<script src="tv/hls.min.js"></script>
<script src="src/static/js/anime_girl_live_stream.js"></script>
<link rel="stylesheet" href="src/static/css/main.css" />
Expand Down Expand Up @@ -49,16 +51,19 @@

<body>
<header>
<h1>Welcome to slopify.dev season 1 LIVE AND DIRECT</h1>
<h1 class="bg-red-300">Welcome to slopify.dev season 1 LIVE AND DIRECT</h1>
</header>
<hr>
<button
type="button"
onclick="location.href = 'https://s0.slopify.dev/';"
>
Click here for stale slop. &#x1F416;
</button>

Check failure on line 62 in LIVE/index.html

View workflow job for this annotation

GitHub Actions / validate-html

Stray end tag “header”.
</header>
<div class="center"><p>This is how to center a div!</p></div>
<hr />

<h3>Navigation:</h3>
<ul>
<li>
Expand Down
9 changes: 8 additions & 1 deletion LIVE/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"module": "index.ts",
"type": "module",
"scripts": {
"start": "live-server --open=index.html"
"start": "npm run build && live-server --open=index.html",
"build": "tailwindcss -i ./src/style.css -o ./src/static/css/tailwind.css",
"build:css": "tailwindcss -i ./src/style.css -o ./src/static/css/tailwind.css --watch",
"dev": "concurrently \"npm run build:css\" \"npm run start\""
},
"repository": {
"type": "git",
Expand All @@ -25,14 +28,18 @@
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"eslint": "^9.17.0",
"eslint-plugin-jsonc": "^2.18.2",
"globals": "^15.14.0",
"htmlhint": "^1.1.4",
"live-server": "^1.2.2",
"postcss": "^8.4.49",
"standard": "^17.1.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.17",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions LIVE/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
Loading
Loading