default.css 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. /*****************************************************
  2. * MAIN - CHAMILO CSS
  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 {
  8. text-decoration: none;
  9. color :#6E6E6E;
  10. }
  11. a:visited {
  12. text-decoration: none;
  13. }
  14. a:hover {
  15. text-decoration: none;
  16. color: #FD6600;
  17. }
  18. a:active {
  19. text-decoration: none;
  20. color : #3757f7;
  21. }
  22. .navbar .nav > li > a {
  23. float: none;
  24. line-height: 24px;
  25. padding-bottom: 13px;
  26. padding-right: 10px;
  27. padding-top: 13px;
  28. color: #FFFFFF;
  29. }
  30. .subnav .navbar-inner {
  31. background-color: #3C678B; /* Old browsers */
  32. background-repeat: repeat-x; /* Repeat the gradient */
  33. background-image: none;
  34. border: none;
  35. }
  36. .subnav .nav > li > a {
  37. border:none;
  38. color: white;
  39. font-weight: normal;
  40. font-size: 13px;
  41. }
  42. .subnav .nav > #current > a,
  43. .subnav .nav > #current > a:hover {
  44. color: #fff;
  45. background-color: #0f466a;
  46. border-right-color: #0f466a;
  47. }
  48. .subnav li a {
  49. color:#fff;
  50. }
  51. /* Green hover */
  52. .subnav .navbar-inner li a:hover {
  53. background: none repeat scroll 0 0 #6D8DA8;
  54. color: #fff;
  55. }
  56. .well .nav-list > li > a:hover {
  57. text-decoration: none;
  58. background: none;
  59. }
  60. .sidebar-nav h4{
  61. color: #037FB2;
  62. padding-bottom: 3px;
  63. padding-left: 15px;
  64. padding-right: 15px;
  65. padding-top: 3px;
  66. }
  67. /*****************************************************
  68. * STYLE THEME CHAMILO *
  69. *****************************************************/
  70. .welcome-mascot{
  71. background: url(images/chamilo-welcome.png) no-repeat right 0;
  72. padding-right: 200px;
  73. padding-bottom: 2em;
  74. padding-top: 2em;
  75. }
  76. .nav-list > li > a {
  77. font-size: 14px;
  78. padding-bottom: 6px;
  79. /* padding-left: 15px;
  80. padding-right: 15px;*/
  81. padding-top: 6px;
  82. }
  83. .controls .btn{
  84. background: #ff9900; /* Old browsers */
  85. background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
  86. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
  87. background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
  88. background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
  89. background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
  90. background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
  91. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
  92. border:1px solid rgba(0, 0, 0, 0.15);
  93. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
  94. color: #FFFFFF;
  95. padding: 5px 25px;
  96. }
  97. .controls .btn:hover{
  98. background: #ff7b00; /* Old browsers */
  99. background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
  100. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
  101. background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
  102. background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
  103. background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
  104. background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
  105. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
  106. color: #FFFFFF;
  107. }
  108. .btn{
  109. background: #ffffff; /* Old browsers */
  110. background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
  111. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
  112. background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
  113. background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
  114. background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
  115. background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
  116. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
  117. border-radius: 4px;
  118. border:1px solid rgba(0, 0, 0, 0.15);
  119. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
  120. padding: 6px 25px;
  121. }
  122. .btn:hover{
  123. background: #f7f7f7; /* Old browsers */
  124. background: -moz-linear-gradient(top, #f7f7f7 0%, #e5e5e5 100%); /* FF3.6+ */
  125. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
  126. background: -webkit-linear-gradient(top, #f7f7f7 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
  127. background: -o-linear-gradient(top, #f7f7f7 0%,#e5e5e5 100%); /* Opera 11.10+ */
  128. background: -ms-linear-gradient(top, #f7f7f7 0%,#e5e5e5 100%); /* IE10+ */
  129. background: linear-gradient(to bottom, #f7f7f7 0%,#e5e5e5 100%); /* W3C */
  130. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
  131. text-decoration: none;
  132. }
  133. .btn-primary{
  134. background: #ff7b00; /* Old browsers */
  135. background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
  136. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
  137. background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
  138. background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
  139. background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
  140. background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
  141. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
  142. border-radius: 4px;
  143. border:1px solid rgba(0, 0, 0, 0.15);
  144. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
  145. }
  146. .btn-primary:hover{
  147. background: #0167ba; /* Old browsers */
  148. background: -moz-linear-gradient(top, #0167ba 0%, #0f466a 100%); /* FF3.6+ */
  149. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0167ba), color-stop(100%,#0f466a)); /* Chrome,Safari4+ */
  150. background: -webkit-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* Chrome10+,Safari5.1+ */
  151. background: -o-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* Opera 11.10+ */
  152. background: -ms-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* IE10+ */
  153. background: linear-gradient(to bottom, #0167ba 0%,#0f466a 100%); /* W3C */
  154. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0167ba', endColorstr='#0f466a',GradientType=0 ); /* IE6-9 */
  155. color: #FFFFFF;
  156. }
  157. a.thumbnail:hover{
  158. border: 1px solid #e5e5e5;
  159. background: transparent;
  160. }
  161. .logout img{
  162. padding-top: 7px;
  163. }
  164. .form-actions {
  165. background:transparent;
  166. }
  167. .breadcrumb {
  168. margin-bottom: 0;
  169. background-color: #b1d6ec;
  170. background-image: none;
  171. padding-top: 5px;
  172. padding-bottom: 5px;
  173. border: 1px solid #B1D6EC;
  174. box-shadow: none;
  175. font-size: 12px;
  176. }
  177. .breadcrumb a{
  178. color: #333;
  179. font-size: 12px;
  180. line-height: 30px;
  181. text-transform: none;
  182. }
  183. .breadcrumb li{
  184. text-shadow: none;
  185. }
  186. .breadcrumb a.btn-mini{
  187. line-height: 17px;
  188. text-transform: none;
  189. }
  190. .breadcrumb a.btn-success {
  191. background-color: #FD6600;
  192. background-image: none;
  193. border: 1px solid #FD6600;
  194. color: #FFFFFF;
  195. }
  196. /* styles for the star rater */
  197. .star-rating{
  198. list-style:none;
  199. margin: 0px;
  200. padding:0px;
  201. width: 125px;
  202. height: 25px;
  203. position: relative;
  204. overflow:hidden;
  205. background: url(images/start-level.png) top left repeat-x;
  206. }
  207. .star-rating li{
  208. padding:0px;
  209. margin:0px;
  210. width:25px;
  211. height:25px;
  212. float: left;
  213. }
  214. .star-rating li a{
  215. display:block;
  216. width:25px;
  217. height: 25px;
  218. line-height:25px;
  219. text-decoration: none;
  220. text-indent: -9000px;
  221. z-index: 20;
  222. position: absolute;
  223. padding: 0px;
  224. overflow:hidden;
  225. }
  226. .star-rating li a:hover{
  227. background: url(images/start-level.png) left bottom;
  228. z-index: 2;
  229. left: 0px;
  230. border:none;
  231. }
  232. .star-rating a.one-star{
  233. left: 0px;
  234. }
  235. .star-rating a.one-star:hover{
  236. width:25px;
  237. }
  238. .star-rating a.two-stars{
  239. left:25px;
  240. }
  241. .star-rating a.two-stars:hover{
  242. width: 50px;
  243. }
  244. .star-rating a.three-stars{
  245. left: 50px;
  246. }
  247. .star-rating a.three-stars:hover{
  248. width: 75px;
  249. }
  250. .star-rating a.four-stars{
  251. left: 75px;
  252. }
  253. .star-rating a.four-stars:hover{
  254. width: 100px;
  255. }
  256. .star-rating a.five-stars{
  257. left: 100px;
  258. }
  259. .star-rating a.five-stars:hover{
  260. width: 125px;
  261. }
  262. .star-rating li.current-rating{
  263. background: url(images/start-level.png) left center;
  264. position: absolute;
  265. height: 25px;
  266. display: block;
  267. text-indent: -9000px;
  268. z-index: 1;
  269. }
  270. /*ICON INBOX*/
  271. .home-icon{
  272. background:url(images/icon-chamilo.png) no-repeat 0 0;
  273. background-size: 24px auto;
  274. padding-left: 30px;
  275. }
  276. .home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
  277. .browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
  278. opacity: 0.8;
  279. }
  280. .messages-icon{
  281. background:url(images/icon-chamilo.png) no-repeat 0 -29px;
  282. background-size: 24px auto;
  283. padding-left: 30px;
  284. }
  285. .invitations-icon{
  286. background:url(images/icon-chamilo.png) no-repeat 0 -61px;
  287. background-size: 24px auto;
  288. padding-left: 30px;
  289. }
  290. .shared-profile-icon{
  291. background:url(images/icon-chamilo.png) no-repeat 0 -96px;
  292. background-size: 24px auto;
  293. padding-left: 30px;
  294. }
  295. .friends-icon{
  296. background:url(images/icon-chamilo.png) no-repeat 0 -130px;
  297. background-size: 24px auto;
  298. padding-left: 30px;
  299. }
  300. .browse-groups-icon{
  301. background:url(images/icon-chamilo.png) no-repeat 0 -163px;
  302. background-size: 24px auto;
  303. padding-left: 30px;
  304. }
  305. .search-icon {
  306. background:url(images/icon-chamilo.png) no-repeat 0 -198px;
  307. background-size: 24px auto;
  308. padding-left: 30px;
  309. }
  310. .myfiles-icon {
  311. background:url(images/icon-chamilo.png) no-repeat 0 -229px;
  312. background-size: 24px auto;
  313. padding-left: 30px;
  314. }
  315. /* END ICON INBOX */
  316. .nav-list > .active > a, .nav-list > .active > a:hover {
  317. color: #333333;
  318. background: none;
  319. text-shadow:none;
  320. }
  321. .social-menu .well .thumbnail{
  322. border: none;
  323. border-radius: none;
  324. box-shadow: none;
  325. }
  326. .invitation_confirm .thumbnail{
  327. border: 1px solid rgba(96, 165, 209, 0.1);
  328. -webkit-border-radius: 10px;
  329. -moz-border-radius: 10px;
  330. border-radius: 10px;
  331. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  332. display: block;
  333. line-height: 1;
  334. padding: 4px;
  335. background-color: #EEF5FA;
  336. }
  337. .invitation_confirm a.thumbnail:hover{
  338. border-color: rgba(96, 165, 209, 0.1);
  339. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  340. background-color: #FFFFFF;
  341. }
  342. .social-menu .well .thumbnail img{
  343. -webkit-border-radius: 10px;
  344. -moz-border-radius: 10px;
  345. border-radius: 10px;
  346. border: 2px solid #FFFFFF;
  347. }
  348. .page-section{
  349. background: #f4f5f6; /* Old browsers */
  350. background: -moz-linear-gradient(top, #f4f5f6 0%, #ffffff 25%, #ffffff 100%); /* FF3.6+ */
  351. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f5f6), color-stop(25%,#ffffff), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
  352. background: -webkit-linear-gradient(top, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
  353. background: -o-linear-gradient(top, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* Opera 11.10+ */
  354. background: -ms-linear-gradient(top, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* IE10+ */
  355. background: linear-gradient(to bottom, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* W3C */
  356. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f5f6', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
  357. }
  358. /*CSS SLIDER ANUNCIOS*/
  359. .pagerslide h2{
  360. font-size: 18px;
  361. background-color: #24547D;
  362. color: #FFFFFF;
  363. padding-left: 15px;
  364. font-weight: normal;
  365. }
  366. #top_main_content #announcements .page-header{
  367. display: none;
  368. line-height: 1;
  369. }
  370. #top_main_content #announcements .span6 {
  371. width: 800px;
  372. }
  373. /*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
  374. .page-course-intro{
  375. padding: 2em;
  376. border: 1px solid #DDDDDD;
  377. -webkit-border-radius: 10px;
  378. -moz-border-radius: 10px;
  379. border-radius: 10px;
  380. margin-bottom: 2em;
  381. }
  382. .page-course-intro ul{
  383. list-style-image:url(images/vineta.png);
  384. padding-top: 10px;
  385. }
  386. .page-course-intro a{
  387. color: #FD6600;
  388. }
  389. .page-course-intro a:hover{
  390. color: #FD6600;
  391. text-decoration: underline;
  392. }
  393. /*FIN DE INTRODUCCION DEL CURSO*/
  394. .fc-header-title h2{
  395. color: #0191C7;
  396. }
  397. .fc-first .fc-widget-header{
  398. font-size: 14px;
  399. font-weight: normal;
  400. padding-top: 5px;
  401. padding-bottom: 5px;
  402. }
  403. .well {
  404. background-color: #F3F3F4;
  405. border: 1px solid rgba(96,165,209, 0.1);
  406. border-radius: 8px;
  407. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
  408. margin-bottom: 20px;
  409. min-height: 20px;
  410. padding: 20px 10px;
  411. }
  412. .sidebar-nav img{
  413. -webkit-border-radius: 10px;
  414. -moz-border-radius: 10px;
  415. border-radius: 10px;
  416. }
  417. #homepage .row .span9 h2{
  418. font-size: 26px;
  419. font-weight: bold;
  420. color: #24547D;
  421. padding-bottom: 8px;
  422. }
  423. #homepage .row .span9 p,#homepage .row .span9 ol {
  424. color: #6E6E6E;
  425. }
  426. #homepage .row .span9 a{
  427. color: #0F466A;
  428. }
  429. #homepage .row .span9 a:hover{
  430. color: #FD6600;
  431. }
  432. .page-header h2{
  433. color: #24547D;
  434. font-weight: normal;
  435. font-size: 20px;
  436. padding-left: 10px;
  437. }
  438. #course_tools .course-title-tools h3 {
  439. margin-top: 10px;
  440. color: #0191C7;
  441. font-weight: normal;
  442. }
  443. .page-header {
  444. border-bottom-color: #0191C7;
  445. border-bottom-style: solid;
  446. border-bottom-width: 1px;
  447. box-shadow: none;
  448. padding-bottom: 0px;
  449. }
  450. .well_border{
  451. background-color: #F3F3F4;
  452. border: 1px solid rgba(96,165,209, 0.1);
  453. border-radius: 8px;
  454. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
  455. margin-bottom: 20px;
  456. min-height: 20px;
  457. padding: 19px;
  458. }
  459. .well_border .row .span2 {
  460. width: 98px;
  461. }
  462. .well_border .row .span2 .thumbnail {
  463. background-color: #FFFFFF;
  464. background-image: none;
  465. }
  466. #hot_courses .row .span9 .well_border .row .span6{
  467. width: auto;
  468. }
  469. .categories-course-description h3{
  470. color: #0F466A;
  471. font-weight: normal;
  472. }
  473. #course_tools .content a {
  474. font-size: 12px;
  475. font-weight: normal;
  476. }
  477. #main_content .course-box .row .span7{
  478. width: 730px;
  479. }
  480. #main_content .course-box .row .span7 .row .span6 {
  481. width: 615px;
  482. }
  483. #main_content .course-box .row .span7 .row .span6 h3{
  484. font-size: 20px;
  485. }
  486. #course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
  487. font-weight: normal;
  488. }
  489. /*****************************************************
  490. * FOOTER STYLES *
  491. *****************************************************/
  492. footer {
  493. height: 10em;
  494. background-color: #163650;
  495. background-image: none;
  496. background-repeat:repeat-x;
  497. color:#ffffff;
  498. border-top: none;
  499. }
  500. footer .container .row {
  501. padding-top: 5px;
  502. }
  503. footer a:link, footer a:visited {
  504. color: #F1D40D;
  505. }
  506. /*****************************************************
  507. * DISPLAY MESSAGES *
  508. *****************************************************/
  509. /*****************************************************
  510. * CSS CHAT *
  511. *****************************************************/
  512. .chatboxmain {
  513. bottom: 0;
  514. display: block;
  515. position: fixed;
  516. right: 20px;
  517. width: 225px;
  518. z-index: 9000;
  519. }
  520. .chatboxheadmain {
  521. padding:7px 7px 7px 0px;
  522. color: #ffffff;
  523. border-right:1px solid #222;
  524. border-left:1px solid #222;
  525. background-color: #222;
  526. background-repeat: repeat-x;
  527. background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
  528. background-image: -moz-linear-gradient(top, #333333, #222222);
  529. background-image: -ms-linear-gradient(top, #333333, #222222);
  530. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
  531. background-image: -webkit-linear-gradient(top, #333333, #222222);
  532. background-image: -o-linear-gradient(top, #333333, #222222);
  533. background-image: linear-gradient(top, #333333, #222222);
  534. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  535. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  536. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  537. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  538. }
  539. #chatboxtitlemain {
  540. cursor: pointer;
  541. float: left;
  542. font-size: 12px;
  543. font-weight: normal;
  544. width: 160px;
  545. }
  546. /*****************************************************
  547. * CSS CHAT END *
  548. *****************************************************/
  549. .normal-message {
  550. background-color: #D9EDF7;
  551. color: #3A87AD;
  552. padding: 15px;
  553. margin-bottom: 15px;
  554. border-top: 1px solid #BCE8F1;
  555. border-left: 1px solid #BCE8F1;
  556. border-right: 1px solid #BCE8F1;
  557. border-bottom: 3px solid #BCE8F1;
  558. border-radius: 10px;
  559. }
  560. .warning-message {
  561. background-color: #FCF8E3;
  562. color: #C09853;
  563. padding: 10px;
  564. margin-bottom: 15px;
  565. border-top: 1px solid #FBEED5;
  566. border-left: 1px solid #FBEED5;
  567. border-right: 1px solid #FBEED5;
  568. border-bottom: 3px solid #FBEED5;
  569. border-radius: 10px;
  570. }
  571. .confirmation-message {
  572. background-color: #DFF0D8;
  573. color: #468847;
  574. padding: 10px;
  575. margin-bottom: 15px;
  576. border-top: 1px solid #D6E9C6;
  577. border-left: 1px solid #D6E9C6;
  578. border-right: 1px solid #D6E9C6;
  579. border-bottom: 3px solid #D6E9C6;
  580. border-radius: 10px;
  581. }
  582. .error-message {
  583. background-color: #F2DEDE;
  584. color: #B94A48;
  585. padding: 10px;
  586. margin-bottom: 15px;
  587. border-top: 1px solid #EED3D7;
  588. border-left: 1px solid #EED3D7;
  589. border-right: 1px solid #EED3D7;
  590. border-bottom: 3px solid #EED3D7;
  591. border-radius: 10px;
  592. }
  593. .error-message strong{
  594. font-weight: normal;
  595. }
  596. .social-menu-title {
  597. background-color:#00AAE3;
  598. }
  599. #social-content-online {
  600. background-color:#00AAE3;
  601. }
  602. .admin_section li {
  603. background-image:url(images/bullet.gif);
  604. }
  605. .system_announcements {
  606. background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
  607. }
  608. .topa {
  609. background:transparent url('images/logoa4.gif') no-repeat;
  610. }
  611. .topb {
  612. background:transparent url('images/logob4.gif') no-repeat;
  613. }
  614. #bottomhellomindfactory {
  615. background:transparent url('images/textologo.jpg') no-repeat;
  616. }
  617. /*including "login" image*/
  618. button.login {
  619. background-image:url(images/bg-button.gif);
  620. }
  621. button.login:hover {
  622. }
  623. /*including "save" image*/
  624. button.save {
  625. background:url(images/accept.png) 0 center no-repeat #F0F0F0;
  626. }
  627. button.save:hover {
  628. background:url(images/accept.png) 0 center no-repeat #ffffff;
  629. }
  630. /*including "add" image*/
  631. .controls .btn.add {
  632. background:url(images/add.png) 0 center no-repeat #FD6600;
  633. padding-left: 36px;
  634. }
  635. .controls .btn.add:hover {
  636. background:url(images/add.png) 0 center no-repeat #FF9900;
  637. padding-left: 36px;
  638. }
  639. /*including "cancel" image*/
  640. button.cancel {
  641. background-image:url(images/button_delete.gif);
  642. }
  643. /*including "search" image*/
  644. button.search {
  645. background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
  646. }
  647. button.search:hover {
  648. background:url(images/buttom.png) 0 center no-repeat #ffffff;
  649. }
  650. /*including "plus" image*/
  651. button.plus {
  652. background-image:url(images/button_plus.gif);
  653. }
  654. /*including "minus" image*/
  655. button.minus {
  656. background-image:url(images/button_minus.gif);
  657. }
  658. /*including "next" image*/
  659. button.next {
  660. background:url(images/next.png) 0 center no-repeat #F0F0F0;
  661. }
  662. button.next:hover {
  663. background:url(images/next.png) 0 center no-repeat #ffffff;
  664. }
  665. /*including "back" image*/
  666. button.back {
  667. background:url(images/previus.png) 0 center no-repeat #F0F0F0;
  668. }
  669. button.back:hover {
  670. background:url(images/previus.png) 0 center no-repeat #ffffff;
  671. }
  672. /*including "refresh" image*/
  673. button.refresh {
  674. background-image:url(images/button_refresh.gif);
  675. }
  676. /*including "upload" image*/
  677. button.upload {
  678. background-image:url(images/button_upload.gif);
  679. }
  680. button.arrowr, input.arrowr {
  681. background-image:url(images/2rightarrow.gif);
  682. }
  683. button.arrowl, input.arrowl {
  684. background-image:url(images/2leftarrow.gif);
  685. }
  686. .refresh {
  687. background-image:url(images/refresh.png);
  688. }
  689. .portal {
  690. background-image:url(images/portal.png);
  691. }
  692. /*+++++++++++++++++++++++++++++++++++++++++++
  693. INSTALL CHAMILO
  694. +++++++++++++++++++++++++++++++++++++++++++*/
  695. .install-mascot{
  696. background: url(images/install.png) no-repeat center 0;
  697. padding-top: 20em;
  698. }
  699. .install-chamilo .navbar{
  700. display: none;
  701. }
  702. .install-chamilo footer{
  703. display: none;
  704. }
  705. .install-chamilo .page-header {
  706. border-bottom: 2px solid #FD6600;
  707. }
  708. .install-chamilo .page-header h1 {
  709. line-height: 1;
  710. color: #FD6600;
  711. }
  712. .install-chamilo header{
  713. margin-top: 0;
  714. margin-bottom: 0;
  715. }
  716. .install-chamilo .RequirementHeading h2{
  717. color: #2E75A3;
  718. }
  719. .install-chamilo .page-header h2 {
  720. color: #FD6600;
  721. font-size: 20px;
  722. font-weight: bold;
  723. padding-left: 0;
  724. width: 250px;
  725. }
  726. .well-install{
  727. background: #ffffff; /* Old browsers */
  728. background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
  729. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
  730. background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
  731. background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
  732. background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
  733. background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
  734. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
  735. padding: 3em;
  736. border: 1px solid #E1E1E0;
  737. -webkit-border-radius: 10px;
  738. -moz-border-radius: 10px;
  739. border-radius: 10px;
  740. margin-top: 3em;
  741. }
  742. button.next.disabled {
  743. cursor: default;
  744. opacity: 0.65;
  745. }
  746. button.next.disabled:hover {
  747. cursor: default;
  748. opacity: 0.65;
  749. background-image: none;
  750. }
  751. .install-chamilo .btn-success.btn-install {
  752. float: right;
  753. background: #ff9900; /* Old browsers */
  754. background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
  755. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
  756. background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
  757. background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
  758. background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
  759. background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
  760. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
  761. border:1px solid rgba(0, 0, 0, 0.15);
  762. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
  763. color: #FFFFFF;
  764. padding: 5px 25px;
  765. }
  766. .install-chamilo .btn-success.btn-install:hover {
  767. background: #ff7b00; /* Old browsers */
  768. background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
  769. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
  770. background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
  771. background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
  772. background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
  773. background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
  774. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
  775. color: #FFFFFF;
  776. }
  777. /*+++++++++++++++++++++++++++++++++++++++++++
  778. END INSTALL CHAMILO
  779. +++++++++++++++++++++++++++++++++++++++++++*/
  780. .bottom_actions_fixed{
  781. background: #163650; /* Old browsers */
  782. border: 1px solid #E1E1E0;
  783. }
  784. .new_actions-fixed {
  785. top: 50px;
  786. }
  787. /*CSS ICON BLOCK USER*/
  788. .inbox-social{
  789. background: url("images/icon-chamilo.png") no-repeat 0 -415px;
  790. padding-left: 40px;
  791. }
  792. .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
  793. .order-course:hover,.history-course:hover, .list-course:hover{
  794. opacity: 0.8;
  795. }
  796. .new-message-social{
  797. background: url("images/icon-chamilo.png") no-repeat 0 -370px;
  798. padding-left: 40px;
  799. }
  800. .invitations-social{
  801. background: url("images/icon-chamilo.png") no-repeat 0 -455px;
  802. padding-left: 40px;
  803. }
  804. .profile-social{
  805. background: url("images/icon-chamilo.png") no-repeat 0 -496px;
  806. padding-left: 40px;
  807. }
  808. .add-course{
  809. background: url("images/icon-chamilo.png") no-repeat 0 -327px;
  810. padding-left: 40px;
  811. }
  812. .order-course{
  813. background: url("images/icon-chamilo.png") no-repeat 0 -536px;
  814. padding-left: 40px;
  815. }
  816. .history-course{
  817. background: url("images/icon-chamilo.png") no-repeat 0 -576px;
  818. padding-left: 40px;
  819. }
  820. .list-course{
  821. background: url("images/icon-chamilo.png") no-repeat 0 -618px;
  822. padding-left: 40px;
  823. }
  824. .forum-btn{
  825. background: url("images/icon-chamilo.png") no-repeat 0 -666px;
  826. padding-left: 40px;
  827. }
  828. /*+++++++++++++++++++++++++++++++++
  829. RESPONSIVE CSS
  830. +++++++++++++++++++++++++++++++++*/
  831. .navbar .brand {
  832. float: left;
  833. font-size: 16px;
  834. font-weight: 200;
  835. line-height: 20px;
  836. padding-bottom: 12px;
  837. padding-top: 12px;
  838. color: #FFFFFF;
  839. }
  840. .navbar-inner{
  841. background: rgba(115, 115, 115, 0.90);
  842. }
  843. .navbar.subnav.subnav-fixed {
  844. display: none;
  845. visibility: hidden;
  846. }
  847. .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
  848. background-color: #FD6600;
  849. color: #FFFFFF;
  850. }
  851. .navbar-search {
  852. margin-bottom: 0;
  853. margin-top: 11px;
  854. position: relative;
  855. }
  856. .navbar-search .search-query {
  857. background:#FFFFFF;
  858. color: #666;
  859. border: 1px solid #ffffff;
  860. }
  861. .navbar .nav .active > a, .navbar .nav .active > a:hover {
  862. background:none;
  863. color: #FFFFFF;
  864. }
  865. @media (min-width: 481px) and (max-width: 800px) {
  866. .sidebar-nav h4 {
  867. color: #037FB2;
  868. font-size: 18px;
  869. padding-bottom: 10px;
  870. padding-left: 15px;
  871. padding-right: 15px;
  872. padding-top: 10px;
  873. }
  874. #profile_block .nav-list li, #course_block .nav-list li{
  875. padding-bottom: 5px;
  876. padding-top: 5px;
  877. }
  878. #top_main_content .menu-column #user_image_block{
  879. box-shadow: none;
  880. }
  881. }
  882. @media (max-width: 600px) {
  883. #main_content .course-box .row .span7 .row .span6 {
  884. float: left;
  885. /*width: 615px;*/
  886. padding-left: 10px;
  887. }
  888. #main_content .course-box .row .span7 .row .span6 h3 {
  889. font-size: 16px;
  890. /*width: 500px;*/
  891. }
  892. }
  893. @media (min-width: 801px){
  894. .nav-list > li > a {
  895. font-size: 13px;
  896. padding-bottom: 8px;
  897. padding-top: 8px;
  898. }
  899. /*CSS ICON BLOCK USER*/
  900. .inbox-social{
  901. background: url("images/icon-chamilo.png") no-repeat 0 -345px;
  902. padding-left: 30px;
  903. background-size: 25px auto;
  904. }
  905. .new-message-social{
  906. background: url("images/icon-chamilo.png") no-repeat 0 -307px;
  907. padding-left: 30px;
  908. background-size: 25px auto;
  909. }
  910. .invitations-social{
  911. background: url("images/icon-chamilo.png") no-repeat 0 -378px;
  912. padding-left: 30px;
  913. background-size: 25px auto;
  914. }
  915. .profile-social{
  916. background: url("images/icon-chamilo.png") no-repeat 0 -414px;
  917. padding-left: 30px;
  918. background-size: 25px auto;
  919. }
  920. .add-course{
  921. background: url("images/icon-chamilo.png") no-repeat 0 -274px;
  922. padding-left: 30px;
  923. background-size: 25px auto;
  924. }
  925. .order-course{
  926. background: url("images/icon-chamilo.png") no-repeat 0 -447px;
  927. padding-left: 30px;
  928. background-size: 25px auto;
  929. }
  930. .history-course{
  931. background: url("images/icon-chamilo.png") no-repeat 0 -481px;
  932. padding-left: 30px;
  933. background-size: 25px auto;
  934. }
  935. .list-course{
  936. background: url("images/icon-chamilo.png") no-repeat 0 -517px;
  937. padding-left: 30px;
  938. background-size: 25px auto;
  939. }
  940. .forum-btn {
  941. background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
  942. padding-left: 30px;
  943. }
  944. }
  945. @media (min-width: 321px) and (max-width: 480px){
  946. footer {
  947. height: 5em;
  948. }
  949. .welcome-mascot{
  950. background: none;
  951. padding-right: 0px;
  952. padding-bottom: 2em;
  953. padding-top: 2em;
  954. }
  955. #homepage .row .span9 h2 {
  956. color: #0191C7;
  957. font-size: 22px;
  958. font-weight: bold;
  959. padding-bottom: 8px;
  960. line-height: 25px;
  961. }
  962. #announcements{
  963. display: none;
  964. }
  965. }
  966. /*+++++++++++++++++++++++++++++++++
  967. END RESPONSIVE CSS
  968. +++++++++++++++++++++++++++++++++*/