-
-
Save Funlang/716d203bcb0deb5b10b07e36d5d910be to your computer and use it in GitHub Desktop.
Text on a circle
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
| /** | |
| * Text on a circle | |
| */ | |
| body { | |
| font: bold 120% Helvetica, sans-serif; | |
| } | |
| .circular { | |
| width: 30em; | |
| height: 30em; | |
| margin: 4em auto 0; | |
| } | |
| .circular svg { | |
| display: block; | |
| overflow: visible; | |
| transition: 10s linear transform; | |
| } | |
| .circular svg:hover { transform: rotate(-2turn); } | |
| .circular text { fill: currentColor } | |
| .circular path { fill: none; } |
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="circular"> | |
| circular reasoning works because | |
| </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
| {"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment