base_chamilo.css 47 KB

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