A Pen by Tamal White on CodePen.
Created
April 28, 2020 04:56
-
-
Save tamalw/92c97db60f8735afc6ba1db9853ba765 to your computer and use it in GitHub Desktop.
Logo Test
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 id="blurb"> | |
<p><svg id="logo" width="200" height="173.2"> | |
<polygon points="50,0 | |
150,0 | |
50,173.2 | |
0,86.6 | |
200,86.6 | |
150,173.2" /> | |
</svg></p> | |
<h1>Tamal White</h1> | |
<p>Data + Code</p> | |
</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
body { | |
text-align: center; | |
font-family: monospace; | |
background-color: white; | |
color: black; | |
} | |
#logo { | |
fill: black; | |
} | |
/* Dark mode */ | |
@media (prefers-color-scheme: dark) { | |
body { | |
background-color: black; | |
color: white; | |
} | |
#logo { | |
fill: white; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment