default.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*****************************************************
  2. * MAIN - CHAMILO CSS GREEN
  3. *****************************************************/
  4. /* Adding default style for the chamilo_X themes */
  5. @import url('../base_chamilo.css');
  6. /* the following for regular <a> elements */
  7. a:link {
  8. text-decoration: none;
  9. color :#01933e;
  10. }
  11. a:visited {
  12. text-decoration: none;
  13. color : #01933e;
  14. }
  15. a:hover {
  16. text-decoration: none;
  17. color: #f3840d;
  18. }
  19. a:active {
  20. text-decoration: none;
  21. color : #01933e;
  22. }
  23. .subnav-fixed {
  24. position: fixed;
  25. top: 0px;
  26. left: 0;
  27. right: 0;
  28. z-index: 1030;
  29. border-color: #d5d5d5;
  30. border-width: 0 0 1px; /* drop the border on the fixed edges */
  31. -webkit-border-radius: 0;
  32. -moz-border-radius: 0;
  33. border-radius: 0;
  34. }
  35. .subnav {
  36. background-color: #79AA0B; /* Old browsers */
  37. background-repeat: repeat-x; /* Repeat the gradient */
  38. background-image: -moz-linear-gradient(top, #9BD10A 0%, #79AA0B 100%); /* FF3.6+ */
  39. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9BD10A), color-stop(100%,#79AA0B)); /* Chrome,Safari4+ */
  40. background-image: -webkit-linear-gradient(top, #9BD10A 0%, #79AA0B 100%); /* Chrome 10+,Safari 5.1+ */
  41. background-image: -ms-linear-gradient(top, #9BD10A 0%,#79AA0B 100%); /* IE10+ */
  42. background-image: -o-linear-gradient(top, #9BD10A 0%,#79AA0B 100%); /* Opera 11.10+ */
  43. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9BD10A', endColorstr='#79AA0B',GradientType=0 ); /* IE6-9 */
  44. background-image: linear-gradient(top, #9BD10A 0%,#79AA0B 100%); /* W3C */
  45. border: 1px solid #9BD10A;
  46. }
  47. .subnav .nav > li > a {
  48. border-left: 1px solid #9BD10A;
  49. border-right: 1px solid #9BD10A;
  50. }
  51. .subnav .nav > #current > a,
  52. .subnav .nav > #current > a:hover {
  53. color: #fff;
  54. background-color: #9BD10A;
  55. border-right-color: #9BD10A;
  56. }
  57. #header3 li a {
  58. color:#fff;
  59. }
  60. /* Green hover */
  61. #header3 li a:hover {
  62. background: none repeat scroll 0 0 #9BD10A;
  63. color: #fff;
  64. }
  65. /*****************************************************
  66. * FOOTER STYLES *
  67. *****************************************************/
  68. footer {
  69. background-color: #79aa0b;
  70. background-image: url(images/bg-footer.gif);
  71. background-repeat:repeat-x;
  72. font-size: 12px;
  73. color:#ffffff;
  74. height: 9em;
  75. width: 100%;
  76. }
  77. /* Sticky footer*/
  78. .push {
  79. height: 9em; /* Very important */
  80. }
  81. /*****************************************************
  82. * DISPLAY MESSAGES *
  83. *****************************************************/
  84. .normal-message {
  85. color: #00407F;
  86. border: 1px solid #CDE6F5;
  87. background: url("images/background_message.png") repeat-x scroll 0 0 #EAF8FE;
  88. }
  89. .warning-message {
  90. border: 1px solid #FFB30F;
  91. color: #000;
  92. background: url("images/background_message.png") repeat-x scroll 0 0 #FFEFA7;
  93. }
  94. .confirmation-message {
  95. border: 1px solid #1F8323;
  96. color:#1F8323;
  97. background: url("images/background_message.png") repeat-x scroll 0 0 #CAF0C7;
  98. }
  99. .error-message {
  100. border: 1px solid #FF0000;
  101. color: #440000;
  102. background: url("images/background_message.png") repeat-x scroll 0 0 #FFD1D1;
  103. }
  104. /* New training */
  105. .bottom-link {
  106. background-image:url(images/button_back.jpg);
  107. }
  108. .social-menu-title {
  109. background-color:#85b80b;
  110. }
  111. #social-content-online {
  112. background-color:#85b80b;
  113. }
  114. .admin_section li {
  115. background-image:url(images/bullet.gif);
  116. }
  117. .system_announcements {
  118. background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
  119. }
  120. .topa {
  121. background:transparent url('images/logoa4.gif') no-repeat;
  122. }
  123. .topb {
  124. background:transparent url('images/logob4.gif') no-repeat;
  125. }
  126. #bottomhellomindfactory {
  127. background:transparent url('images/textologo.jpg') no-repeat;
  128. }
  129. #exercise_close_link {
  130. background: url(images/close.gif) no-repeat;
  131. }
  132. #exercise_close_link:hover {
  133. background: url(images/close_highlight.gif) no-repeat;
  134. }
  135. /*including "login" image*/
  136. button.login {
  137. background-image:url(images/bg-button.gif);
  138. }
  139. button.login:hover {
  140. }
  141. /*including "save" image*/
  142. button.save {
  143. background-image:url(images/button_accept.gif);
  144. }
  145. /*including "add" image*/
  146. button.add {
  147. background-image:url(images/button_add.gif);
  148. }
  149. /*including "cancel" image*/
  150. button.cancel {
  151. background-image:url(images/button_delete.gif);
  152. }
  153. /*including "search" image*/
  154. button.search {
  155. background-image:url(images/bg-button.gif);
  156. }
  157. /*including "plus" image*/
  158. button.plus {
  159. background-image:url(images/button_plus.gif);
  160. }
  161. /*including "minus" image*/
  162. button.minus {
  163. background-image:url(images/button_minus.gif);
  164. }
  165. /*including "next" image*/
  166. button.next {
  167. background-image:url(images/button_next.gif);
  168. }
  169. /*including "back" image*/
  170. button.back {
  171. background-image:url(images/button_back.gif);
  172. }
  173. /*including "refresh" image*/
  174. button.refresh {
  175. background-image:url(images/button_refresh.gif);
  176. }
  177. /*including "upload" image*/
  178. button.upload {
  179. background-image:url(images/button_upload.gif);
  180. }
  181. .fake_button_back {
  182. background-image:url(images/button_back.gif);
  183. }
  184. button.arrowr {
  185. background-image:url(images/2rightarrow.gif);
  186. }
  187. button.arrowl {
  188. background-image:url(images/2leftarrow.gif);
  189. }
  190. input.arrowr {
  191. background-image:url(images/2rightarrow.gif);
  192. }
  193. input.arrowl {
  194. background-image:url(images/2leftarrow.gif);
  195. }
  196. .refresh {
  197. background-image:url(images/refresh.png);
  198. }
  199. .portal {
  200. background-image:url(images/portal.png);
  201. }