-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
52 lines (52 loc) · 1.39 KB
/
popup.html
File metadata and controls
52 lines (52 loc) · 1.39 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>SyncManager</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 10px;
background-color: rgba(0, 0, 0, 0.8);
color: white;
text-align: center;
}
.title-artist {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 10px;
}
#title-display {
font-size: 24px;
font-weight: bold;
}
#artist-display {
font-size: 18px;
color: #ccc;
}
#time-display {
margin-top: 10px;
font-size: 16px;
color: #aaa;
}
#lyrics-display {
margin-top: 20px;
padding: 20px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.1);
font-size: 22px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="title-artist">
<div id="title-display">정보를 가져오는 중...</div>
<div id="artist-display">정보를 가져오는 중...</div>
</div>
<div id="time-display">재생 시각을 가져오는 중...</div>
<div id="lyrics-display">가사 데이터를 가져오는 중...</div>
<script src="popup.js"></script>
</body>
</html>