Created
November 30, 2021 16:02
-
-
Save kris-hamade/42c1cbab988e969b91c01601d822df33 to your computer and use it in GitHub Desktop.
PornHub logo
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
| <div class="hub"> | |
| <span contenteditable="true">Code</span> | |
| <span contenteditable="true">pen</span> | |
| </div> |
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
| html { | |
| height: 100%; | |
| } | |
| body { | |
| background: #000000; | |
| color: #ffffff; | |
| margin: 0; | |
| min-height: 100%; | |
| height: 100%; | |
| position: relative; | |
| } | |
| .hub { | |
| display: block; | |
| font-family: sans-serif; | |
| font-weight: bold; | |
| font-size: 9vw; | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| } | |
| .hub span:nth-child(2) { | |
| background: #FF9900; | |
| color: #000000; | |
| border-radius: 1vw; | |
| padding: 0 1vw 1vw 1vw; | |
| display: inline-block; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment