Skip to content

Instantly share code, notes, and snippets.

@savetheclocktower
Created July 22, 2011 20:52
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 savetheclocktower/1100401 to your computer and use it in GitHub Desktop.
Save savetheclocktower/1100401 to your computer and use it in GitHub Desktop.
Upscaled Mono.growlStyle
/* Mono by Christopher Lobay is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. */
body, html {
text-rendering: optimizeLegibility;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
body:hover {
-webkit-transition: all 0.3s ease;
opacity: 1 !important;
}
@-webkit-keyframes notification-wrapper {
0% { opacity: 0; -webkit-transform: translate3d( 80px, 0, 0 ); }
100% { opacity: 1; -webkit-transform: translate3d( 0, 0, 0 ); }
}
@-webkit-keyframes other {
0% { -webkit-transform: translate3d( 40px, 0, 0 ); }
100% { -webkit-transform: translate3d( 0, 0, 0 ); }
}
@-webkit-keyframes icon {
0% { opacity: 0; -webkit-transform: translate3d( 0, 10px, 0 ); }
100% { opacity: 1; -webkit-transform: translate3d( 0, 0, 0 ); }
}
.wrapper {
width: 450px;
overflow: hidden;
position: absolute;
top: 1px;
left: 22px;
}
.notification {
-webkit-transition: all 0.5s ease;
-webkit-animation: notification-wrapper 0.7s ease;
-webkit-box-sizing: border-box;
border-radius: 7px;
background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(0,0,0,.95)), to(rgba(0,0,0,0.9)));
position: relative;
float: left;
width: 450px;
}
.border {
border-radius: 6px;
-webkit-box-shadow: inset 0px 1px 0px rgba(255,255,255,0.4);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.20)), to(rgba(255,255,255,0)));
margin: 1px;
padding: 15px 13px 15px 97px;
-webkit-box-sizing: border-box;
min-height: 78px;
clear: both;
overflow: hidden;
}
.divider {
position: absolute;
top: 15px;
left: 1px;
bottom: 15px;
width: 81px;
border-right: 1px solid rgba(255,255,255,0.1);
-webkit-box-shadow: inset -1px 0px 0px rgba(0,0,0,0.6);
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), color-stop(50%, rgba(0,0,0,1)), to(rgba(0,0,0,0)));
-webkit-animation: other 0.4s ease;
}
img {
position: absolute;
display: block;
height: 51px;
width: 51px;
top: 15px;
left: 15px;
border-radius: 4px;
-webkit-animation: icon 0.8s ease;
}
h1,p {
color: #FFF;
line-height: 22px;
margin: 0; padding: 0;
clear: both;
overflow: hidden;
text-shadow: 0px -1px 1px rgba(0,0,0,0.8);
-webkit-font-smoothing: subpixel-antialiased;
}
h1 {
-webkit-animation: other 0.6s ease;
font-size: 15pt;
margin: 0 0 3px 0;
text-shadow: 0px -1px 1px rgba(0,0,0,0.8);
overflow: visible;
}
p {
-webkit-animation: other 0.8s ease;
font-family: Lucida Grande, sans-serif;
font-size: 12pt;
color: #999;
overflow: visible;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment