default.css 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049
  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. /*including "login" image*/
  741. button.login {
  742. background-image:url(images/bg-button.gif);
  743. }
  744. button.login:hover {
  745. }
  746. /*including "save" image
  747. button.save {
  748. background-image:url(images/button_accept.gif);
  749. }
  750. /*including "add" image
  751. button.add {
  752. background-image:url(images/button_add.gif);
  753. }
  754. /*including "cancel" image
  755. button.cancel {
  756. background-image:url(images/button_delete.gif);
  757. }
  758. /*including "search" image
  759. button.search {
  760. background-image:url(images/bg-button.gif);
  761. }
  762. /*including "plus" image
  763. button.plus {
  764. background-image:url(images/button_plus.gif);
  765. }
  766. /*including "minus" image
  767. button.minus {
  768. background-image:url(images/button_minus.gif);
  769. }
  770. /*including "next" image
  771. button.next {
  772. background-image:url(images/button_next.gif) !important;
  773. }
  774. /*including "back" image
  775. button.back {
  776. background-image:url(images/button_back.gif);
  777. }
  778. /*including "refresh" image
  779. button.refresh {
  780. background-image:url(images/button_refresh.gif);
  781. }
  782. /*including "upload" image
  783. button.upload {
  784. background-image:url(images/button_upload.gif);
  785. }
  786. */
  787. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back {
  788. display: inline-block;
  789. padding: 3px 25px;
  790. margin-bottom: 0;
  791. font-size: 14px;
  792. font-weight: normal;
  793. line-height: 1.428571429;
  794. text-align: center;
  795. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
  796. cursor: pointer;
  797. color: #FFFFFF;
  798. background: #606e78; /* Old browsers */
  799. background: -moz-linear-gradient(top, #606e78 0%, #495864 100%); /* FF3.6+ */
  800. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#606e78), color-stop(100%,#495864)); /* Chrome,Safari4+ */
  801. background: -webkit-linear-gradient(top, #606e78 0%,#495864 100%); /* Chrome10+,Safari5.1+ */
  802. background: -o-linear-gradient(top, #606e78 0%,#495864 100%); /* Opera 11.10+ */
  803. background: -ms-linear-gradient(top, #606e78 0%,#495864 100%); /* IE10+ */
  804. background: linear-gradient(to bottom, #606e78 0%,#495864 100%); /* W3C */
  805. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606e78', endColorstr='#495864',GradientType=0 ); /* IE6-9 */
  806. border:1px solid rgba(0, 0, 0, 0.15);
  807. }
  808. .bottom_actions_fixed{
  809. background: #f2f2f2; /* Old browsers */
  810. background: -moz-linear-gradient(top, #f2f2f2 0%, #fcfcfc 100%); /* FF3.6+ */
  811. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
  812. background: -webkit-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
  813. background: -o-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Opera 11.10+ */
  814. background: -ms-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* IE10+ */
  815. background: linear-gradient(to bottom, #f2f2f2 0%,#fcfcfc 100%); /* W3C */
  816. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
  817. border: 1px solid #E1E1E0;
  818. }
  819. .new_actions-fixed {
  820. top: 50px;
  821. }
  822. button.arrowr, input.arrowr {
  823. background-image:url(images/2rightarrow.gif);
  824. }
  825. button.arrowl, input.arrowl {
  826. background-image:url(images/2leftarrow.gif);
  827. }
  828. .refresh {
  829. background-image:url(images/refresh.png);
  830. }
  831. .portal {
  832. background-image:url(images/portal.png);
  833. }
  834. /*CSS ICON BLOCK USER*/
  835. .inbox-social{
  836. background: url("images/icon-chamilo.png") no-repeat 0 -415px;
  837. padding-left: 40px;
  838. }
  839. .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
  840. .order-course:hover,.history-course:hover, .list-course:hover{
  841. opacity: 0.8;
  842. }
  843. .new-message-social{
  844. background: url("images/icon-chamilo.png") no-repeat 0 -370px;
  845. padding-left: 40px;
  846. }
  847. .invitations-social{
  848. background: url("images/icon-chamilo.png") no-repeat 0 -455px;
  849. padding-left: 40px;
  850. }
  851. .profile-social{
  852. background: url("images/icon-chamilo.png") no-repeat 0 -496px;
  853. padding-left: 40px;
  854. }
  855. .add-course{
  856. background: url("images/icon-chamilo.png") no-repeat 0 -327px;
  857. padding-left: 40px;
  858. }
  859. .order-course{
  860. background: url("images/icon-chamilo.png") no-repeat 0 -536px;
  861. padding-left: 40px;
  862. }
  863. .history-course{
  864. background: url("images/icon-chamilo.png") no-repeat 0 -576px;
  865. padding-left: 40px;
  866. }
  867. .list-course{
  868. background: url("images/icon-chamilo.png") no-repeat 0 -618px;
  869. padding-left: 40px;
  870. }
  871. .forum-btn{
  872. background: url("images/icon-chamilo.png") no-repeat 0 -666px;
  873. padding-left: 40px;
  874. }
  875. /*+++++++++++++++++++++++++++++++++
  876. RESPONSIVE CSS
  877. +++++++++++++++++++++++++++++++++*/
  878. .navbar .brand {
  879. float: left;
  880. font-size: 16px;
  881. font-weight: 200;
  882. line-height: 20px;
  883. padding-bottom: 12px;
  884. padding-top: 15px;
  885. color: #FFFFFF;
  886. }
  887. @media (min-width: 481px) and (max-width: 800px) {
  888. .sidebar-nav h4 {
  889. color: #037FB2;
  890. font-size: 18px;
  891. padding-bottom: 10px;
  892. padding-left: 15px;
  893. padding-right: 15px;
  894. padding-top: 10px;
  895. }
  896. #profile_block .nav-list li, #course_block .nav-list li{
  897. padding-bottom: 5px;
  898. padding-top: 5px;
  899. }
  900. #top_main_content .menu-column #user_image_block{
  901. box-shadow: none;
  902. }
  903. }
  904. @media (max-width: 600px) {
  905. #main_content .course-box .row .span7 .row .span6 {
  906. float: left;
  907. /*width: 615px;*/
  908. padding-left: 10px;
  909. }
  910. #main_content .course-box .row .span7 .row .span6 h3 {
  911. font-size: 16px;
  912. /*width: 500px;*/
  913. }
  914. }
  915. @media (min-width: 801px){
  916. .nav-list > li > a {
  917. font-size: 13px;
  918. padding-bottom: 8px;
  919. padding-top: 8px;
  920. }
  921. /*CSS ICON BLOCK USER*/
  922. .inbox-social{
  923. background: url("images/icon-chamilo.png") no-repeat 0 -345px;
  924. padding-left: 30px;
  925. background-size: 25px auto;
  926. }
  927. .new-message-social{
  928. background: url("images/icon-chamilo.png") no-repeat 0 -307px;
  929. padding-left: 30px;
  930. background-size: 25px auto;
  931. }
  932. .invitations-social{
  933. background: url("images/icon-chamilo.png") no-repeat 0 -378px;
  934. padding-left: 30px;
  935. background-size: 25px auto;
  936. }
  937. .profile-social{
  938. background: url("images/icon-chamilo.png") no-repeat 0 -414px;
  939. padding-left: 30px;
  940. background-size: 25px auto;
  941. }
  942. .add-course{
  943. background: url("images/icon-chamilo.png") no-repeat 0 -274px;
  944. padding-left: 30px;
  945. background-size: 25px auto;
  946. }
  947. .order-course{
  948. background: url("images/icon-chamilo.png") no-repeat 0 -447px;
  949. padding-left: 30px;
  950. background-size: 25px auto;
  951. }
  952. .history-course{
  953. background: url("images/icon-chamilo.png") no-repeat 0 -481px;
  954. padding-left: 30px;
  955. background-size: 25px auto;
  956. }
  957. .list-course{
  958. background: url("images/icon-chamilo.png") no-repeat 0 -517px;
  959. padding-left: 30px;
  960. background-size: 25px auto;
  961. }
  962. .forum-btn {
  963. background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
  964. padding-left: 30px;
  965. }
  966. }
  967. @media (min-width: 321px) and (max-width: 480px){
  968. footer {
  969. height: 5em;
  970. }
  971. .welcome-mascot{
  972. background: none;
  973. padding-right: 0px;
  974. padding-bottom: 2em;
  975. padding-top: 2em;
  976. }
  977. #homepage .row .span9 h2 {
  978. color: #666;
  979. font-size: 22px;
  980. font-weight: bold;
  981. padding-bottom: 8px;
  982. line-height: 25px;
  983. }
  984. #announcements{
  985. display: none;
  986. }
  987. }
  988. /*+++++++++++++++++++++++++++++++++
  989. END RESPONSIVE CSS
  990. +++++++++++++++++++++++++++++++++*/