html foo
This commit is contained in:
parent
31ec2917ea
commit
eac3a95371
43
index.html
43
index.html
|
@ -6,22 +6,22 @@
|
||||||
<title>sanic :: paused</title>
|
<title>sanic :: paused</title>
|
||||||
<style>
|
<style>
|
||||||
/* generic styles */
|
/* generic styles */
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header, footer, main, section {
|
||||||
|
border: 1px solid red;
|
||||||
|
margin: 1px;
|
||||||
|
padding 1px;
|
||||||
|
}
|
||||||
|
|
||||||
/* tab controls */
|
/* tab controls */
|
||||||
.tabs {
|
.tabs {
|
||||||
overflow: hidden; /* what does this do? */
|
overflow: hidden; /* what does this do? */
|
||||||
border: 1px solid #ccc;
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
}
|
}
|
||||||
.tabs button {
|
.tabs button {
|
||||||
background-color: inherit;
|
|
||||||
float: left;
|
float: left;
|
||||||
border: none;
|
|
||||||
outline: none;
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 14px 16px;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
}
|
||||||
.tabs button:hover {
|
.tabs button:hover {
|
||||||
background-color: #ddd;
|
background-color: #ddd;
|
||||||
|
@ -31,9 +31,16 @@
|
||||||
}
|
}
|
||||||
.tab {
|
.tab {
|
||||||
display: none;
|
display: none;
|
||||||
padding: 6px 12px;
|
}
|
||||||
border: 1px solid #ccc;
|
|
||||||
border-top: none;
|
/* table */
|
||||||
|
thead {
|
||||||
|
background-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* player controls */
|
||||||
|
#player-controls {
|
||||||
|
border: 1px solid blue;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
|
@ -48,7 +55,19 @@
|
||||||
<body>
|
<body>
|
||||||
<!-- top navigation and playback control -->
|
<!-- top navigation and playback control -->
|
||||||
<header id="top-nav">
|
<header id="top-nav">
|
||||||
<div id="">
|
<div id="player-controls">
|
||||||
|
<div>
|
||||||
|
<input type="text" value="artist - track" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button>⏮️</button>
|
||||||
|
<button>⏯️</button>
|
||||||
|
<button>⏹️</button>
|
||||||
|
<button>⏭️</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="range" id="track-progress" name="track-progress" min="0" max="100" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue