/ Published in: CSS
The stylesheet for the LoadingMessage object (http://snipplr.com/view/347/loadingmessage-for-ajax-requests/).
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#loading-message{ position: fixed; z-index: 100; top: 10px; left: 0; width: 100%; font: bold 1.8em "Lucida Grande", Helvetica, Arial, sans-serif; text-align: center; background-color: #000; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 3px 0; /*filter:alpha(opacity=70); opacity: 0.7; -moz-opacity:0.7;*/ } #loading-message #loading-image{ vertical-align: middle; margin-bottom: 4px; } #loading-message #loading-text{ color: #fff; margin: 0; /*filter:alpha(opacity=100); opacity: 1; -moz-opacity:1;*/ }