global.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. body {
  7. margin: 0;
  8. }
  9. h1, h2, h3, h4, h5, h6 {
  10. color: #009688;
  11. }
  12. .homeContainer {
  13. width: 100%;
  14. margin: 0;
  15. }
  16. .functionNavigationContainer {
  17. width: 270px;
  18. overflow: auto;
  19. background-color: #FAFAFA;
  20. border: 1px solid #D9D9D9;
  21. float: left;
  22. padding: 0;
  23. }
  24. .functionContentContainer {
  25. width: 100%;
  26. padding: 0;
  27. }
  28. .functionHeader {
  29. width: 100%;
  30. }
  31. .functionHeader > .headerIcon {
  32. width: 24px;
  33. height: 24px;
  34. }
  35. .functionHeader > .controlIcon {
  36. width: 16px;
  37. height: 16px;
  38. float: right;
  39. cursor: pointer;
  40. margin: 0 6px;
  41. }
  42. .functionHeader > .headerText {
  43. line-height: 28px;
  44. vertical-align: top;
  45. margin-left: 16px;
  46. }
  47. .popupButtonPanel {
  48. width: 100%;
  49. background-color: #e5e5e5;
  50. border-top: 1px solid #009688;
  51. overflow: auto;
  52. }
  53. .devExPopupPanelButton {
  54. margin: 6px 8px 6px 0;
  55. }
  56. .globalFooter {
  57. overflow: auto;
  58. min-height: 48px;
  59. position: fixed;
  60. bottom: 0;
  61. left: 0;
  62. width: 100%;
  63. color: white;
  64. line-height: 46px;
  65. -webkit-box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
  66. -moz-box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
  67. box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
  68. border-top: 1px solid #009688;
  69. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c0c0c0+0,c0c0c0+100&0.8+0,0.8+100 */
  70. background: url(Images/footer-1-full.jpg) #F7F7F7;
  71. background-size: cover;
  72. }
  73. .globalFooter .seperator {
  74. width: 1px;
  75. background: white;
  76. height: 30px;
  77. float: left;
  78. margin: 8px 16px;
  79. }
  80. .globalFooter .innerFooter {
  81. padding: 1px 20px;
  82. width: auto;
  83. }
  84. .innerFooter .linkContainer {
  85. float: left;
  86. }
  87. .innerFooter .userInfo {
  88. margin-top: 1px;
  89. float: left;
  90. }
  91. .innerFooter .versionInfo {
  92. margin-top: 1px;
  93. float: right;
  94. font-weight: bold;
  95. }
  96. .popupPanel {
  97. margin-top: 6px;
  98. margin-left: 18px;
  99. line-height: 26px;
  100. height: 32px;
  101. }
  102. .popupPanelItem {
  103. overflow: auto;
  104. width: auto;
  105. background: white;
  106. border-radius: 6px 6px 6px 6px;
  107. line-height: 18px;
  108. cursor: pointer;
  109. color: #808080;
  110. font-size: 13px;
  111. padding-right: 12px;
  112. display: inline-block;
  113. margin: 0 4px;
  114. -moz-border-radius: 6px 6px 6px 6px;
  115. -webkit-border-radius: 6px 6px 6px 6px;
  116. -webkit-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.6);
  117. -moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.6);
  118. box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.6);
  119. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0.5+100;White+to+Transparent */
  120. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 100%); /* FF3.6-15 */
  121. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
  122. background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  123. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#80ffffff',GradientType=0 ); /* IE6-9 */
  124. }
  125. .popupPanelItem > img:first-of-type {
  126. width: 20px;
  127. height: 20px;
  128. margin: 0 8px 0 12px;
  129. }
  130. .popupPanelItem > img:last-of-type {
  131. width: 16px;
  132. height: 16px;
  133. margin: 6px 0 4px 8px;
  134. }
  135. .popupPanelItem > span {
  136. vertical-align: top;
  137. line-height: 30px;
  138. }