A Pen by Dave Edwards on CodePen.
Created
October 9, 2013 21:21
-
-
Save dwedwards/6908618 to your computer and use it in GitHub Desktop.
A Pen by Dave Edwards.
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="box bmw"> | |
| <div class="ribbon"> | |
| <div class="txt"> | |
| CD Player </div> | |
| </div> | |
| <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
| .box { | |
| width: 300px; | |
| height: 300px; | |
| } | |
| .bmw{ background-image: url(http://www.eurodb.com.au/New-used-car-review/wp-content/uploads/2013/04/Official-Car-of-MottoGP-Safety-Car-BMW-M6-Gran-Coupe.-300x300.jpg); | |
| } | |
| .ribbon { | |
| -webkit-transform: rotate(-45deg); | |
| -moz-transform: rotate(-45deg); | |
| -ms-transform: rotate(-45deg); | |
| -o-transform: rotate(-45deg); | |
| transform: rotate(-45deg); | |
| border: 25px solid transparent; | |
| border-bottom: 25px solid blue; | |
| position: absolute; | |
| top:30px; | |
| left:-37px; | |
| padding: 0 10px; | |
| width: 115px; | |
| color: white; | |
| font-family: sans-serif; | |
| font-size: 18px; | |
| font-weight:bold; | |
| } | |
| .ribbon .txt { | |
| position: absolute; | |
| top: 1px; | |
| left: 30px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment