practiced-songs
Matthew Huntington 12 months ago
parent 6a48e789d1
commit b2361c60ef

@ -7,6 +7,9 @@ body {
background-color: black; background-color: black;
color: grey; color: grey;
} }
a {
color:grey;
}
} }
td,th { td,th {
@ -39,3 +42,13 @@ tbody tr:nth-child(even) td{
#songs { grid-area: 2 / 3 / 3 / 4; } #songs { grid-area: 2 / 3 / 3 / 4; }
} }
nav {
text-align:right;
position:fixed;
width:100%;
}
nav ul {
list-style:none;
/*background-color:rgba(100,100,100, 0.5);*/
}

@ -35,6 +35,22 @@
</script> </script>
<template> <template>
<nav>
<ul>
<li>
<a href="#timer">Timer</a>
</li>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#category">Category</a>
</li>
<li>
<a href="#songs">Songs</a>
</li>
</ul>
</nav>
<main> <main>
<section id="timer" :class="{timerRunning:timerRunning, micThresholdExceeded:micThresholdExceeded}"> <section id="timer" :class="{timerRunning:timerRunning, micThresholdExceeded:micThresholdExceeded}">
<Status ref="statusRef"/> <Status ref="statusRef"/>

Loading…
Cancel
Save