Skip to content

Instantly share code, notes, and snippets.

@markward
Created November 28, 2012 14:26
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 markward/4161635 to your computer and use it in GitHub Desktop.
Save markward/4161635 to your computer and use it in GitHub Desktop.
Make Moodle Debugging Prettier
div.notifytiny{
position: fixed;
bottom: 15px;
right: 15px;
background: rgba(83, 1, 7, 0.8);
border-bottom: 1px solid #750B13;
box-shadow: 0px 0px 6px black;
color: white;
font-size: 1.4em;
font-weight: bold;
padding: 1em 1em 1em 2em;
border-radius: 10px;
z-index: 1000;
transform: scale(0.6);
-ms-transform: scale(0.6); /* IE 9 */
-webkit-transform: scale(0.6); /* Safari and Chrome */
-o-transform: scale(0.6); /* Opera */
-moz-transform: scale(0.6); /* Firefox */
-moz-transform-origin: bottom right; /*Firefox 4+*/
-webkit-transform-origin: bottom right; /*Safari 5+, Chrome 10+*/
-o-transform-origin: bottom right; /*Opera 11+*/
-ms-transform-origin: bottom right; /*Internet Exlorer 9+*/
transform-origin: bottom right;
transition: all 1s;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
div.notifytiny ul{
font-weight: normal;
font-size: .8em;
margin-top: 1em;
}
div.notifytiny:hover{
transform: scale(1);
-ms-transform: scale(1); /* IE 9 */
-webkit-transform: scale(1); /* Safari and Chrome */
-o-transform: scale(1); /* Opera */
-moz-transform: scale(1); /* Firefox */
transition: all 1s;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
div.notifytiny:active{
opacity:0;
z-index:90;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment