default.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. /*****************************************************
  2. * MAIN - SPORT RED - BASED ON CHAMILO RED CSS
  3. *****************************************************/
  4. /* Adding default generic style for non chamilo_X themes */
  5. @import url('../base_chamilo.css');
  6. /**********************/
  7. /*** ADICIONAL CODE ***/
  8. /**********************/
  9. div.subnav ul li a span {
  10. font-size:13px;
  11. }
  12. div.subnav ul#logout {
  13. margin-right: -2px;
  14. }
  15. .subnav {
  16. border-bottom: 0px;
  17. }
  18. .subnav {
  19. background: none;
  20. }
  21. #current #tab_active {
  22. color: #EDDD00;
  23. }
  24. .bread {
  25. background:#222222;
  26. -moz-border-radius: 0 0 5px 5px;
  27. -webkit-border-radius: 0 0 5px 5px;
  28. border-radius: 0 0 5px 5px;
  29. }
  30. .bread li a {
  31. background: url(images/crumbs.png) no-repeat right center;
  32. }
  33. .userportal-course-item {
  34. background-color: #ededed;
  35. }
  36. #submain {
  37. -moz-border-radius:22px;
  38. -webkit-border-radius:22px;
  39. border-radius:22px;
  40. }
  41. ul.bread li a span {
  42. color:#CCC;
  43. }
  44. /*** medios ***/
  45. p#medios {
  46. border-bottom:1px solid #CCC;
  47. padding-bottom:10px;
  48. color:#999;
  49. width:85%;
  50. }
  51. ul.medios {
  52. padding:0;
  53. }
  54. ul.medios li a {
  55. border: 1px solid #999999;
  56. -webkit-border-radius: 4px 4px 4px 4px;
  57. -moz-border-radius: 4px 4px 4px 4px;
  58. border-radius: 4px 4px 4px 4px;
  59. color: #999;
  60. padding: 1px 4px 0;
  61. height: 16px;
  62. }
  63. ul.medios li a:hover {
  64. background:#DD0000;
  65. border: 1px solid #DD0000;
  66. color:#FFF;
  67. }
  68. ul.medios li {
  69. display:inline;
  70. font-size:11px;
  71. }
  72. .actions {
  73. margin: 10px;
  74. -moz-border-radius: 5px;
  75. }
  76. /* the following for regular <a> elements */
  77. a {
  78. text-decoration: none;
  79. color :#B50018;
  80. }
  81. a:visited {
  82. text-decoration: none;
  83. }
  84. a:hover {
  85. text-decoration: none;
  86. color: #f3840d;
  87. }
  88. a:active {
  89. text-decoration: none;
  90. color : #ff0000;
  91. }
  92. #header1 {
  93. /* background-image: url("images/bg-header1.gif");
  94. border-top: 5px solid #900217; */
  95. /* height: 47px; */
  96. margin-bottom: 43px;
  97. }
  98. .subnav {
  99. background-image:url(images/bg-header4.png);
  100. }
  101. #header4 {
  102. /*background-image:url(images/bg-header4.png);*/
  103. }
  104. .subnav li {
  105. background:transparent url(images/tab_left.png) no-repeat scroll left top;
  106. border:none;
  107. margin-right: 2px;
  108. }
  109. .subnav li a {
  110. background:transparent url(images/tab_right.png) no-repeat scroll right top;
  111. margin-left: 5px;
  112. border:none;
  113. color:#ffffff;
  114. }
  115. .subnav li#current {
  116. background:transparent url(images/tab_left-active.png) no-repeat scroll left top;
  117. height: 30px;
  118. }
  119. .subnav #current a {
  120. background:transparent url(images/tab_right-active.png) no-repeat scroll right top;
  121. }
  122. .maincontent {
  123. /*background:url(images/maincontent-bg.png) no-repeat 0% 0%;*/
  124. width:63%;
  125. }
  126. #menu {
  127. background:#FFF;
  128. padding-top:16px;
  129. }
  130. #formLogin label {
  131. color: #9E0000;
  132. font-family: helvetica;
  133. font-size: 15px;
  134. }
  135. /*****************************************************
  136. * FOOTER STYLES *
  137. *****************************************************/
  138. footer {
  139. background-color: #000;
  140. background-image: url(images/bg-footer.gif);
  141. background-repeat:repeat-x;
  142. font-size: 12px;
  143. color:#ffffff;
  144. height: 10em;
  145. overflow:hidden;
  146. width: 100%;
  147. }
  148. footer a {
  149. color:#FFC721;
  150. }
  151. /* Sticky footer*/
  152. .push {
  153. height: 9em; /* Very important */
  154. }
  155. #footer .copyright {
  156. float: right;
  157. padding-top:60px;
  158. margin-right:5%;
  159. }
  160. .footer_emails{
  161. float: left;
  162. padding-top:60px;
  163. margin-right:5%;
  164. }
  165. /*****************************************************
  166. * DISPLAY MESSAGES *
  167. *****************************************************/
  168. .normal-message {
  169. color: #00407F;
  170. border: 1px solid #CDE6F5;
  171. background: url("images/background_message.png") repeat-x scroll 0 0 #EAF8FE;
  172. }
  173. .warning-message {
  174. border: 1px solid #FFB30F;
  175. color: #000;
  176. background: url("images/background_message.png") repeat-x scroll 0 0 #FFEFA7;
  177. }
  178. .confirmation-message {
  179. border: 1px solid #1F8323;
  180. color:#1F8323;
  181. background: url("images/background_message.png") repeat-x scroll 0 0 #CAF0C7;
  182. }
  183. .error-message {
  184. border: 1px solid #FF0000;
  185. color: #440000;
  186. background: url("images/background_message.png") repeat-x scroll 0 0 #FFD1D1;
  187. }
  188. /* New training */
  189. .bottom-link {
  190. background-color:#fbc0c9;
  191. border-color: #D4E2F6;
  192. background-image:url(images/button_back.jpg);
  193. }
  194. .social-menu-title {
  195. background-color:#ff0000;
  196. }
  197. #social-content-online {
  198. background-color:#ff0000;
  199. }
  200. .admin_section li {
  201. background-image:url(images/bullet.gif);
  202. }
  203. .system_announcements {
  204. background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
  205. }
  206. .topa {
  207. background:transparent url('images/logoa4.gif') no-repeat;
  208. }
  209. .topb {
  210. background:transparent url('images/logob4.gif') no-repeat;
  211. }
  212. #bottomhellomindfactory {
  213. background:transparent url('images/textologo.jpg') no-repeat;
  214. }
  215. #exercise_close_link {
  216. background: url(images/close.gif) no-repeat;
  217. }
  218. #exercise_close_link:hover {
  219. background: url(images/close_highlight.gif) no-repeat;
  220. }
  221. /*including "login" image*/
  222. button.login {
  223. background:url(images/login-button.png) no-repeat 0 0;
  224. width: 114px;
  225. height:30px;
  226. -moz-border-radius:0;
  227. -webkit-border-radius:0;
  228. border-radius:0;
  229. border:none;
  230. -moz-box-shadow:none;
  231. -webkit-box-shadow:none;
  232. box-shadow:none;
  233. padding:0px 0px 0px 11px;
  234. text-align:left;
  235. text-transform:lowercase;
  236. text-shadow:1px 1px 0px #FFF;
  237. font-family:helvetica,sans-serif;
  238. color:#990000;
  239. margin:0px 0px 19px 0px!important;
  240. }
  241. button.login:hover {
  242. background:url(images/login-button.png) no-repeat 0 -31px;
  243. color:#333;
  244. }
  245. /*including "save" image*/
  246. button.save {
  247. background-image:url(images/button_accept.gif);
  248. }
  249. /*including "add" image*/
  250. button.add {
  251. background-image:url(images/button_add.gif);
  252. }
  253. /*including "cancel" image*/
  254. button.cancel {
  255. background-image:url(images/button_delete.gif);
  256. }
  257. /*including "search" image*/
  258. button.search {
  259. background-image:url(images/bg-button.gif);
  260. }
  261. /*including "plus" image*/
  262. button.plus {
  263. background-image:url(images/button_plus.gif);
  264. }
  265. /*including "minus" image*/
  266. button.minus {
  267. background-image:url(images/button_minus.gif);
  268. }
  269. /*including "next" image*/
  270. button.next {
  271. background-image:url(images/button_next.gif);
  272. }
  273. /*including "back" image*/
  274. button.back {
  275. background-image:url(images/button_back.gif);
  276. }
  277. /*including "refresh" image*/
  278. button.refresh {
  279. background-image:url(images/button_refresh.gif);
  280. }
  281. /*including "upload" image*/
  282. button.upload {
  283. background-image:url(images/button_upload.gif);
  284. }
  285. .fake_button_back {
  286. background-image:url(images/button_back.gif);
  287. }
  288. button.arrowr {
  289. background-image:url(images/2rightarrow.gif);
  290. }
  291. button.arrowl {
  292. background-image:url(images/2leftarrow.gif);
  293. }
  294. input.arrowr {
  295. background-image:url(images/2rightarrow.gif);
  296. }
  297. input.arrowl {
  298. background-image:url(images/2leftarrow.gif);
  299. }
  300. .refresh {
  301. background-image:url(images/refresh.png);
  302. }
  303. .portal {
  304. background-image:url(images/portal.png);
  305. }