-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mute icon and improve overall styling
- Loading branch information
Mike Wheaton
committed
Jun 8, 2019
1 parent
9d049fa
commit 89d8e64
Showing
8 changed files
with
77 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
@import url("https://fonts.googleapis.com/css?family=Space+Mono&display=swap"); | ||
|
||
.App-toggleMuteButton { | ||
background: none; | ||
border: none; | ||
color: #bbbbbb; | ||
cursor: pointer; | ||
display: flex; | ||
font-size: calc(1rem + 5vw); | ||
padding: 2vw; | ||
position: absolute; | ||
right: 0; | ||
top: 0; | ||
transition: color 0.2s ease-in-out; | ||
} | ||
|
||
.App-toggleMuteButton:hover { | ||
opacity: 1; | ||
} | ||
|
||
.App-toggleMuteButton.is-muted { | ||
color: #d65a31; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.Timer { | ||
align-items: center; | ||
display: flex; | ||
height: 100vh; | ||
justify-content: center; | ||
} | ||
|
||
.Timer-clock { | ||
color: #eeeeee; | ||
font-family: "Space Mono", monospace; | ||
font-size: 28vw; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
body { | ||
margin: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", | ||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", | ||
sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
code { | ||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", | ||
monospace; | ||
-webkit-font-smoothing: antialiased; | ||
background-color: #222831; | ||
margin: 0; | ||
padding: 0; | ||
} |
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