q3kled-chrome/popup.html

57 lines
994 B
HTML

<!doctype html>
<html>
<head>
<title>Share to q3kled popup</title>
<style>
#targetURL {
font-weight: bold;
}
body {
min-width: 300px;
}
button {
font-weight: bold;
padding: 10px 20px;
font-size: 120%;
}
#status {
font-weight: bold;
font-size: 120%;
text-align: center;
}
#status.error {
color: red;
}
#status.success {
color: green;
}
#status.progress {
color black;
}
.buttons {
margin: 15px auto;
text-align: center;
}
</style>
<script src="popup.js"></script>
</head>
<body>
This is going to share following URL to q3kled:
<div id="targetURL"></div>
<div class="buttons">
<button id="append">Add to Queue</button>
<button id="now">Play now</button>
</div>
<div id="status"></div>
</body>
</html>