Last active
December 7, 2015 17:04
-
-
Save mehlah/7c87aeac5cb767b619e6 to your computer and use it in GitHub Desktop.
Browser Paint demo
This file contains 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> | |
<div class="box">Hello</div> | |
<p> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ratione officiis nemo, est quo commodi eos nam quibusdam, ipsa ad natus optio reiciendis quasi enim, aut eum facilis! Similique, accusantium, ullam? | |
</p> | |
<p> | |
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. | |
</p> | |
</body> |
This file contains 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
.box { | |
width: 60px; | |
height: 60px; | |
background-color: rgba(0,0,0,0.7); | |
color: #fff; | |
text-align: center; | |
font-weight: bold; | |
font-size: 18px; | |
border: 10px solid gray; | |
transform: rotate(253deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment