Created
November 28, 2012 14:26
-
-
Save markward/4161635 to your computer and use it in GitHub Desktop.
Make Moodle Debugging Prettier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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