default.css 33 KB

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