default.css 38 KB

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