Skip to content

Instantly share code, notes, and snippets.

@heracek
Created May 18, 2013 00:00
Show Gist options
  • Save heracek/5602692 to your computer and use it in GitHub Desktop.
Save heracek/5602692 to your computer and use it in GitHub Desktop.
Untitled
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
.container {
font-family: "helvetica neue", helvetica, sans-serif;
font-weight: 200;
font-size: 30px;
top: 40px;
height: 300px;
width: 400px;
margin-top: 50px;
position: relative;
background: #f2f2f2;
box-shadow: inset 0px 12px 19px -18px #000;
padding: 22px;
}
.wrapper {
margin-left:-9px;
position: absolute;
top: -15px;
left: 30%;
height: 30px;
overflow: hidden;
width: 18px;
transition: all 200ms ease-in-out;
}
.cornerless {
left: -6px;
top: 12px;
background: #f2f2f2;
box-shadow: inset -14px 14px 20px -21px #000;
width: 30px;
height: 30px;
padding:10px;
position:relative;
transform: rotate(-45deg);
transition: all 200ms ease-in-out;
}
.container:hover .wrapper {
margin-left: 0px;
width: 0px;
height: 15px;
}
.container:hover .wrapper .cornerless {
left: -15px;
top: 22px;
}
<div class="container">
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </div>
<div class="wrapper">
<div class="cornerless">
</div>
</div>
</div>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"80","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment