-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added: editable list of audio sources (#18)
- Loading branch information
1 parent
52fa912
commit 6a4d579
Showing
7 changed files
with
164 additions
and
258 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.logo { | ||
box-shadow: 1px 1px 0px 0px black, 2px 2px 0px 0px black, 3px 3px 0px 0px black, 4px 4px 0px 0px black, 5px 5px 0px 0px black; | ||
border: 3px solid black; | ||
} | ||
|
||
.button-raised { | ||
font-family: "Open Sans", sans-serif; | ||
font-weight: bold; | ||
font-size: 16px; | ||
letter-spacing: 2px; | ||
background-color: lightgrey; | ||
text-decoration: none; | ||
text-transform: uppercase; | ||
color: #000; | ||
cursor: pointer; | ||
border: 3px solid; | ||
padding: 0.25em 0.5em; | ||
margin: 5px; | ||
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px; | ||
position: relative; | ||
user-select: none; | ||
-webkit-user-select: none; | ||
touch-action: manipulation; | ||
} | ||
|
||
.button-raised:active { | ||
box-shadow: 0px 0px 0px 0px; | ||
top: 5px; | ||
left: 5px; | ||
} | ||
|
||
.button-raised:disabled { | ||
pointer-events: none; | ||
background-color: chocolate; | ||
} | ||
|
||
.button-raised-mute.muted { | ||
background-color: darkred; | ||
} | ||
|
||
/* CSS for hiding the alert initially */ | ||
#player-alert { | ||
display: none; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.