default.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061
  1. /*****************************************************
  2. * MAIN - COSMIC CAMPUS *
  3. *****************************************************/
  4. /* Adding default generic style for non chamilo_X themes */
  5. @import url('../base.css');
  6. /* Redefining html styles */
  7. body {
  8. /* hack ignored by non-IE to enable ie to support :hover on button */
  9. behavior:url("/main/css/csshover3.htc");
  10. font-family: arial, verdana, helvetica, sans-serif;
  11. font-size: 12px;
  12. color: #000;
  13. background-color: #fff;
  14. margin: 0;
  15. padding: 0;
  16. }
  17. div.row div.label {
  18. width: 0%;
  19. }
  20. div.row div.formw {
  21. width: 100%;
  22. }
  23. img {
  24. border: none;
  25. }
  26. a {
  27. font-weight: bold;
  28. text-decoration: none;
  29. color:#333;
  30. }
  31. a:visited {
  32. color: #333;
  33. }
  34. a:hover {
  35. color: #f3840d;
  36. }
  37. /* header 1 styles */
  38. #header1 {
  39. padding: 4px;
  40. background-color: #7171b7;
  41. color: #666;
  42. height: 50px;
  43. background-image: url(images/header.jpg);
  44. background-repeat: no-repeat;
  45. }
  46. #header1 a {
  47. color: #fff;
  48. text-decoration: none;
  49. }
  50. #header1 a:hover {
  51. text-decoration: underline;
  52. }
  53. #institution {
  54. float: left;
  55. font-weight: bold;
  56. }
  57. /* header 3 styles */
  58. .subnav .navbar-inner {
  59. color: #006;
  60. border-bottom: 1px solid #aeaeae;
  61. background-color: #7171B7; /* Old browsers */
  62. background-repeat: repeat-x; /* Repeat the gradient */
  63. background-image: -moz-linear-gradient(top, #AAAAF2 0%, #7171B7 100%); /* FF3.6+ */
  64. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7171B7), color-stop(100%,#7171B7)); /* Chrome,Safari4+ */
  65. background-image: -webkit-linear-gradient(top, #AAAAF2 0%,#7171B7 100%); /* Chrome 10+,Safari 5.1+ */
  66. background-image: -o-linear-gradient(top, #AAAAF2 0%,#7171B7 100%); /* Opera 11.10+ */
  67. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#AAAAF2', endColorstr='#7171B7',GradientType=0 ); /* IE6-9 */
  68. background-image: linear-gradient(top, #AAAAF2 0%,#7171B7 100%); /* W3C */
  69. border: 1px solid #e5e5e5;
  70. background-image: -ms-linear-gradient(top, #AAAAF2 0%,#7171B7 100%); /* IE10+ */
  71. }
  72. .subnav .nav > li > a {
  73. color: #fff;
  74. }
  75. .subnav a:hover {
  76. color: #8484CA;
  77. }
  78. .subnav .nav > li > a {
  79. border-left: none;
  80. border-right: none;
  81. }
  82. /* The tool shortcuts */
  83. #toolshortcuts {
  84. text-align: right;
  85. clear: right;
  86. margin-left: auto;
  87. margin-right: auto;
  88. padding: 10px;
  89. width: 98.7%;
  90. }
  91. /* footer styles */
  92. footer {
  93. background-color: #7171b7;
  94. background-image: url(images/footer.jpg);
  95. background-repeat: no-repeat;
  96. font-size: 12px;
  97. color:#ffffff;
  98. overflow:hidden;
  99. width: 100%;
  100. padding-bottom:10px;
  101. }
  102. footer a:link, footer a:visited {
  103. color:#f1d40d;
  104. }
  105. .push {
  106. height: 9em; /* Very important */
  107. }
  108. /*
  109. -----------------------------------------------------------------------------
  110. Side-Menu Slider (JQuery) see banner.inc.php
  111. -----------------------------------------------------------------------------
  112. */
  113. ul#navigation {
  114. position: fixed;
  115. margin: 0px;
  116. padding: 0px;
  117. top: 10px;
  118. right: -10px;
  119. list-style: none;
  120. z-index:9999;
  121. }
  122. ul#navigation li {
  123. width: 73px;
  124. }
  125. ul#navigation li a {
  126. display: block;
  127. margin-left: 1px;
  128. width: 65px;
  129. height: 60px;
  130. background-color:#CFCFCF;
  131. background-repeat:no-repeat;
  132. background-position:center center;
  133. border:1px solid #AFAFAF;
  134. -moz-border-radius:10px 0px 0px 10px;
  135. -webkit-border-bottom-right-radius: 10px;
  136. -webkit-border-top-right-radius: 10x;
  137. -khtml-border-bottom-right-radius: 10px;
  138. -khtml-border-top-right-radius: 10px;
  139. -moz-box-shadow: 0px 4px 3px #000;
  140. opacity: 0.6;
  141. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  142. -webkit-box-shadow: 0px 4px 3px #000;
  143. }
  144. ul#navigation .help a {
  145. -moz-border-radius:8px 0 0 8px;
  146. -moz-box-shadow:0 2px 2px #000000;
  147. background-color:#879DAA;
  148. background-position:center center;
  149. background-repeat:no-repeat;
  150. border:1px solid #FFFFFF;
  151. display:block;
  152. height:44px;
  153. margin-left:1px;
  154. opacity:0.6;
  155. width:65px;
  156. padding: 6px 0 8px 6px;
  157. }
  158. ul#navigation .report a {
  159. -moz-border-radius:8px 0 0 8px;
  160. -moz-box-shadow:0 2px 2px #000000;
  161. background-color:#8fd400;
  162. background-position:center center;
  163. background-repeat:no-repeat;
  164. border:1px solid #FFFFFF;
  165. display:block;
  166. height:44px;
  167. margin-left:1px;
  168. opacity:0.6;
  169. width:65px;
  170. padding: 6px 0 8px 6px;
  171. }
  172. ul#navigation .student a {
  173. -moz-border-radius:8px 0 0 8px;
  174. -moz-box-shadow:0 2px 2px #000000;
  175. background-color:#b27651 ;
  176. background-position:center center;
  177. background-repeat:no-repeat;
  178. border:1px solid #FFFFFF;
  179. display:block;
  180. height:44px;
  181. margin-left:1px;
  182. opacity:0.6;
  183. width:65px;
  184. padding-bottom: 8px;
  185. }
  186. ul#navigation .user-online a {
  187. -moz-border-radius:8px 0 0 8px;
  188. -moz-box-shadow:0 2px 2px #000000;
  189. background-color:#ccbc67 ;
  190. background-position:center center;
  191. background-repeat:no-repeat;
  192. border:1px solid #FFFFFF;
  193. display:block;
  194. height:44px;
  195. margin-left:1px;
  196. opacity:0.6;
  197. width:65px;
  198. padding: 6px 0 8px 6px;
  199. }
  200. /* Other colors for other tabs in the earth tones */
  201. ul#navigation .user-connect a {
  202. -moz-border-radius:8px 0 0 8px;
  203. -moz-box-shadow:0 2px 2px #000000;
  204. background-color:#fac97a ;
  205. background-position:center center;
  206. background-repeat:no-repeat;
  207. border:1px solid #FFFFFF;
  208. display:block;
  209. height:44px;
  210. margin-left:1px;
  211. opacity:0.6;
  212. width:65px;
  213. padding: 6px 0 8px 6px;
  214. }
  215. ul#navigation .student-connect a {
  216. -moz-border-radius:8px 0 0 8px;
  217. -moz-box-shadow:0 2px 2px #000000;
  218. background-color:#d0d5d1 ;
  219. background-position:center center;
  220. background-repeat:no-repeat;
  221. border:1px solid #FFFFFF;
  222. display:block;
  223. height:44px;
  224. margin-left:1px;
  225. opacity:0.6;
  226. width:65px;
  227. padding: 6px 0 8px 6px;
  228. }
  229. /* my courses styles */
  230. .maincontent {
  231. float: left;
  232. width: 65%;
  233. padding: 0 20px 0 20px;
  234. background-color: transparent;
  235. min-height: 333px;
  236. margin-top:0;
  237. border-top: 10px #999999;
  238. }
  239. .coursestatusicons {
  240. border: 0px solid #000;
  241. float: left;
  242. padding-right: 5px;
  243. width: auto;
  244. }
  245. .courseslist {
  246. margin-left: -25px;
  247. }
  248. /* user_portal course list */
  249. .courses {
  250. list-style-type: none;
  251. margin-bottom: 5px;
  252. height: 30px;
  253. }
  254. .user_course_category {
  255. background-color: #efefef;
  256. border: 1px solid #666;
  257. font-weight: bold;
  258. color: #666;
  259. list-style-type: none;
  260. margin: 0px;
  261. padding: 5px;
  262. }
  263. .note {
  264. width: auto;
  265. margin: 24px 6px 0 6px;
  266. padding: 3px;
  267. border: 2px outset;
  268. border-color:#bbb;
  269. }
  270. /* form styles */
  271. form span.form_required {
  272. color: #f00;
  273. }
  274. form span.form_error {
  275. color: #f00;
  276. font-size: x-small;
  277. margin: 2px;
  278. }
  279. /* feedback messages */
  280. .normal-message {
  281. border: 1px solid #dcdcdc;
  282. color: #00407F;
  283. background-color: #E5EDF9;
  284. }
  285. .warning-message {
  286. border: 1px solid #FFB30F;
  287. color: #000;
  288. background-color: #FFEFA7;
  289. }
  290. .confirmation-message {
  291. border: 1px solid #1F8323;
  292. color: #1F8323;
  293. background-color: #CAF0C7;
  294. }
  295. .error-message {
  296. border: 1px solid #FF0000;
  297. color: #000;
  298. background-color: #FFD1D1;
  299. }
  300. /* New training */
  301. .bottom-link {
  302. background-image:url(images/button_back.jpg);
  303. }
  304. /* other styles */
  305. .clear {
  306. clear: both;
  307. line-height: 0px;
  308. height: 0;
  309. }
  310. /* actions */
  311. .actions_lp {
  312. background:#F8F8F8;
  313. height:29px;
  314. }
  315. .actions_lp img {
  316. vertical-align:middle;
  317. }
  318. .actions_lp span {
  319. margin-right: 10px;
  320. vertical-align:middle;
  321. }
  322. .actions_lp form {
  323. margin-right: 10px;
  324. vertical-align:middle;
  325. }
  326. .actions {
  327. background-color:#A7A7E5;
  328. border-bottom:1px solid #7171b7;
  329. border-top:1px solid #7171b7;
  330. /*height:35px;*/
  331. padding:2px;
  332. margin-bottom: 5px;
  333. vertical-align:middle;
  334. width: 99.8%
  335. }
  336. .actions img {
  337. /*display:inline-block;*/
  338. border: none;
  339. text-decoration: none;
  340. padding-right: 5px;
  341. vertical-align:middle;
  342. }
  343. .actions a {
  344. display:inline-block;
  345. margin-right: 10px;
  346. vertical-align:middle;
  347. }
  348. .actions span {
  349. margin-right: 10px;
  350. vertical-align:middle;
  351. }
  352. .actions form {
  353. margin-right: 10px;
  354. vertical-align:middle;
  355. }
  356. /* big actions */
  357. .actionsbig {
  358. background-color:#A7A7E5;
  359. border-bottom:1px solid #7171b7;
  360. border-top:1px solid #7171b7;
  361. background-color:#efefef;
  362. padding:2px;
  363. margin-bottom: 5px;
  364. vertical-align:middle;
  365. float:left;
  366. width:100%;
  367. }
  368. .content_table {
  369. padding:2px;
  370. margin-bottom: 5px;
  371. vertical-align:middle;
  372. float:left;
  373. width:100%;
  374. }
  375. .actionsbig a {
  376. float:left;
  377. padding-left:12px;
  378. padding-right:12px;
  379. text-align:center;
  380. }
  381. .actions img {
  382. vertical-align:middle;
  383. }
  384. .actions a {
  385. margin-right: 10px;
  386. vertical-align:middle;
  387. }
  388. .actions-title {
  389. background:#efefef;
  390. border-bottom:1px dotted #999999;
  391. border-top:1px dotted #999999;
  392. /*height:35px;*/
  393. padding:4px;
  394. margin-bottom: 5px;
  395. font-size:14px;
  396. font-weight:bolder;
  397. /*background:url(images/actions.jpg) repeat-x;*/
  398. vertical-align:middle;
  399. }
  400. .actions-message {
  401. white-space: nowrap;
  402. padding: 2px;
  403. background-color: #f0f0f0;
  404. border: 1px solid #bbb;
  405. }
  406. /* styles for the profile page */
  407. .profile_image {
  408. float: right;
  409. margin-right: 20px;
  410. }
  411. .profile_form {
  412. float: left;
  413. width: 75%;
  414. }
  415. /* course introduction */
  416. #courseintrocenter {
  417. position: relative;
  418. width: 80%;
  419. margin: 25px auto 10px;
  420. border-bottom: 1px solid #dcdcdc;
  421. }
  422. #courseintro_iconscenter {
  423. position: relative;
  424. width: 80%;
  425. margin: 0px auto 10px;
  426. }
  427. #courseintroleft {
  428. position: relative;
  429. width: 80%;
  430. margin-bottom: 5px;
  431. border-bottom: 1px solid #dcdcdc;
  432. }
  433. #courseintro_iconsleft {
  434. position: relative;
  435. width: 80%;
  436. }
  437. /*
  438. -----------------------------------------------------------------------------
  439. Menu Slide JQuery
  440. -----------------------------------------------------------------------------
  441. */
  442. ul#navigation {
  443. position: fixed;
  444. margin: 0px;
  445. padding: 0px;
  446. top: 130px;
  447. right: -10px;
  448. list-style: none;
  449. z-index:9999;
  450. }
  451. ul#navigation li {
  452. width: 73px;
  453. }
  454. ul#navigation li a {
  455. display: block;
  456. margin-left: 1px;
  457. width: 65px;
  458. height: 60px;
  459. background-color:#CFCFCF;
  460. background-repeat:no-repeat;
  461. background-position:center center;
  462. border:1px solid #AFAFAF;
  463. -moz-border-radius:10px 0px 0px 10px;
  464. -webkit-border-bottom-right-radius: 10px;
  465. -webkit-border-top-right-radius: 10x;
  466. -khtml-border-bottom-right-radius: 10px;
  467. -khtml-border-top-right-radius: 10px;
  468. -moz-box-shadow: 0px 4px 3px #000;
  469. opacity: 0.6;
  470. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  471. -webkit-box-shadow: 0px 4px 3px #000;
  472. }
  473. ul#navigation .help a{
  474. background-image: url(images/help2.png);
  475. }
  476. /* Login form */
  477. #formLogin div {
  478. margin-bottom: 3px;
  479. }
  480. #formLogin div input[type=submit] {
  481. width: 109px;
  482. }
  483. /* normal table*/
  484. .normal_table {
  485. margin: 3px;
  486. border-collapse: collapse;
  487. width: 98%;
  488. padding: 5px;
  489. }
  490. /* Data table */
  491. .data_table {
  492. margin: 3px;
  493. border-collapse: collapse;
  494. width: 99.8%;
  495. padding: 5px;
  496. }
  497. .data_table th {
  498. text-transform: capitalize;
  499. border: 1px solid gray;
  500. background-color: #f0f0f0;
  501. }
  502. .data_table th a {
  503. text-decoration:none;
  504. }
  505. .data_table th a:hover {
  506. }
  507. .data_table tr.row_odd {
  508. background: #fafafa;
  509. }
  510. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  511. background-color: #f0f0f0;
  512. }
  513. .data_table tr.row_even {
  514. background-color: #fff;
  515. }
  516. .data_table td {
  517. padding: 5px;
  518. vertical-align: top;
  519. border-bottom: 2px solid #fff;
  520. border-right: 2px solid #fff;
  521. border-left: 2px solid #fff;
  522. }
  523. .data_table_pagination {
  524. width:100%;
  525. margin-top: 8px;
  526. }
  527. /* sections in the page */
  528. .sectiontitle {
  529. background: url('images/headertables.jpg') repeat-x top center;
  530. background-color: #ffb963;
  531. border: 1px solid #EE4C03;
  532. font-weight: bold;
  533. color: #EE4C03;
  534. list-style-type: none;
  535. margin: 5px;
  536. padding: 5px;
  537. }
  538. .sectioncomment {
  539. color: #000000;
  540. margin: 5px;
  541. padding: 5px;
  542. }
  543. .sectionvalue {
  544. list-style-type: none;
  545. margin: 5px;
  546. padding: 5px;
  547. }
  548. /* invisible styles */
  549. a.invisible {
  550. color: #999999;
  551. }
  552. a.invisible:visited {
  553. color: #999999;
  554. }
  555. a.invisible:active {
  556. color: #999999;
  557. }
  558. a.invisible:hover {
  559. color: #999999;
  560. }
  561. /* Platform Administration */
  562. div.admin_section {
  563. width: 40%;
  564. float: left;
  565. margin: 10px 20px;
  566. border: 1px solid #EE4C03;
  567. min-height:210px;
  568. }
  569. div.admin_section h4 {
  570. background-color: #FDDEAA;
  571. font-weight: bold;
  572. list-style-type: none;
  573. margin: 0px;
  574. padding: 5px;
  575. }
  576. div.report_section h4 {
  577. background-color: #FDDEAA;
  578. font-weight: bold;
  579. list-style-type: none;
  580. margin: 0px;
  581. padding: 5px;
  582. }
  583. /* course homepage */
  584. .courseadminview, .platformadminview {
  585. position: relative;
  586. width: 80%;
  587. margin: 25px auto 10px;
  588. padding: 10px;
  589. border: 1px solid #EE4C03;
  590. }
  591. .courseadminview img, .platformadminview img {
  592. display:inline-block;
  593. border: none;
  594. text-decoration: none;
  595. background-color: #fff;
  596. padding-right: 5px;
  597. vertical-align:middle;
  598. }
  599. .viewcaption {
  600. position: relative;
  601. top: -20px;
  602. font-weight: bold;
  603. background-color: #fff;
  604. padding: 0 4px;
  605. }
  606. .tool-icon {
  607. margin-bottom: -3px;
  608. }
  609. /* learning path */
  610. table.lp_build {
  611. height:400px;
  612. width:100%;
  613. }
  614. table.lp_build td {
  615. vertical-align:top;
  616. }
  617. table.lp_build td.tree {
  618. border-right:1px solid #999999;
  619. width:240px;
  620. }
  621. table.lp_build td.workspace {
  622. padding: 0px;
  623. padding-left:5px;
  624. width:auto;
  625. }
  626. table.lp_overview {
  627. width:100%;
  628. }
  629. table.lp_overview td {
  630. border-bottom:1px solid #999999;
  631. border-top:1px solid #999999;
  632. height:20px;
  633. padding:3px;
  634. vertical-align:middle;
  635. width:auto;
  636. }
  637. table.lp_overview td.title {
  638. width:200px;
  639. }
  640. table.lp_overview td.actions {
  641. text-align:center;
  642. width:100px;
  643. }
  644. table.lp_overview td.move {
  645. text-align:center;
  646. width:50px;
  647. }
  648. table.lp_overview th {
  649. background:#FFFFFF;
  650. padding-left:3px;
  651. text-align:center;
  652. }
  653. table.lp_overview tr {
  654. background:#F8F8F8;
  655. }
  656. table.lp_overview tr:hover {
  657. background:#E5EDF9;
  658. }
  659. table.lp_overview img {
  660. margin-left:3px;
  661. }
  662. table.lp_prerequisites th {
  663. background:#F8F8F8;
  664. border-bottom:1px solid #999999;
  665. border-top:1px solid #999999;
  666. }
  667. .lp_mediaplayer {
  668. float: right;
  669. padding-top: 3px;
  670. margin-right: 5px;
  671. }
  672. div.lp_manipulate {
  673. background:#F8F8F8;
  674. border-bottom:1px dotted #999999;
  675. margin-bottom:0px;
  676. padding:3px 0 3px 10px;
  677. }
  678. div.lp_manipulate a {
  679. padding-right:10px;
  680. }
  681. div.lp_resource_header {
  682. background:#F0F0F0;
  683. border:1px solid #999999;
  684. font-weight:bold;
  685. padding:10px;
  686. width:350px;
  687. cursor:pointer;
  688. margin-top: -1px;
  689. }
  690. div.lp_resource_elements {
  691. background:#FAFAFA;
  692. border:1px solid #999999;
  693. display:none;
  694. padding:5px 10px;
  695. width:350px;
  696. margin-top: -1px;
  697. }
  698. .learnpath_chapter_form {
  699. width: 300px;
  700. }
  701. .learnpath_item_form {
  702. width: 300px;
  703. }
  704. #learnpath_preview_frame {
  705. margin-top: 5px;
  706. border:1px solid #CCCCCC;
  707. height:490px;
  708. width:95%;
  709. }
  710. /* exercices styles */
  711. .exercice_form {
  712. width: 300px;
  713. }
  714. #validationButton {
  715. text-decoration: none;
  716. margin: 5px;
  717. border:1px solid #999999;
  718. background:#F0F0F0;
  719. padding: 3px;
  720. padding-left:10px;
  721. padding-right:10px;
  722. font-weight:bold;
  723. color:#666;
  724. }
  725. .exercise_scenario_label {
  726. }
  727. .exercise_scenario_element {
  728. }
  729. span.checkbox {
  730. width: 19px;
  731. height: 25px;
  732. padding: 0 5px 0 0;
  733. background: url(images/checkbox.gif) no-repeat;
  734. display: block;
  735. clear: left;
  736. float: left;
  737. }
  738. span.radio {
  739. width: 19px;
  740. height: 25px;
  741. padding: 0 5px 0 0;
  742. background: url(images/radio.gif) no-repeat;
  743. display: block;
  744. clear: left;
  745. float: left;
  746. }
  747. /* forum styles */
  748. .forum_header {
  749. background: transparent url('images/line.jpg') repeat-x bottom center;
  750. font-weight: bold;
  751. }
  752. .forum_threadheader {
  753. background: transparent url('images/line.jpg') repeat-x bottom center;
  754. font-weight: bold;
  755. }
  756. .forum_message_left {
  757. width: 150px;
  758. vertical-align: top;
  759. /*border-bottom: 1px solid #666666;*/
  760. border-right: 1px solid #EE4C03;
  761. background: url('images/bglogin.jpg') repeat-y top center;
  762. background-color: #ebc41f;
  763. }
  764. .forum_message_post_title {
  765. border-bottom: 1px solid #EE4C03;
  766. font-weight: bold;
  767. background-color: #FDDEAA;
  768. height: 20px;
  769. color: #EE4C03;
  770. }
  771. .forum-thread-header {
  772. color: #000000;
  773. background-color: #F7F7F7;
  774. border-left: 1px solid #aaa;
  775. border-right: 1px solid #aaa;
  776. border-bottom: 1px solid #aaa;
  777. border-top: 1px solid #aaa;
  778. }
  779. .forum-thread-body {
  780. color: #000000;
  781. background-color: #FFFFFF;
  782. border-left: 1px solid #aaa;
  783. border-right: 1px solid #aaa;
  784. border-bottom: 1px solid #aaa;
  785. border-top: 1px solid #aaa;
  786. }
  787. /* Survey styles */
  788. #survey_title {
  789. background-color:#dcdcdc;
  790. color:#000;
  791. padding:2px;
  792. }
  793. #survey_subtitle {
  794. background-color:#dcdcdc;
  795. color:#000;
  796. padding:2px;
  797. }
  798. .survey_content {
  799. background-color:#EFEFEF;
  800. color:#264269;
  801. padding:5px;
  802. border: 1px solid #999;
  803. }
  804. .survey_question_wrapper {
  805. border: 1px solid #999;
  806. }
  807. .survey_question {
  808. /* 264269 4271b5 E5EDF9 */
  809. background-color:#f0f0f0;
  810. color:#999;
  811. padding:5px;/*border: 1px solid #264269;*/
  812. }
  813. .survey_question_options {
  814. /* 264269 4271b5 E5EDF9 */
  815. background-color:#FFF;
  816. color:#000;
  817. padding:5px;/*border: 1px solid #264269;*/
  818. }
  819. /* Blog */
  820. .blog_menu {
  821. border-bottom: 1px dashed #dddddd;
  822. border-right: 1px dashed #dddddd;
  823. border-left: 1px dashed #dddddd;
  824. padding: 10px;
  825. }
  826. .blogpost {
  827. border: 1px solid #DDDDDD;
  828. background-color: #ECECEC;
  829. margin-bottom: 15px;
  830. padding: 10px;
  831. }
  832. .blogpost_title {
  833. display: block;
  834. font-weight: bold;
  835. padding-bottom: 5px;
  836. }
  837. .blogpost_date {
  838. display: block;
  839. font-weight: bold;
  840. color: #333333;
  841. padding-bottom: 10px;
  842. }
  843. .blogpost_info {
  844. display: block;
  845. color: #333333;
  846. border-top: 1px solid #dddddd;
  847. margin-top: 5px;
  848. }
  849. .blogpost_comment {
  850. border-top: 1px dashed #dddddd;
  851. border-right: 1px dashed #dddddd;
  852. border-bottom: 1px dashed #dddddd;
  853. border-left: 1px dashed #dddddd;
  854. margin-bottom: 10px;
  855. padding: 10px;
  856. background-color: white;
  857. z-index: -1;
  858. }
  859. .blogpost_comment_title {
  860. display: block;
  861. font-weight: bold;
  862. color: #1657A9;
  863. padding-bottom: 5px;
  864. }
  865. .blogpost_comment_date {
  866. display: block;
  867. font-size: 10px;
  868. font-weight: bold;
  869. color: #333333;
  870. padding-bottom: 10px;
  871. }
  872. .blogpost_comment_info {
  873. font-size: 10px;
  874. display: block;
  875. color: #333333;
  876. border-top: 1px solid #dddddd;
  877. margin-top: 10px;
  878. }
  879. .blogpost {
  880. border: 1px solid #DDDDDD;
  881. background-color: #ECECEC;
  882. margin-bottom: 15px;
  883. padding: 10px;
  884. }
  885. .comments {
  886. border: 1px solid #dddddd;
  887. margin-bottom: 10px;
  888. margin-top: 10px;
  889. padding: 10px;
  890. background-color: #F4F4F4;
  891. margin-left:50px;
  892. }
  893. /* tabbed menu */
  894. #tabbed_menu {
  895. border: 1px solid #EE8003;
  896. background: transparent url('images/dropbox.jpg') no-repeat top left;
  897. width: 300px;
  898. margin: 0 0 1em 0;
  899. }
  900. #tabbed_menu_tabs {
  901. width: 90%;
  902. margin: 15px .2em 0 .2em;
  903. padding: 0;
  904. list-style-type: none;
  905. }
  906. #tabbed_menu_tabs li {
  907. padding: 0;
  908. margin: 0 .8em;
  909. }
  910. /* system announcements */
  911. div.system_announcements {
  912. }
  913. div.system_announcements h3 {
  914. }
  915. div.system_announcement {
  916. margin: 5px;
  917. min-height:20px;
  918. }
  919. div.system_announcement_title {
  920. }
  921. div.system_announcement_content {
  922. margin-left: 20px;
  923. border-left: 1px solid gray;
  924. padding-left: 5px;
  925. }
  926. #image_preview {
  927. text-align:center;
  928. padding-left: 17px;
  929. }
  930. .skip {
  931. display: none;
  932. }
  933. /* Specific forms: profile,add course,advanced search,advanced course search,etc.. */
  934. #add_course, #profile, #advanced_course_search, #advanced_search, #category, #course_user_import, #export_users, #update_course, #user_add, #user_import {
  935. /*border: 1px solid #EE4C03;
  936. background: transparent url("images/headerform.jpg") no-repeat top left;
  937. width: 550px;
  938. position: relative;
  939. padding: 60px 0 1em 0;*/
  940. }
  941. #advanced_search, #category, #course_user_import {
  942. /* background: transparent url("images/headerform2.jpg") no-repeat top left;*/
  943. }
  944. #export_users, #update_course, #user_add, #user_import {
  945. /* background: transparent url("images/headerform3.jpg") no-repeat top left;*/
  946. }
  947. /* Glossary tool */
  948. .glossary-term {
  949. margin: 1em;
  950. background-color: #ffe99b;
  951. padding: 0.5em 0.5em 1.8em 0;
  952. -moz-border-radius: 0.5em;
  953. }
  954. .glossary-term-title {
  955. margin: 2em 0 1em 0.5em;
  956. font-weight: bold;
  957. font-size: 120%;
  958. }
  959. .glossary-term-desc {
  960. margin-left: 1em;
  961. }
  962. .glossary-term-action-links {
  963. float: right;
  964. }
  965. .glossary-term-edit-form {
  966. margin: 1em;
  967. background-color: #FFE4C4;
  968. padding: 0.5em 0.5em 2em 0;
  969. -moz-border-radius: 0.5em;
  970. }
  971. .glossary-term-edit-desc {
  972. font-weight: bold;
  973. font-size: 120%;
  974. }
  975. .glossary-term-edit-title {
  976. font-weight: bold;
  977. font-size: 120%;
  978. }
  979. .glossary-add-form {
  980. font-weight: bold;
  981. font-size: 120%;
  982. margin: 1em;
  983. }
  984. .glossary-orderby-link {
  985. float:right;
  986. margin: 1em;
  987. }
  988. .glossary-msg-error {
  989. color: #FF0000;
  990. display :none;
  991. font-weight: normal;
  992. font-size: 80%;
  993. }
  994. /*SESSIONS*/
  995. .sessions_list {
  996. line-height: 20px;
  997. margin-top: 20px;
  998. }
  999. .sessions_list_inactive {
  1000. line-height: 20px;
  1001. }
  1002. .sub_session_box {
  1003. border: 1px solid #DCE5F3;
  1004. /* font-weight: bold; */
  1005. color: #666;
  1006. list-style-type: none;
  1007. margin:5px 5px 10px 0px;
  1008. padding: 5px;
  1009. background-color:#FFF;
  1010. -webkit-border-radius: 10px;
  1011. -moz-border-radius: 10px;
  1012. border-radius: 10px;
  1013. }
  1014. .sub_session_box_title {
  1015. margin-bottom: 10px;
  1016. background-color:#F9F9F9;
  1017. }
  1018. .session_box_title {
  1019. margin-bottom: 10px;
  1020. background-color:#F9F9F9;
  1021. }
  1022. .session_box_coach {
  1023. }
  1024. .session_course_item {
  1025. /* padding: 0px; */
  1026. margin: 0px;
  1027. margin-bottom:20px;
  1028. }
  1029. .session_course_item .courses {
  1030. margin-bottom: 5px;
  1031. height:35px;
  1032. }
  1033. /* Notebook */
  1034. .notebook-add-form {
  1035. margin: 1em;
  1036. background-color: #c3d9ff;
  1037. padding: 1em 1em;
  1038. }
  1039. .notebook-add-desc-textarea {
  1040. background-color: #f2f5f8;
  1041. border-color: #ffe99b;
  1042. overflow: hidden;
  1043. }
  1044. .notebook-add-title-text {
  1045. background-color: #f2f5f8;
  1046. border-color: #ffe99b;
  1047. }
  1048. .notebook-edit-desc-textarea {
  1049. background-color: #e0ecff;
  1050. border-color: #ffe99b;
  1051. overflow: hidden;
  1052. }
  1053. .notebook-edit-title-text {
  1054. background-color: #e0ecff;
  1055. border-color: #ffe99b;
  1056. }
  1057. .notebook-msg-error {
  1058. color: #FF0000;
  1059. display :none;
  1060. background-color: #ffe99b;
  1061. width: 40%;
  1062. }
  1063. .notebook-list {
  1064. margin: 1em 1em 0em 1em;
  1065. background-color: #79b;
  1066. padding: 0.3em 0.3em;
  1067. -moz-border-radius: 0.5em;
  1068. }
  1069. .notebook-title-list {
  1070. color : #fff;
  1071. padding: 0.3em 0.3em;
  1072. font-weight: bold;
  1073. font-size: 120%;
  1074. }
  1075. .notebook-desc-list {
  1076. margin: 0em;
  1077. background-color: #f2f5f8;
  1078. padding: 0.5em 0.3em 2em 0.3em;
  1079. border: 1px solid #79b;
  1080. }
  1081. .notebook-term-action-links {
  1082. padding: 0.3em 0.3em;
  1083. width: 50%;
  1084. color : #fff;
  1085. }
  1086. .notebook-orderby-link {
  1087. text-align:right;
  1088. margin-right: 1em;
  1089. }
  1090. .notebook-search-title {
  1091. text-align:right;
  1092. margin: 1em;
  1093. }
  1094. .notebook-date-information {
  1095. color : #fff;
  1096. padding: 0.3em;
  1097. font-size: 120%;
  1098. font-weight: bold;
  1099. }
  1100. /*NAVIGATION MENU BAR*/
  1101. .menucaption {
  1102. font-size: 12px;
  1103. font-weight: bold;
  1104. padding-left: 12px;
  1105. }
  1106. .menusectioncaption {
  1107. position: relative;
  1108. top: -9px;
  1109. background-color: #E5EDF9;
  1110. font-size: 12px;
  1111. padding: 0 8px 0 4px;
  1112. }
  1113. .menulist {
  1114. list-style: none;
  1115. margin: 0 0 12px 0;
  1116. padding: 0;
  1117. }
  1118. #centerwrap {
  1119. float: left;
  1120. width: 100%;
  1121. margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
  1122. it's empty otherwise. The difference is made up by putting a
  1123. negative left margin on the left float:
  1124. Note IE/Mac doesn't like this method ~ it wants the 100% so it can
  1125. be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
  1126. */
  1127. }
  1128. #center {
  1129. margin: 0 190px 0 0;
  1130. padding: 10px 0 40px 0;
  1131. min-height: 300px;
  1132. }
  1133. #toolnav {
  1134. float:right;
  1135. margin:-7px 0 0 -5%;
  1136. overflow:hidden;
  1137. padding:0;
  1138. width:180px;
  1139. }
  1140. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1141. * html #toolnav {
  1142. margin-right: 0px;
  1143. }
  1144. * html #center {
  1145. height: 1%;
  1146. margin-left: 0;
  1147. }
  1148. /* End hide from IE5/mac */
  1149. /* --- course navigation menu as a definition list --- */
  1150. #swap_menu_link {
  1151. float: left;
  1152. }
  1153. #toolnavbox {
  1154. margin: 0 0 0 10px;
  1155. padding: 0;
  1156. float: left;
  1157. border: 1px solid #4271b5;
  1158. }
  1159. #toolnavbox dl {
  1160. width: 160px;
  1161. margin: 0 auto;
  1162. padding: 0;
  1163. background: transparent;
  1164. font-size: 12px;
  1165. text-align: center;
  1166. }
  1167. #toolnavbox dt {
  1168. margin: 0;
  1169. padding: 0;
  1170. font-weight: bold;
  1171. font-size: 12px;
  1172. text-align: center;
  1173. color: #000;
  1174. border-bottom: 1px solid #fff;
  1175. background: transparent;
  1176. }
  1177. #toolnavbox dd {
  1178. margin: 0;
  1179. padding: 0;
  1180. color: #009;
  1181. text-align: left;
  1182. border-bottom:1px solid #fff;
  1183. background: #E5EDF9;
  1184. }
  1185. #toolnav img {
  1186. float: left;
  1187. width: 25px;
  1188. height: 25px;
  1189. margin: 0 4px 0 0;
  1190. }
  1191. #toolnavlist a, #toolnavlist a:link {
  1192. background: #E5EDF9;
  1193. color: #4171b5;
  1194. padding: 5px 5px 5px 10px;
  1195. margin: 0;
  1196. text-decoration: none;
  1197. display: block;
  1198. line-height:24px;
  1199. }
  1200. #toolnavlist a:hover {
  1201. background: #fff;
  1202. color:#4171b5;
  1203. }
  1204. #toolnavlist a#here {
  1205. background: #fff;
  1206. color:#4171b5;
  1207. }
  1208. /* --- end of course navigation menu section --- */
  1209. /**********************************************
  1210. * EXERCISE TOOL *
  1211. **********************************************/
  1212. .exercice_form {
  1213. width: 300px;
  1214. }
  1215. #validationButton {
  1216. text-decoration: none;
  1217. margin: 5px;
  1218. /*border:1px solid #999999;*/
  1219. /*background:#F0F0F0; */
  1220. padding: 3px;
  1221. padding-left:10px;
  1222. padding-right:10px;
  1223. font-weight:bold;
  1224. color:#666;
  1225. }
  1226. .exercise_scenario_label {
  1227. }
  1228. .exercise_scenario_element {
  1229. }
  1230. span.checkbox {
  1231. width: 19px;
  1232. height: 25px;
  1233. padding: 0 5px 0 0;
  1234. background: url(images/checkbox.gif) no-repeat;
  1235. display: block;
  1236. clear: left;
  1237. float: left;
  1238. }
  1239. span.radio {
  1240. width: 19px;
  1241. height: 25px;
  1242. padding: 0 5px 0 0;
  1243. background: url(images/radio.gif) no-repeat;
  1244. display: block;
  1245. clear: left;
  1246. float: left;
  1247. }
  1248. #question_title {
  1249. }
  1250. #question_description {
  1251. padding-left:5px;
  1252. padding-top:10px;
  1253. }
  1254. #question_score {
  1255. padding-left:5px;
  1256. padding-top:10px;
  1257. padding-bottom:10px;
  1258. font-weight:bold;
  1259. }
  1260. #question_feedback {
  1261. background-color:#FCF7BA;
  1262. border:1px solid #CCCCCC;
  1263. color:#666666;
  1264. font-size:11px;
  1265. font-weight:bold;
  1266. list-style-type:none;
  1267. margin-top:5px;
  1268. padding:5px;
  1269. }
  1270. #exercise_close_link {
  1271. background: url(images/close.gif) no-repeat;
  1272. padding-left: 20px;
  1273. }
  1274. #exercise_close_link:hover {
  1275. background: url(images/close_highlight.gif) no-repeat;
  1276. padding-left: 20px;
  1277. }
  1278. /* Quizzes tool */
  1279. .quiz_export_link {
  1280. float: right;
  1281. }
  1282. /*****************************************************
  1283. * BUTTONS *
  1284. *****************************************************/
  1285. button:hover input[type="submit"]:hover{
  1286. background-color:#cbcbcb;
  1287. color:#545454;
  1288. border-style: inset;
  1289. }
  1290. /* button with image */
  1291. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
  1292. padding-left:30px;
  1293. background-position:10px;
  1294. background-repeat:no-repeat;
  1295. }
  1296. /*including "save" image*/
  1297. button.save {
  1298. background-image:url(images/button_accept.gif);
  1299. }
  1300. /*including "add" image*/
  1301. button.add {
  1302. background-image:url(images/button_add.gif);
  1303. }
  1304. /*including "cancel" image*/
  1305. button.cancel {
  1306. background-image:url(images/button_delete.gif);
  1307. }
  1308. /*including "search" image*/
  1309. button.search {
  1310. background-image:url(images/button_search.gif);
  1311. }
  1312. /*including "login" image*/
  1313. button.login {
  1314. background-image:url(images/button_login.gif);
  1315. margin:2px 5px 3px 5px !important;
  1316. }
  1317. /*including "plus" image*/
  1318. button.plus {
  1319. background-image:url(images/button_plus.gif);
  1320. }
  1321. /*including "minus" image*/
  1322. button.minus {
  1323. background-image:url(images/button_minus.gif);
  1324. }
  1325. /*including "next" image*/
  1326. button.next,input[type="submit"].submit_next {
  1327. background-image:url(images/button_next.gif);
  1328. }
  1329. /*including "back" image*/
  1330. button.back {
  1331. background-image:url(images/button_back.gif);
  1332. }
  1333. /*including "refresh" image*/
  1334. button.refresh {
  1335. background-image:url(images/button_refresh.gif);
  1336. }
  1337. /*including "upload" image*/
  1338. button.upload {
  1339. background-image:url(images/button_upload.gif);
  1340. }
  1341. /*including "back" image*/
  1342. button.back {
  1343. background-image:url(images/button_back.gif);
  1344. }
  1345. .icon_image_content {
  1346. width:70px;
  1347. cursor:hand;
  1348. height:6em;
  1349. text-align: center;
  1350. padding-right: 10px;
  1351. padding-left: 0px;
  1352. border: 1px dotted #ccc;
  1353. background-color: #eee;
  1354. margin-right: 0.2em;
  1355. margin-top: 0.1em;
  1356. -moz-border-radius-topleft : 5px;
  1357. -moz-border-radius-bottomright : 5px;
  1358. -moz-border-radius-bottomleft : 5px;
  1359. -moz-border-radius-topright : 5px;
  1360. }
  1361. .icon_image_content:hover {
  1362. background-color: #fff;
  1363. border: 1px solid #ccc;
  1364. }
  1365. .question_menu {
  1366. list-style:none;
  1367. float:left;
  1368. padding:0px;
  1369. margin:-2px;
  1370. min-height:100px;
  1371. }
  1372. .question_menu li {
  1373. float:left;
  1374. margin:0px;
  1375. }
  1376. #exercise_admin {
  1377. margin: 0;
  1378. padding: 0;
  1379. border: 0;
  1380. }
  1381. div#friend-header {
  1382. float:left;
  1383. width:100%;
  1384. line-height: 2.1em;
  1385. }
  1386. div#friend-header a {
  1387. padding-right:6px;
  1388. }
  1389. div#friend-container {
  1390. float:left;
  1391. }
  1392. div.image_friend_network {
  1393. float:left;
  1394. border:1px solid #CCCCCC;
  1395. margin:2px;
  1396. padding:4px;
  1397. background: #EFEFEF;
  1398. height:125px;
  1399. width:82px;
  1400. z-index:5;
  1401. }
  1402. div.image_friend_network span {
  1403. overflow:hidden;
  1404. display:block;
  1405. height:92px;
  1406. margin: 0px 0px;
  1407. }
  1408. div.image_friend_network img {
  1409. vertical-align:middle;
  1410. }
  1411. div.image_friend_network center.friend {
  1412. overflow:hidden;
  1413. height:30px;
  1414. }
  1415. .friend_invitations {
  1416. float:left;
  1417. margin: 0 0 4px 12px;
  1418. }
  1419. button.arrowr, input.arrowr {
  1420. background-image:url(images/2rightarrow.gif);
  1421. }
  1422. button.arrowl, input.arrowl {
  1423. background-image:url(images/2leftarrow.gif);
  1424. }
  1425. .u-m-answer {
  1426. width:100%;
  1427. }
  1428. .u-m-answer p {
  1429. margin:2px;
  1430. }
  1431. .refresh {
  1432. background-image:url(images/refresh.png);
  1433. background-repeat:no-repeat;
  1434. padding-left:20px;
  1435. padding-bottom:2px;
  1436. }
  1437. .portal {
  1438. background-image:url(images/portal.png);
  1439. background-repeat:no-repeat;
  1440. padding-left:28px;
  1441. padding-bottom:10px;
  1442. padding-top:8px;
  1443. }
  1444. .legal-terms {
  1445. height:150px;
  1446. overflow:auto;
  1447. background-color:#eee;
  1448. width:500px;
  1449. }
  1450. /* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
  1451. * {
  1452. outline :none;
  1453. }
  1454. /*
  1455. input, select, textarea {
  1456. -moz-border-radius-bottomleft:5px;
  1457. -moz-border-radius-bottomright:5px;
  1458. -moz-border-radius-topleft:5px;
  1459. -moz-border-radius-topright:5px;
  1460. -x-system-font:none;
  1461. border:1px solid #CCCCCC;
  1462. color:#666666;
  1463. font-family:Arial,Helvetica,sans-serif;
  1464. font-size:120%;
  1465. font-size-adjust:none;
  1466. font-stretch:normal;
  1467. font-style:normal;
  1468. font-variant:normal;
  1469. font-weight:normal;
  1470. line-height:normal;
  1471. padding:5px;
  1472. }
  1473. input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  1474. background-image:url(images/shadow.gif);
  1475. }
  1476. .independent_course_item a {
  1477. font-size:135%;
  1478. }
  1479. .session_course_item a {
  1480. font-size:120%;
  1481. }
  1482. */
  1483. #maincontent .courseslist li {
  1484. margin-bottom:8px;
  1485. }
  1486. /*
  1487. a.read {
  1488. font-weight:normal;
  1489. }
  1490. .actions {
  1491. background:#efefef;
  1492. border:1px solid #ccc;
  1493. padding:2px;
  1494. margin-bottom: 5px;
  1495. vertical-align:middle;
  1496. }
  1497. .actions-title {
  1498. background:#efefef;
  1499. border:1px solid #ccc;
  1500. padding:4px;
  1501. margin-bottom: 5px;
  1502. font-size:14px;
  1503. font-weight:bolder;
  1504. vertical-align:middle;
  1505. }*/
  1506. /* GROUP TOOL */
  1507. #group_description {
  1508. margin: 10px 0px 10px 0px;
  1509. }
  1510. #group_privacy {
  1511. margin: 10px 0px 10px 0px;
  1512. }
  1513. #group_permissions {
  1514. -moz-background-clip:border;
  1515. -moz-background-inline-policy:continuous;
  1516. -moz-background-origin:padding;
  1517. -moz-border-radius-bottomleft:8px;
  1518. -moz-border-radius-bottomright:8px;
  1519. -moz-border-radius-topleft:8px;
  1520. -moz-border-radius-topright:8px;
  1521. background:#EEE none repeat scroll 0 0;
  1522. margin: 20px 0px 20px 0px;
  1523. }
  1524. #group_permissions ul {
  1525. list-style-image:none;
  1526. list-style-position:outside;
  1527. list-style-type:none;
  1528. margin:0;
  1529. padding:0;
  1530. }
  1531. #group_permissions ul li {
  1532. margin: 10px 0px 10px 5px;
  1533. }
  1534. /* Groups boxes */
  1535. .groups_grid_container {
  1536. width:100%;
  1537. }
  1538. .groups_grid_item {
  1539. width:80px;
  1540. float:left;
  1541. margin:5px;
  1542. }
  1543. .groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  1544. .groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
  1545. .groups_grid_element_2 { width:150px; float:left;}
  1546. /*POPULAR GROUP*/
  1547. .popular_grid_item {
  1548. background: none repeat scroll 0 0 #FFFFFF;
  1549. border: 1px solid #E5E5E5;
  1550. border-radius: 11px 11px 11px 11px;
  1551. -webkit-border-radius: 11px 11px 11px 11px;
  1552. -opera-border-radius: 11px 11px 11px 11px;
  1553. -moz-border-radius: 11px 11px 11px 11px;
  1554. box-shadow: 0 4px 18px #C8C8C8;
  1555. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  1556. -opera-box-shadow: 0 4px 18px #C8C8C8;
  1557. -moz-box-shadow: 0 4px 18px #C8C8C8;
  1558. float: left;
  1559. height: auto;
  1560. margin: 0 8px 15px 15px;
  1561. padding: 16px 12px 5px;
  1562. width:90%;
  1563. }
  1564. .popular_grid_element_0 {
  1565. width:600px;
  1566. height:98px;
  1567. padding-left:10px;
  1568. padding-right:10px;
  1569. overflow:hidden;
  1570. }
  1571. /*NEWEST GROUP*/
  1572. .newest_grid_item {
  1573. background: none repeat scroll 0 0 #FFFFFF;
  1574. border: 1px solid #E5E5E5;
  1575. border-radius: 11px 11px 11px 11px;
  1576. -webkit-border-radius: 11px 11px 11px 11px;
  1577. -opera-border-radius: 11px 11px 11px 11px;
  1578. -moz-border-radius: 11px 11px 11px 11px;
  1579. box-shadow: 0 4px 18px #C8C8C8;
  1580. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  1581. -opera-box-shadow: 0 4px 18px #C8C8C8;
  1582. -moz-box-shadow: 0 4px 18px #C8C8C8;
  1583. float: left;
  1584. height: auto;
  1585. margin: 0 8px 15px 15px;
  1586. padding: 16px 12px 5px;
  1587. width:90%;
  1588. }
  1589. .newest_grid_element_1 {
  1590. width:600px;
  1591. height:98x;
  1592. padding-left:10px;
  1593. padding-right:10px;
  1594. overflow:hidden;
  1595. }
  1596. /*MY GROUPS*/
  1597. .mygroups_grid_item {
  1598. background: none repeat scroll 0 0 #FFFFFF;
  1599. border: 1px solid #E5E5E5;
  1600. border-radius: 11px 11px 11px 11px;
  1601. -webkit-border-radius: 11px 11px 11px 11px;
  1602. -opera-border-radius: 11px 11px 11px 11px;
  1603. -moz-border-radius: 11px 11px 11px 11px;
  1604. box-shadow: 0 4px 18px #C8C8C8;
  1605. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  1606. -opera-box-shadow: 0 4px 18px #C8C8C8;
  1607. -moz-box-shadow: 0 4px 18px #C8C8C8;
  1608. float: left;
  1609. height: auto;
  1610. margin: 0 8px 15px 15px;
  1611. padding: 16px 12px 5px;
  1612. width:90%;
  1613. }
  1614. .box_description_group_member {
  1615. color: #999999;
  1616. font-size: 10px;
  1617. }
  1618. .mygroups_grid_element_1 {
  1619. width:600px;
  1620. height:100px;
  1621. padding-left:10px;
  1622. padding-right:10px;
  1623. overflow:hidden;
  1624. }
  1625. .box_description_group_title h3 {
  1626. margin-bottom:4px;
  1627. }
  1628. .box_description_group_title {
  1629. float:right;width:80%;
  1630. }
  1631. .box_description_group_content {
  1632. float:right;
  1633. width:80%;
  1634. margin-top:5px;
  1635. /* height:45px;*/
  1636. font-family:Verdana, Geneva, sans-serif;
  1637. font-size:12px;
  1638. color:#666666;
  1639. }
  1640. .box_description_group_actions {
  1641. float:right;
  1642. width:80%;
  1643. text-align:right;
  1644. margin-top:4px;
  1645. margin-right:4px;
  1646. }
  1647. #menu-wrapper {
  1648. width:200px;
  1649. float: right;
  1650. }
  1651. #menu {
  1652. /* -moz-border-radius: 10px; border: 1px solid #e1e1e0;
  1653. -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
  1654. -opera-border-radius: 10px; border: 1px solid #e1e1e0;
  1655. margin-top:20px;
  1656. margin-right:10px;
  1657. margin-bottom:40px;
  1658. padding-left:10px;
  1659. padding-right:10px;
  1660. padding-top:5px;
  1661. padding-bottom:30px;
  1662. width:240px; */
  1663. float: right;
  1664. min-height: 150px;
  1665. }
  1666. /* INVITATIONS */
  1667. .invitation_confirm {
  1668. border-top:1px solid #D8DFEA;
  1669. }
  1670. .invitation_image {
  1671. width:110px;
  1672. }
  1673. /* DASHBOARD */
  1674. /* Head section */
  1675. #head {
  1676. background-color: #000;
  1677. height: 100px;
  1678. }
  1679. #head h1 {
  1680. line-height: 100px;
  1681. color: #FFF;
  1682. text-align: center;
  1683. text-indent: -9999em
  1684. }
  1685. /* End Head Section */
  1686. /* Columns section */
  1687. #columns .column {
  1688. float: left;
  1689. width: 50%;
  1690. /* Min-height: */
  1691. min-height: 400px;
  1692. height: auto !important;
  1693. height: 400px;
  1694. }
  1695. #columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
  1696. /* To add in 1.8.7*/
  1697. .session_box_title span {
  1698. font-size: 130%;
  1699. font-weight: bold;
  1700. }
  1701. .sub_session_box_title span {
  1702. font-size: 130%;
  1703. font-weight: bold;
  1704. }
  1705. #session_category_title {
  1706. font-size: 140%;
  1707. font-weight: bold;
  1708. padding: 2px 0px 5px 5px;
  1709. }
  1710. /* fixes the * */
  1711. span.form_required {
  1712. padding-right:5px;
  1713. }
  1714. .userportal-course-item {
  1715. -webkit-border-radius: 10px;
  1716. -moz-border-radius: 10px;
  1717. border-radius: 10px;
  1718. background-color:#F9F9F9;
  1719. padding:5px 10px 5px 10px;
  1720. height:40px;
  1721. margin:5px;
  1722. }
  1723. .userportal-course-item-title {
  1724. font-size:135%;
  1725. }
  1726. .courseadminview-activity-3col, .platformadminview-activity-3col {
  1727. -moz-border-radius:5px 5px 5px 5px;
  1728. border:1px solid #E1E1E0;
  1729. float:left;
  1730. margin:0px 20px 10px 2px;
  1731. padding:11px;
  1732. width:220px;
  1733. height:330px;
  1734. }
  1735. .courseadminview-activity-3col ul {
  1736. padding:0px 20px 10px 4px;
  1737. list-style-type:none;
  1738. height:240px;
  1739. margin-left:0px;
  1740. margin: 0px 0px 0px 0px ;
  1741. }
  1742. .courseadminview-activity-3col ul li {
  1743. padding:4px 0px 4px 0px;
  1744. }
  1745. #activity-3col {
  1746. width: 800px ;
  1747. margin-left: auto ;
  1748. margin-right: auto ;
  1749. }
  1750. .userportal-catalog-item {
  1751. -webkit-border-radius: 10px;
  1752. -moz-border-radius: 10px;
  1753. border-radius: 10px;
  1754. background-color:#F9F9F9;
  1755. padding:5px 10px 10px 6px;
  1756. /* height:40px; */
  1757. }
  1758. .userportal-catalog-item .catalog_box li span {
  1759. font-size:130%;
  1760. font-weight:bold;
  1761. margin-left:5px;
  1762. }
  1763. .catalog_box {
  1764. border: 1px solid #DCE5F3;
  1765. /* font-weight: bold; */
  1766. color: #666;
  1767. list-style-type: none;
  1768. margin:5px 5px 10px 5px;
  1769. padding: 5px;
  1770. background-color:#FFF;
  1771. -webkit-border-radius: 10px;
  1772. -moz-border-radius: 10px;
  1773. border-radius: 10px;
  1774. }
  1775. .course-student-view-activity-3col {
  1776. -webkit-border-radius: 10px;
  1777. -moz-border-radius: 10px;
  1778. border-radius: 10px;
  1779. background-color:#FFFFFF;
  1780. height: 350px;
  1781. width: 800px ;
  1782. margin-left: auto ;
  1783. margin-right: auto ;
  1784. }
  1785. .course-student-view-activity-3col ul {
  1786. padding:10px 20px 10px 20px;
  1787. list-style-type:none;
  1788. /* height:240px; */
  1789. margin-left:0px;
  1790. margin: 0px 0px 0px 0px ;
  1791. float:left;
  1792. width : 280px;
  1793. }
  1794. .course-student-view-activity-3col ul li {
  1795. padding:5px 0px 4px 0px;
  1796. /* float:left;
  1797. width : 380px; */
  1798. }
  1799. /* plugins divs */
  1800. #plugin-header {
  1801. margin-left:65px;
  1802. padding:5px;
  1803. }
  1804. #plugin-mycourses_menu {
  1805. padding:5px;
  1806. }
  1807. #plugin-mycourses_main {
  1808. padding:5px;
  1809. }
  1810. #plugin-footer {
  1811. padding:5px;
  1812. }
  1813. /* New forum table */
  1814. .forum_table_title {
  1815. border-collapse: collapse;
  1816. width: 100%;
  1817. padding: 5px;
  1818. border-left: 1px solid gray;
  1819. border-top: 1px solid gray;
  1820. border-right: 1px solid gray;
  1821. padding:5px;
  1822. }
  1823. .forum_table_title th {
  1824. padding-right: 12px;
  1825. /*border: 1px solid gray;*/
  1826. background-color: #E5EDF9;
  1827. }
  1828. .forum_table {
  1829. border-collapse: collapse;
  1830. width: 100%;
  1831. padding: 5px;
  1832. border: 1px solid gray;
  1833. margin-bottom:15px;
  1834. }
  1835. .forum_table .forum_head{
  1836. padding:5px;
  1837. text-align: left;
  1838. font-size:14px;
  1839. }
  1840. .forum_table th {
  1841. padding-right: 12px;
  1842. /*border: 1px solid gray;*/
  1843. background-color: #E5EDF9;
  1844. }
  1845. .forum_table tr.row_odd {
  1846. background-color: #F2F2F2;
  1847. }
  1848. .forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
  1849. background-color: #E5EDF9;
  1850. }
  1851. .forum_table tr.row_even {
  1852. background-color: #fff;
  1853. }
  1854. .forum_table td {
  1855. padding: 5px;
  1856. vertical-align: top;
  1857. border-bottom: 1px solid #b0b0b0;
  1858. border-right: 1px dotted #e1e1e1;
  1859. border-left: 1px dotted #e1e1e1;
  1860. }
  1861. .post {
  1862. border: 1px solid gray;
  1863. margin-bottom:5px;
  1864. }
  1865. /* Text resize icons in header */
  1866. .resize_font { /* the canvas */
  1867. margin: 0 5px 0 5px;
  1868. }
  1869. .reset_font {
  1870. font-size: 1.2em;
  1871. color: gray;
  1872. border: 1px solid white;
  1873. padding: 2px;
  1874. }
  1875. .reset_font:hover {
  1876. border: 1px solid black;
  1877. cursor: pointer;
  1878. }
  1879. .increase_font {
  1880. font-size: 1.8em;
  1881. color: gray;
  1882. border: 1px solid white;
  1883. padding: 2px;
  1884. }
  1885. .increase_font:hover {
  1886. border: 1px solid black;
  1887. cursor: pointer;
  1888. }
  1889. .decrease_font {
  1890. font-size: 0.6em;
  1891. color: gray;
  1892. border: 1px solid white;
  1893. padding: 2px;
  1894. }
  1895. .decrease_font:hover {
  1896. border: 1px solid black;
  1897. cursor: pointer;
  1898. }
  1899. .online_grid_item {
  1900. float:left;
  1901. margin:10px;
  1902. text-align:center;
  1903. }
  1904. .online_grid_element_0 {
  1905. width: 100px;
  1906. height: 100px;
  1907. overflow: hidden;
  1908. }
  1909. /* input values to crop the image: top, right, bottom, left */
  1910. .online_grid_element_0 img{
  1911. width: 200px;
  1912. margin: -10px 0 0 -50px;
  1913. /* height: 150px; */
  1914. }
  1915. .online_grid_element_1, .online_grid_element_2 {
  1916. font-size:10px;
  1917. }
  1918. /* tips Abbr-plugin for FCKeditor */
  1919. abbr {
  1920. border-bottom: 1px dotted rgb(102, 102, 102);
  1921. background-color:#F00;
  1922. cursor: help;
  1923. }