Skip to content

Instantly share code, notes, and snippets.

@ahdezm
Created March 10, 2012 19:24
Show Gist options
  • Save ahdezm/2012613 to your computer and use it in GitHub Desktop.
Save ahdezm/2012613 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
margin:0;
background:rgb(0,0,20);
}
#light {
position:relative;
width:0;
height:0;
margin-left:12px;
}
#light:before {
content:"";
width: 0;
height: 0;
display:block;
border-left: 25px solid transparent;
border-right: 0px solid transparent;
border-bottom: 65px solid yellow;
transform:skewx(-20deg);
}
#light:after {
content:"";
width: 0;
height: 0;
display:block;
border-left: 25px solid transparent;
border-right: 0px solid transparent;
border-bottom: 65px solid yellow;
transform:skewx(-20deg) rotate(180deg) translateY(20px);
}
<div id="light"></div>
{"view":"split","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment