Last active
January 4, 2020 02:01
-
-
Save Yukaii/90c03e43ddc39d33a6c159ca1865753e to your computer and use it in GitHub Desktop.
GistPad playground 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 class="circle red w-50 h-50"></div> | |
| <div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></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
| { | |
| "libraries": [] | |
| } |
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
| console.log(document.querySelector('.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
| .circle { | |
| border-radius: 50%; | |
| overflow: hidden; | |
| cursor: pointer; | |
| } | |
| .w-50 { | |
| width: 50px; | |
| } | |
| .h-50 { | |
| height: 50px; | |
| } | |
| .red { | |
| background-color: red; | |
| } | |
| body { | |
| background-color: black; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment