Skip to content

Commit

Permalink
feat: add link to repo in ui
Browse files Browse the repository at this point in the history
  • Loading branch information
open-dynaMIX committed Dec 8, 2020
1 parent aeb68f6 commit 7a0e3a7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions webui-page/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
<div class="burger">
<a href="#" onClick="togglePlaylist(); return false;" title="Show playlist"><i class="fas fa-list-ul"></i></a>
</div>
<div class="info">
<a href="https://github.com/open-dynaMIX/simple-mpv-webui" target="_blank" title="simple-mpv-webui on GitHub"><i class="fas fa-info"></i></a>
</div>
<h1 id="title">Title</h1>
<h2 id="artist">Artist</h2>
<h3 id="album">Album</h3>
Expand Down
12 changes: 11 additions & 1 deletion webui-page/webui.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,23 @@ h3 {
float: right;
font-size: 8vw;
/*top right bottom left*/
margin: 0 30px 30px 30px;
margin: 0 30px 0 30px;
}

.burger a {
color: var(--main-fg-color);
}

.info {
float: right;
font-size: 6.55vw;
margin: 7px 30px 0 10px;
}

.info a {
color: var(--main-fg-color);
}

.button {
text-align: center;
display: inline-block;
Expand Down

0 comments on commit 7a0e3a7

Please sign in to comment.