initloading.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* --------------------------------------------------------
  2. Copyright (c) 2005-2008 FeyaSoft Inc. All Rights Reserved.
  3. Description:
  4. This is main CSS file for myActivity application
  5. Author:
  6. Fenqiang Zhuang
  7. -------------------------------------------------------- */
  8. .loading-indicator {
  9. font-size:11px;
  10. background-repeat: no-repeat;
  11. background-position:top left;
  12. padding-left:20px;
  13. height:18px;
  14. text-align:left;
  15. }
  16. #loading-mask{
  17. position:absolute;
  18. left:0;
  19. top:0;
  20. width:100%;
  21. height:100%;
  22. z-index:20000;
  23. background-color:white;
  24. }
  25. #loading{
  26. position:absolute;
  27. left:45%;
  28. top:40%;
  29. padding:2px;
  30. z-index:20001;
  31. height:auto;
  32. background: white;
  33. }
  34. #loading img {
  35. margin-bottom:5px;
  36. }
  37. #loading .loading-indicator{
  38. color:#555;
  39. font:bold 13px helvetica,arial,tahoma,sans-serif;
  40. padding:10px;
  41. margin:0;
  42. text-align:center;
  43. height:auto;
  44. }
  45. #loading-msg {
  46. background: transparent url(../images/heartbeat.gif) no-repeat right bottom;
  47. height: 25px;
  48. }