base_chamilo.css 41 KB

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