global.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. html {
  2. font: 14px "Roboto Regular", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
  3. background: url(Images/background-2-small.png) repeat #F7F7F7;
  4. padding: 0;
  5. }
  6. h1, h2, h3, h4, h5, h6 {
  7. color: #009688;
  8. }
  9. .globalFooter {
  10. overflow: auto;
  11. min-height: 36px;
  12. position: fixed;
  13. bottom: 0;
  14. left: 0;
  15. width: 100%;
  16. color: white;
  17. line-height: 34px;
  18. -webkit-box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
  19. -moz-box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
  20. box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
  21. border-top: 1px solid #009688;
  22. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c0c0c0+0,c0c0c0+100&0.8+0,0.8+100 */
  23. background: -moz-linear-gradient(top, rgba(192,192,192,0.5) 0%, rgba(192,192,192,0.5) 100%); /* FF3.6-15 */
  24. background: -webkit-linear-gradient(top, rgba(192,192,192,0.5) 0%,rgba(192,192,192,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
  25. background: linear-gradient(to bottom, rgba(192,192,192,0.5) 0%,rgba(192,192,192,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  26. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccc0c0c0', endColorstr='#ccc0c0c0',GradientType=0 ); /* IE6-9 */
  27. }
  28. .globalFooter .seperator {
  29. width: 1px;
  30. background: #009688;
  31. height: 16px;
  32. float: left;
  33. margin: 8px 16px;
  34. }
  35. .globalFooter .innerFooter {
  36. padding: 1px 20px;
  37. width: auto;
  38. }
  39. .innerFooter .logout {
  40. float: left;
  41. }
  42. .innerFooter .userInfo {
  43. float: left;
  44. }
  45. .innerFooter .versionInfo {
  46. float: right;
  47. }
  48. .devExAutoWidth {
  49. width: 100%;
  50. }
  51. .devExFullWidth {
  52. width: 100%;
  53. }
  54. .devExNearFullWidth {
  55. width: 80%;
  56. }
  57. .devExFontLarge {
  58. font-size: 21px;
  59. }
  60. .devExFloatLeft {
  61. float: left;
  62. }
  63. .devExCenter {
  64. margin: 0 auto;
  65. }