-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (84 loc) · 4.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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">
<meta name="apple-mobile-web-app-title" content="LofiRadio" />
<link rel="icon" type="image/png" href="assets/img/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="assets/img/favicon.svg" />
<link rel="shortcut icon" href="assets/img/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="/img/site.webmanifest" />
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="assets/phone.css">
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<title>Lofi Radio</title>
</head>
<body>
<div class="scanline pointer-events-none "></div>
<div class="crt glow w-full h-full">
<div id="ytplayer" class="player-window hidden">
</div>
<div class="flex justify-center items-center flex-col relative bottom-0">
<div id="func_button">
<div id="header" class="text-[#39db59] text-4xl">^_^</div>
<div id="static" class="text-[#39db59] text-4xl">♪</div>
<div class="flex justify-center items-center m-2 p-2 text-3xl">
<button id="previous"
class=" mr-2 ml-2 cursor-pointer text-[#39db59] pl-4 pr-4 border-2 rounded-[1px] max-md:text-[16px]">
<a class="glow">
previous
</a>
<!-- <img src="./assets/skip_previous_24dp_39DB59_FILL1_wght400_GRAD0_opsz24.svg" alt="previous"> -->
</button>
<button id="play"
class=" mr-2 ml-2 cursor-pointer text-[#39db59] pl-4 pr-4 border-2 rounded-[1px] max-md:text-[16px]">
<a class="glow">
play
</a>
<!-- <img src="./assets/play_arrow_24dp_39DB59_FILL1_wght400_GRAD0_opsz24.svg" alt="play"> -->
</button>
<button id="pause"
class=" mr-2 ml-2 cursor-pointer text-[#39db59] pl-4 pr-4 border-2 rounded-[1px] max-md:text-[16px]">
<a class="glow">
pause
</a>
<!-- <img src="./assets/pause_24dp_39DB59_FILL1_wght400_GRAD0_opsz24.svg" alt="pause"> -->
</button>
<button id="next"
class=" mr-2 ml-2 cursor-pointer text-[#39db59] pl-4 pr-4 border-2 rounded-[1px] max-md:text-[16px]">
<a class="glow">
next
</a>
<!-- <img src="./assets/skip_next_24dp_39DB59_FILL1_wght400_GRAD0_opsz24.svg" alt="next"> -->
</button>
</div>
<div class="flex justify-center items-center flex-col">
<button id="full_screen"
class="mr-2 ml-2 cursor-pointer text-[#39db59] pl-4 pr-4 border-2 rounded-[1px] max-md:text-[14px]">
<a class="glow">
full_screen
</a>
</button>
<div class="mt-8 opacity-50 hover:opacity-80">
<input type="range" min="1" max="100" value="100" class="slider" id="myRange">
</div>
</div>
</div>
<div id="info" class="w-60 right-0 top-0 absolute text-[1.3rem]">
<button class="mr-2 ml-2 cursor-pointer text-[#39db59] pl-4 pr-4 border-2 rounded-[1px] max-md:text-[14px]">
<a class="glow" href="https://github.com/bremsstrahlung-57/Lofi-Radio" target="_blank">github
</a>
</button>
<button class="mr-2 ml-2 cursor-pointer text-[#39db59] pl-4 pr-4 border-2 rounded-[1px] max-md:text-[14px]">
<a class="glow" href="https://x.com/barbarik____" target="_blank">twitter/x
</a>
</button>
</div>
</div>
</div>
</body>
<script src="src/vid.js"></script>
<script src="src/background.js"></script>
</html>