global.css 3.5 KB

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