Skip to content

Instantly share code, notes, and snippets.

@wilsonpage
Created February 3, 2012 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wilsonpage/1729486 to your computer and use it in GitHub Desktop.
Save wilsonpage/1729486 to your computer and use it in GitHub Desktop.
Gisttttttt
/******************************************
** CORE
******************************************/
#overlay-container {
display: none; /* hidden by default */
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
-webkit-box-align: center
}
/* shown on request */
#overlay-container.show { display: -webkit-box; }
.overlay {
background: #333;
border: solid 1px;
border-color: #666 #222 #111 #555;
border-radius: 10px;
box-shadow:
0px 0px 18px rgbA(0,0,0,0.28),
1px 1px 6px rgbA(0,0,0,0.2),
inset 0px 3px 6px rgbA(255,255,255,0.1);
}
.overlay h1 {
padding: 14px;
padding-bottom: 0;
color: #FFF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment