Created
April 23, 2021 23:08
-
-
Save dzg/b20fba13fbb2ad99ae7eccbf198f5043 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* 0129 */ | |
#timer { position: absolute; top: 0px; left: 0%; height: 6px; } | |
#hud { font-family: system-ui; position: fixed; top: 10px; color: white; font-size: 18px; width: calc(100vw - 370px); left: 230px; text-align: center; line-height: 1; display: flex; } | |
#hud .hudItem:first-child {float: left;text-align: left;} | |
#hud .hudItem:last-child { float: right; text-align: right; } | |
.hudItem { display: inline-grid; padding: 0px 10px; width: 100%; } | |
.hudItem .t1 { font-size: 14px; text-transform: uppercase} | |
.hudItem .t2 { font-size: 34px; } | |
#hudNextPunch { cursor: pointer; } | |
#hudNextPunch:hover { color: red; } | |
.hudItem .date {font-size: 50%} | |
.tip {background: #ffee8d; position: absolute; padding: 2px 5px; border-radius: 20px; font-size: 150%; font-family: system-ui; font-weight: 600; } | |
.info { font-size: 80%; text-transform: uppercase; text-align: left; display: inline; } | |
.info td { padding: 1px 1ex; font-size: 90%; } | |
.info td:last-child {text-align: right;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment