-
Notifications
You must be signed in to change notification settings - Fork 72k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Configurable clock views * Configurable clock views * Configurable clock views * Configurable clock views * Configurable clock views * Configurable clock views * Update README.md * Update README.md * Configurable clock views
- Loading branch information
1 parent
f3fab56
commit 3d6f488
Showing
11 changed files
with
263 additions
and
188 deletions.
There are no files selected for viewing
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#config-form { | ||
position: fixed; | ||
top: 10px; | ||
left: 10px; | ||
width: 250px; | ||
min-width: 220px; | ||
background: white; | ||
color: black; | ||
opacity: 0.8; | ||
padding: 1%; | ||
font-size: 10px; | ||
} | ||
#config-form p { | ||
margin: 15px; | ||
text-align: left; | ||
} | ||
input.elmt { | ||
width: 120px; | ||
} | ||
select { | ||
width: 100%; | ||
} | ||
#facename { | ||
font-size: 7px; | ||
} | ||
#clocklink { | ||
font-size: 18px; | ||
} | ||
#clocklink:link, #clocklink:visited { | ||
background-color: #f44336; | ||
color: white; | ||
padding: 14px 25px; | ||
text-align: center; | ||
text-decoration: none; | ||
display: inline-block; | ||
} | ||
#clocklink:hover, #clocklink:active { | ||
background-color: red; | ||
} |
Oops, something went wrong.