default.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724
  1. /*****************************************************
  2. * MAIN *
  3. *****************************************************/
  4. /* Adding default generic style for non chamilo_X themes */
  5. @import url('../base.css');
  6. /* Redefining html styles */
  7. body {
  8. /* hack ignored by non-IE to enable ie to support :hover on button */
  9. behavior:url("/main/css/csshover3.htc");
  10. font-family: arial, verdana, helvetica, sans-serif;
  11. font-size: 12px;
  12. color: #000;
  13. margin: 0;
  14. padding: 0;
  15. background-color: #fff;
  16. }
  17. /*
  18. -----------------------------------------------------------------------------
  19. Side-Menu Slider (JQuery) see banner.inc.php
  20. -----------------------------------------------------------------------------
  21. */
  22. ul#navigation {
  23. position: fixed;
  24. margin: 0px;
  25. padding: 0px;
  26. top: 10px;
  27. right: -10px;
  28. list-style: none;
  29. z-index:9999;
  30. }
  31. ul#navigation li {
  32. width: 73px;
  33. }
  34. ul#navigation li a {
  35. display: block;
  36. margin-left: 1px;
  37. width: 65px;
  38. height: 60px;
  39. background-color:#CFCFCF;
  40. background-repeat:no-repeat;
  41. background-position:center center;
  42. border:1px solid #AFAFAF;
  43. -moz-border-radius:10px 0px 0px 10px;
  44. -webkit-border-bottom-right-radius: 10px;
  45. -webkit-border-top-right-radius: 10x;
  46. -khtml-border-bottom-right-radius: 10px;
  47. -khtml-border-top-right-radius: 10px;
  48. -moz-box-shadow: 0px 4px 3px #000;
  49. opacity: 0.6;
  50. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  51. -webkit-box-shadow: 0px 4px 3px #000;
  52. }
  53. ul#navigation .help a {
  54. -moz-border-radius:8px 0 0 8px;
  55. -moz-box-shadow:0 2px 2px #000000;
  56. background-color:#879DAA;
  57. background-position:center center;
  58. background-repeat:no-repeat;
  59. border:1px solid #FFFFFF;
  60. display:block;
  61. height:44px;
  62. margin-left:1px;
  63. opacity:0.6;
  64. width:65px;
  65. padding: 6px 0 8px 6px;
  66. }
  67. ul#navigation .report a {
  68. -moz-border-radius:8px 0 0 8px;
  69. -moz-box-shadow:0 2px 2px #000000;
  70. background-color:#8fd400;
  71. background-position:center center;
  72. background-repeat:no-repeat;
  73. border:1px solid #FFFFFF;
  74. display:block;
  75. height:44px;
  76. margin-left:1px;
  77. opacity:0.6;
  78. width:65px;
  79. padding: 6px 0 8px 6px;
  80. }
  81. ul#navigation .student a {
  82. -moz-border-radius:8px 0 0 8px;
  83. -moz-box-shadow:0 2px 2px #000000;
  84. background-color:#b27651 ;
  85. background-position:center center;
  86. background-repeat:no-repeat;
  87. border:1px solid #FFFFFF;
  88. display:block;
  89. height:44px;
  90. margin-left:1px;
  91. opacity:0.6;
  92. width:65px;
  93. padding-bottom: 8px;
  94. }
  95. ul#navigation .user-online a {
  96. -moz-border-radius:8px 0 0 8px;
  97. -moz-box-shadow:0 2px 2px #000000;
  98. background-color:#ccbc67 ;
  99. background-position:center center;
  100. background-repeat:no-repeat;
  101. border:1px solid #FFFFFF;
  102. display:block;
  103. height:44px;
  104. margin-left:1px;
  105. opacity:0.6;
  106. width:65px;
  107. padding: 6px 0 8px 6px;
  108. }
  109. /* Other colors for other tabs in the earth tones */
  110. ul#navigation .user-connect a {
  111. -moz-border-radius:8px 0 0 8px;
  112. -moz-box-shadow:0 2px 2px #000000;
  113. background-color:#fac97a ;
  114. background-position:center center;
  115. background-repeat:no-repeat;
  116. border:1px solid #FFFFFF;
  117. display:block;
  118. height:44px;
  119. margin-left:1px;
  120. opacity:0.6;
  121. width:65px;
  122. padding: 6px 0 8px 6px;
  123. }
  124. ul#navigation .student-connect a {
  125. -moz-border-radius:8px 0 0 8px;
  126. -moz-box-shadow:0 2px 2px #000000;
  127. background-color:#d0d5d1 ;
  128. background-position:center center;
  129. background-repeat:no-repeat;
  130. border:1px solid #FFFFFF;
  131. display:block;
  132. height:44px;
  133. margin-left:1px;
  134. opacity:0.6;
  135. width:65px;
  136. padding: 6px 0 8px 6px;
  137. }
  138. /* for content section in main index.php file */
  139. .maincontent {
  140. float: left;
  141. width: 78%;
  142. padding: 4px;
  143. background-color: #fff;
  144. }
  145. #center {
  146. margin: 0 190px 0 0;
  147. padding: 10px 0 40px 0;
  148. min-height: 300px;
  149. }
  150. .invisible {
  151. color: #999;
  152. }
  153. .invisible a:link, .invisible a:visited {
  154. color: #999;
  155. }
  156. a.invisible:link, a.invisible:visited {
  157. color: #999;
  158. }
  159. .clear {
  160. clear: both;
  161. line-height:0px;
  162. height: 0;
  163. }
  164. /*
  165. -----------------------------------------------------------------------------
  166. Menu Slide JQuery
  167. -----------------------------------------------------------------------------
  168. */
  169. ul#navigation {
  170. position: fixed;
  171. margin: 0px;
  172. padding: 0px;
  173. top: 110px;
  174. right: -10px;
  175. list-style: none;
  176. z-index:9999;
  177. }
  178. ul#navigation li {
  179. width: 73px;
  180. }
  181. ul#navigation li a {
  182. display: block;
  183. margin-left: 1px;
  184. width: 65px;
  185. height: 60px;
  186. background-color:#CFCFCF;
  187. background-repeat:no-repeat;
  188. background-position:center center;
  189. border:1px solid #AFAFAF;
  190. -moz-border-radius:10px 0px 0px 10px;
  191. -webkit-border-bottom-right-radius: 10px;
  192. -webkit-border-top-right-radius: 10x;
  193. -khtml-border-bottom-right-radius: 10px;
  194. -khtml-border-top-right-radius: 10px;
  195. -moz-box-shadow: 0px 4px 3px #000;
  196. opacity: 0.6;
  197. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  198. -webkit-box-shadow: 0px 4px 3px #000;
  199. }
  200. ul#navigation .help a{
  201. background-image: url(images/help2.png);
  202. }
  203. /*****************************************************
  204. * REDEFINED HTML TAGS *
  205. *****************************************************/
  206. img {
  207. border: none;
  208. }
  209. p, blockquote, ol, ul {
  210. }
  211. h1 {
  212. font-size: 21px;
  213. }
  214. h2 {
  215. font-size: 18px;
  216. }
  217. h3 {
  218. font-size: 15px;
  219. margin-top:0px;
  220. padding-top:0px;
  221. }
  222. h4 {
  223. font-size: 12px;
  224. }
  225. h5, h6 {
  226. }
  227. /* the following for regular <a> elements */
  228. a {
  229. text-decoration: none;
  230. font-weight : bold;
  231. color : #5b975b;
  232. }
  233. a:visited {
  234. text-decoration: none;
  235. font-weight : bold;
  236. }
  237. a:hover {
  238. text-decoration: none;
  239. color: #a8a7a7;
  240. font-weight: bold;
  241. }
  242. a:active {
  243. text-decoration: none;
  244. font-weight : bold;
  245. color : #5b975b;
  246. }
  247. /* form elements */
  248. select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
  249. cursor: pointer;
  250. }
  251. input[text] {
  252. }
  253. input.link_alike {
  254. background-color: #FFFFFF;
  255. border-width: 0px;
  256. color: #4171b5;
  257. font-weight: bold;
  258. text-align: left;
  259. padding: 0px;
  260. margin: 0px;
  261. }
  262. input.link_alike:hover {
  263. background-color: #FFFFFF;
  264. border-width: 0px;
  265. color: #FF0000;
  266. font-weight: bold;
  267. text-align: left;
  268. padding: 0px;
  269. margin: 0px;
  270. }
  271. input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  272. background-image:url(images/shadow.gif);
  273. }
  274. /* user_portal course status icon */
  275. .coursestatusicons {
  276. border: 0px solid #000;
  277. float: left;
  278. padding-right: 5px;
  279. width: auto;
  280. }
  281. /* user_portal course list */
  282. .courses {
  283. list-style-type: none;
  284. margin-bottom: 5px;
  285. height: 30px;
  286. }
  287. /* user_portal session list */
  288. .session_course_item .courses {
  289. margin-bottom: 5px;
  290. height:35px;
  291. }
  292. .session_course_item {
  293. /* padding: 0px; */
  294. margin: 0px;
  295. font-size:135%;
  296. }
  297. .session_course_item .item_closed, .userportal-course-item-title .item_closed {
  298. font-size:80%;
  299. }
  300. /*****************************************************
  301. * HEADER STYLES *
  302. *****************************************************/
  303. #header {
  304. width: 100%;
  305. padding: 0;
  306. margin: 0;
  307. }
  308. /********************************************************
  309. * HEADER 1: Title, portal, organisation, course title *
  310. ********************************************************/
  311. #header1 {
  312. padding: 4px;
  313. color: #5b975b;
  314. }
  315. #header1 a {
  316. color: #636363;
  317. text-decoration: none;
  318. }
  319. #header1 a:hover {
  320. text-decoration: underline;
  321. }
  322. #sitename {
  323. margin: 0;
  324. font-weight: bold;
  325. }
  326. #institution {
  327. float: left;
  328. }
  329. /*****************************************************
  330. * HEADER 3: TABS OF THE HEADER *
  331. *****************************************************/
  332. .subnav .navbar-inner {
  333. background-color: #4C4C4C; /* Old browsers */
  334. background-repeat: repeat-x; /* Repeat the gradient */
  335. background-image: -moz-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* FF3.6+ */
  336. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
  337. background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
  338. background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
  339. background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
  340. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
  341. background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
  342. }
  343. .subnav .nav > li > a {
  344. color:white;
  345. }
  346. .subnav #current a {
  347. background-color: #5B975B; /* Old browsers */
  348. background-repeat: repeat-x; /* Repeat the gradient */
  349. background-image: -moz-linear-gradient(top, #5B975B 0%, #8FBB8F 100%); /* FF3.6+ */
  350. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5B975B), color-stop(100%,#8FBB8F)); /* Chrome,Safari4+ */
  351. background-image: -webkit-linear-gradient(top, #5B975B 0%, #8FBB8F 100%); /* Chrome 10+,Safari 5.1+ */
  352. background-image: -ms-linear-gradient(top, #5B975B 0%,#8FBB8F 100%); /* IE10+ */
  353. background-image: -o-linear-gradient(top, #5B975B 0%,#8FBB8F 100%); /* Opera 11.10+ */
  354. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5B975B', endColorstr='#8FBB8F',GradientType=0 ); /* IE6-9 */
  355. background-image: linear-gradient(top, #5B975B 0%, #8FBB8F 100%); /* W3C */
  356. }
  357. .subnav .nav > #current > a, .subnav .nav > #current > a:hover {
  358. color: white;
  359. }
  360. .subnav a:hover {
  361. color: #a8a7a7;
  362. }
  363. .subnav .nav > li > a {
  364. border-left: none;
  365. border-right: none;
  366. }
  367. .subnav .clear {
  368. display: none;
  369. }
  370. /*****************************************************
  371. * HEADER 4
  372. *****************************************************/
  373. #header4 {
  374. background-color: #fff;
  375. color: #fff;
  376. margin-bottom: 2px;
  377. width:100%;
  378. }
  379. #header4 a:hover {
  380. text-decoration: none;
  381. color: #a8a7a7;
  382. }
  383. /* The tool shortcuts */
  384. #toolshortcuts {
  385. text-align: right;
  386. clear: right;
  387. margin-left: auto;
  388. margin-right: auto;
  389. width: 98%;
  390. }
  391. /*****************************************************
  392. * FOOTER STYLES *
  393. *****************************************************/
  394. footer {
  395. background-color: #434343;
  396. background-image: url(images/tab-repeat.png);
  397. background-repeat:repeat-x;
  398. font-size: 12px;
  399. color:#ffffff;
  400. min-height: 50px;
  401. overflow:hidden;
  402. width: 100%;
  403. }
  404. footer a:link, footer a:visited {
  405. color:#fff;
  406. }
  407. .push {
  408. height: 3em; /* Very important */
  409. }
  410. #centerwrap {
  411. float: left;
  412. width: 100%;
  413. margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
  414. it's empty otherwise. The difference is made up by putting a
  415. negative left margin on the left float:
  416. Note IE/Mac doesn't like this method ~ it wants the 100% so it can
  417. be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
  418. */
  419. }
  420. #center {
  421. margin: 0 190px 0 0;
  422. padding: 10px 0 40px 0;
  423. min-height: 300px;
  424. }
  425. #toolnav {
  426. float:right;
  427. margin:-7px 0 0 -5%;
  428. overflow:hidden;
  429. padding:0;
  430. width:180px;
  431. }
  432. /* Hide from IE5-mac. Only IE-win sees this. \*/
  433. * html #toolnav {
  434. margin-right: 0px;
  435. }
  436. * html #center {
  437. height: 1%;
  438. margin-left: 0;
  439. }
  440. /* End hide from IE5/mac */
  441. /* --- course navigation menu as a definition list --- */
  442. #swap_menu_link {
  443. float: left;
  444. }
  445. #toolnavbox {
  446. margin: 0 0 0 10px;
  447. padding: 0;
  448. float: left;
  449. border: 1px solid #4271b5;
  450. }
  451. #toolnavbox dl {
  452. width: 160px;
  453. margin: 0 auto;
  454. padding: 0;
  455. background: transparent;
  456. text-align: center;
  457. }
  458. #toolnavbox dt {
  459. margin: 0;
  460. padding: 0;
  461. font-weight: bold;
  462. text-align: center;
  463. color: #000;
  464. border-bottom: 1px solid #fff;
  465. background: transparent;
  466. }
  467. #toolnavbox dd {
  468. margin: 0;
  469. padding: 0;
  470. color: #009;
  471. text-align: left;
  472. border-bottom:1px solid #fff;
  473. background: #E5EDF9;
  474. }
  475. #toolnav img {
  476. float: left;
  477. width: 25px;
  478. height: 25px;
  479. margin: 0 4px 0 0;
  480. }
  481. #toolnavlist a, #toolnavlist a:link {
  482. background: #E5EDF9;
  483. color: #4171b5;
  484. padding: 5px 5px 5px 10px;
  485. margin: 0;
  486. text-decoration: none;
  487. display: block;
  488. line-height:24px;
  489. }
  490. #toolnavlist a:hover {
  491. background: #fff;
  492. color:#4171b5;
  493. }
  494. #toolnavlist a#here {
  495. background: #fff;
  496. color:#4171b5;
  497. }
  498. /* --- end of course navigation menu section --- */
  499. /*
  500. this lets the navigation menu appear to the left:
  501. #center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
  502. min-height: 300px; }
  503. #toolnav { float: left; width: 180px; padding: 20px 0 0 0;
  504. margin-left: -5%;
  505. }
  506. #toolnav { float: right; width: 180px; padding: 0; margin: 0;
  507. margin-left: -5%; /* the difference to make the left colum appear flush left
  508. }*/
  509. /* LOGIN AND LANGUAGE FORM */
  510. #lang_form {
  511. text-align: left;
  512. margin: 2px 0 10px 0;
  513. padding: 2px;
  514. }
  515. #lang_form input, #lang_form select {
  516. }
  517. #formLogin label {
  518. margin: 4px 6px;
  519. }
  520. #formLogin input {
  521. margin: 4px 6px;
  522. }
  523. #login_fail {
  524. margin: 0 6px 6px 6px;
  525. padding: 4px;
  526. border: 1px solid #f00;
  527. background-color: #fff;
  528. color: #f00;
  529. }
  530. input.mainoption {
  531. font-weight : bold;
  532. }
  533. input.liteoption {
  534. font-weight : normal;
  535. }
  536. /*****************************************************
  537. * COURSE HOMEPAGE *
  538. *****************************************************/
  539. /* various sections in course-home.php file */
  540. #toolremove {
  541. width: 40%;
  542. color: #f00;
  543. font-weight: bold;
  544. margin: 10px auto;
  545. padding: 10px;
  546. border: 2px solid #f00;
  547. }
  548. #courseintro {
  549. clear: both;
  550. width: 80%;
  551. margin: 10px auto;
  552. padding: 10px;
  553. border-bottom: 1px solid #636363;
  554. }
  555. #courseintro_icons {
  556. clear: both;
  557. width: 80%;
  558. margin: 10px auto;
  559. }
  560. .everybodyview {
  561. position: relative; /* to avoid the IE peekabo bug ?*/
  562. width: 80%;
  563. margin: 10px auto;
  564. padding: 10px;
  565. }
  566. .Authoringview, .courseadminview, .platformadminview {
  567. position: relative;
  568. width: 80%;
  569. margin: 25px auto 10px;
  570. padding: 10px;
  571. border: 1px solid #636363;
  572. }
  573. .viewcaption {
  574. position: relative;
  575. top: -20px;
  576. font-weight: bold;
  577. color: #636363;
  578. background-color: #fff;
  579. padding: 0 4px;
  580. }
  581. /*****************************************************
  582. * AGENDA *
  583. *****************************************************/
  584. #agenda {
  585. width: 100%;
  586. margin: 0 auto;
  587. border: 1px solid #bbb;
  588. border-collapse: collapse;
  589. }
  590. .agenda_month_divider {
  591. background-color: #dcdcdc;
  592. font-weight: bold;
  593. color: #666;
  594. text-align: center;
  595. }
  596. #agenda .title a {
  597. color: #fff;
  598. }
  599. #agenda .agendaitem {
  600. }
  601. #smallcalendar .title {
  602. background-color: #dcdcdc;
  603. font-weight: bold;
  604. padding: 2px;
  605. color: #666;
  606. text-align: center;
  607. font-size: 11px;
  608. }
  609. #smallcalendar .title a {
  610. color: #666;
  611. }
  612. #agenda_select {
  613. list-style: none;
  614. border: 0px solid green;
  615. margin: 30px 0 0 0;
  616. padding: 0 0 0 10px;
  617. }
  618. /* ---------------------------------------------------
  619. styles for the agenda (day, week, month view)
  620. -----------------------------------------------------*/
  621. #agenda_list {
  622. width: 100%;
  623. margin: 0 auto;
  624. border: 1px solid #fff;
  625. border-collapse: collapse;
  626. }
  627. /*The caption of the calendar (displays the month and the << and >> links*/
  628. #agenda_list .title {
  629. background-color: #dcdcdc;
  630. font-weight: bold;
  631. color: #666;
  632. text-align: left;
  633. padding: 2px 10px;
  634. text-align: center;
  635. border: 1px solid #bbb;
  636. }
  637. #agenda_list .title a:link, #agenda_list #title a:visited {
  638. background-color: #dcdcdc;
  639. font-weight: bold;
  640. font-size: 11px;
  641. color: #666;
  642. padding: 2px 10px;
  643. text-align: center;
  644. }
  645. #agenda_list .title a:hover {
  646. background-color: #dcdcdc;
  647. font-weight: bold;
  648. font-size: 11px;
  649. color: #f3840d;
  650. padding: 2px 10px;
  651. text-align: center;
  652. }
  653. /* The cells with the name of the days of the weeks (mon->sun)*/
  654. #agenda_list .weekdays {
  655. background-color: #dcdcdc;
  656. text-align: center;
  657. font-weight: bold;
  658. border: 1px solid #264269;
  659. border-collapse: collapse;
  660. }
  661. /* The cells for the days (1->31) */
  662. #agenda_list .days_week {
  663. height: 40px;
  664. width: 12%;
  665. text-align: left;
  666. vertical-align: top;
  667. border: 1px solid #ccc;
  668. border-collapse: collapse;
  669. background-color: #f5f5f5;
  670. }
  671. #agenda_list .days_weekend {
  672. height: 40px;
  673. width: 12%;
  674. text-align: left;
  675. vertical-align: top;
  676. border: 1px solid #ccc;
  677. border-collapse: collapse;
  678. background-color: #e6e6e6;
  679. }
  680. #agenda_list .days_today {
  681. height: 40px;
  682. width: 12%;
  683. text-align: left;
  684. vertical-align: top;
  685. border: 1px solid #ccc;
  686. border-collapse: collapse;
  687. background-color: #FFFFC0;
  688. }
  689. #agenda_list th {
  690. background-color:#E5EDF9;
  691. border:1px solid gray;
  692. padding-right:12px;
  693. }
  694. /* text in the cells: display of agenda items (visible)*/
  695. #agenda_list .data {
  696. background-color: #eee;
  697. text-align: left;
  698. padding: 2px 10px;
  699. font-weight: bold;
  700. border: 0px solid #dcdcdc;
  701. border-collapse: collapse;
  702. }
  703. #agenda_list .datanotbold {
  704. background-color: #eee;
  705. text-align: left;
  706. padding: 2px 10px;
  707. font-weight: normal;
  708. border: 0px solid #dcdcdc;
  709. border-collapse: collapse;
  710. }
  711. #agenda_list .text {
  712. background-color: #fff;
  713. text-align: left;
  714. padding: 2px 10px;
  715. font-weight: normal;
  716. border: 0px solid #dcdcdc;
  717. border-collapse: collapse;
  718. }
  719. /*text in the cells: display of agenda items (invisible)*/
  720. #agenda_list .data_hidden {
  721. background-color: #eee;
  722. text-align: left;
  723. padding: 2px 10px;
  724. font-weight: bold;
  725. border: 0px solid #dcdcdc;
  726. border-collapse: collapse;
  727. color: #999999;
  728. }
  729. #agenda_list .datanotbold_hidden {
  730. background-color: #eee;
  731. text-align: left;
  732. padding: 2px 10px;
  733. font-weight: normal;
  734. border: 0px solid #dcdcdc;
  735. border-collapse: collapse;
  736. color: #999999;
  737. }
  738. #agenda_list .text_hidden {
  739. background-color: #fff;
  740. text-align: left;
  741. padding: 2px 10px;
  742. font-weight: normal;
  743. border: 0px solid #dcdcdc;
  744. border-collapse: collapse;
  745. color: #999999;
  746. }
  747. /*text in the cells: display of agenda items (highlighted)*/
  748. #agenda_list .datanow {
  749. background-color: #FFCC00;
  750. text-align: left;
  751. padding: 2px 10px;
  752. font-weight: bold;
  753. border: 0px solid #dcdcdc;
  754. border-collapse: collapse;
  755. }
  756. #agenda_list .datanotboldnow {
  757. background-color: #FFCC00;
  758. text-align: left;
  759. padding: 2px 10px;
  760. font-weight: normal;
  761. border: 0px solid #dcdcdc;
  762. border-collapse: collapse;
  763. }
  764. #agenda_list .textnow {
  765. background-color: #fff;
  766. text-align: left;
  767. padding: 2px 10px;
  768. font-weight: normal;
  769. border: 0px solid #dcdcdc;
  770. border-collapse: collapse;
  771. }
  772. /* ---------------------------------------------------
  773. styles for the mini agenda
  774. -----------------------------------------------------*/
  775. #smallcalendar {
  776. width: 100%;
  777. margin: 0 auto;
  778. border: 1px solid #fff;
  779. border-collapse: collapse;
  780. }
  781. #smallcalendar .weekdays {
  782. background-color: #dcdcdc;
  783. text-align: center;
  784. font-size: 11px;
  785. font-weight: bold;
  786. border: 1px solid #fff;
  787. border-collapse: collapse;
  788. }
  789. #smallcalendar .days_week {
  790. background-color: #f5f5f5;
  791. text-align: center;
  792. font-size: 11px;
  793. border-collapse: collapse;
  794. }
  795. #smallcalendar .days_weekend {
  796. background-color: #e6e6e6;
  797. text-align: center;
  798. font-size: 11px;
  799. border: 1px solid #fff;
  800. border-collapse: collapse;
  801. }
  802. #smallcalendar .days_today {
  803. width: 12%;
  804. text-align: center;
  805. font-size: 11px;
  806. border: 1px solid #FA8500;
  807. border-collapse: collapse;
  808. background-color: #FFCA8D;
  809. }
  810. /* ---------------------------------------------------
  811. styles for the personal agenda
  812. -----------------------------------------------------*/
  813. .personal_agenda {
  814. color: #008000;
  815. }
  816. .personal_agenda a:link, .personal_agenda a:visited {
  817. color: #008000;
  818. }
  819. a.personal_agenda:link, a.personal_agenda:visited {
  820. color: #008000;
  821. }
  822. .personal_agenda a:hover, .personal_agenda a:hover {
  823. color: #666666;
  824. }
  825. a.personal_agenda:hover, a.personal_agenda:hover {
  826. color: #666666;
  827. }
  828. /*****************************************************
  829. * DISPLAY MESSAGES *
  830. *****************************************************/
  831. /* normal and erro message-box */
  832. .normal-message {
  833. border: 1px solid #5b975b;
  834. color: #5b975b;
  835. background-color: #EFEFEF;
  836. }
  837. .warning-message {
  838. border: 1px solid #FF6600;
  839. color: #666666;
  840. background-color: #FFCD82;
  841. }
  842. .confirmation-message {
  843. border: 1px solid #1F8323;
  844. color: #1F8323;
  845. background-color: #EFEFEF;
  846. }
  847. .error-message {
  848. border: 1px solid #FF0000;
  849. color: #FF0000;
  850. background-color: #EFEFEF;
  851. }
  852. /* New training */
  853. .bottom-link {
  854. background-image:url(images/button_back.jpg);
  855. }
  856. /**********************************************
  857. * DOCUMENT MODULE *
  858. **********************************************/
  859. /* styles from the document.php file */
  860. .comment {
  861. margin-left: 30px;
  862. }
  863. /* styles from the upload.php file */
  864. dl.upload_option {
  865. margin: 1em 0;
  866. padding: 0;
  867. }
  868. .upload_option dt {
  869. font-weight:bold;
  870. margin:0;
  871. }
  872. .upload_option dd {
  873. margin:0;
  874. }
  875. .document_owner {
  876. text-align: right;
  877. }
  878. /**********************************************
  879. * DROPBOX MODULE *
  880. **********************************************/
  881. /* styles from dropbox.php file */
  882. .dropbox_detail {
  883. font-size: small
  884. }
  885. .dropbox_date {
  886. color: #737780;
  887. font-style: italic;
  888. font-weight: normal;
  889. }
  890. .dropbox_person {
  891. font-weight: bold
  892. }
  893. .dropbox_listTitle {
  894. color: #000000;
  895. }
  896. .dropbox_feedback {
  897. font-size: x-small;
  898. height: 50px;
  899. width: 200px;
  900. overflow: auto
  901. }
  902. .dropbox_feedbacks {
  903. height: 250px;
  904. width: 100%;
  905. overflow: auto
  906. }
  907. /**********************************************
  908. * CHAT MODULE *
  909. **********************************************/
  910. /* styles for chat / conference tools */
  911. #chat_entermessage {
  912. background-color: #D6E5FA;
  913. border-top: 1px solid #4171B5;
  914. padding: 5px;
  915. margin: 0;
  916. }
  917. /* the following for the grayed out elements */
  918. a.nobold:link, a.nobold:visited, a.nobold:active {
  919. font-weight: normal;
  920. color: #999;
  921. margin: 0 0 0 25px;
  922. }
  923. a.nobold:hover {
  924. font-weight: normal;
  925. color: #999;
  926. text-decoration: underline;
  927. margin: 0 0 0 25px;
  928. }
  929. .note {
  930. margin: 6px;
  931. line-height: 14px;
  932. background-color: #FFF089;
  933. color: #4171B5;
  934. border: 1px solid #4171B5;
  935. padding: 4px;
  936. }
  937. .alternativeBgLight {
  938. background-color: #f5f5f5;
  939. border: 1px solid #4171B5;
  940. border-collapse: collapse;
  941. }
  942. .alternativeBgDark {
  943. background-color: #ccf;
  944. border: 1px solid #4171B5;
  945. border-collapse: collapse;
  946. }
  947. .myagendatoday {
  948. background-color: #FFCA8D;
  949. border-collapse: collapse;
  950. color: #CC3300;
  951. font-weight: bold;
  952. }
  953. /*****************************************************
  954. * FORM STYLES *
  955. *****************************************************/
  956. div.row {
  957. clear: both;
  958. padding-top: 8px;
  959. }
  960. div.row div.form_header {
  961. white-space: nowrap;
  962. padding: 2px;
  963. border: 1px solid #636363;
  964. background-image: url(images/tab-repeat.png);
  965. background-position:bottom;
  966. color: #FFFFFF;
  967. font-weight: bold;
  968. }
  969. span.form_required {
  970. color: #f00;
  971. }
  972. span.form_error {
  973. color: #f00;
  974. font-size: x-small;
  975. margin: 2px;
  976. }
  977. /*****************************************************
  978. * DATA TABLE STYLES *
  979. *****************************************************/
  980. .cell_header {
  981. background-color: #EEEEFF;
  982. font-weight:bold;
  983. text-align:left;
  984. padding-left:5px;
  985. } /* header cell in data table in tools */
  986. .data_table {
  987. border-collapse: collapse;
  988. width: 100%;
  989. padding: 5px;
  990. margin-top: 5px;
  991. margin-bottom: 5px;
  992. }
  993. .data_table th {
  994. padding-right: 20px;
  995. border: 1px solid #636363;
  996. background-color: #5b975b;
  997. color: #FFF;
  998. }
  999. .data_table th a {
  1000. color: #fff;
  1001. }
  1002. .data_table th a:hover {
  1003. color: #a8a7a7;
  1004. }
  1005. .data_table tr.row_odd {
  1006. background-color: #fafafa;
  1007. }
  1008. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  1009. background-color: #f0f0f0;
  1010. }
  1011. .data_table tr.row_even {
  1012. background-color: #fff;
  1013. }
  1014. .data_table td {
  1015. padding: 5px;
  1016. vertical-align: top;
  1017. border-bottom: 1px solid #b0b0b0;
  1018. border-right: 1px dotted #e1e1e1;
  1019. border-left: 1px dotted #e1e1e1;
  1020. }
  1021. .data_table td.border {
  1022. padding: 5px;
  1023. vertical-align: top;
  1024. border: 1px solid gray;
  1025. }
  1026. .data_table td.none {
  1027. padding: 5px;
  1028. vertical-align: top;
  1029. border-right:none;
  1030. border-bottom: none;
  1031. border-left:none;
  1032. }
  1033. .data_table td.redText {
  1034. color:red;
  1035. }
  1036. .data_table td.borderRight {
  1037. border-right:1px solid gray;
  1038. border-bottom: none;
  1039. border-left:none;
  1040. }
  1041. .data_table td.borderLeft {
  1042. border-left:1px solid gray;
  1043. border-bottom: none;
  1044. border-right:none;
  1045. }
  1046. .data_table td.noLink {
  1047. color: gray;
  1048. }
  1049. .data_table tr.tableName {
  1050. padding: 5px;
  1051. border: 1px solid gray;
  1052. background-color: #e6e6ff;
  1053. text-align:left;
  1054. }
  1055. .data_table tr.total {
  1056. padding: 5px;
  1057. border: 1px solid gray;
  1058. background-color: #ffffcc;
  1059. text-align:left;
  1060. }
  1061. .data_table th.head {
  1062. padding-right: 20px;
  1063. border: 1px solid gray;
  1064. background-color: #ffffcc;
  1065. }
  1066. .data_table_pagination {
  1067. width:100%;
  1068. margin-top: 8px;
  1069. }
  1070. /* admin page tool list definitions */
  1071. .tool_list dt {
  1072. font-weight: bold;
  1073. }
  1074. .tool_list dd {
  1075. margin: 0;
  1076. padding: 4px 0 0 10px;
  1077. }
  1078. .home_news {
  1079. width: 45%;
  1080. float: right;
  1081. position: relative;
  1082. margin: 0;
  1083. padding: 0px;
  1084. padding-top: 8px;
  1085. background: #fff;
  1086. }
  1087. label.left {
  1088. float: left;
  1089. width: 15em;
  1090. margin: 0 0 0.5em 0;
  1091. }
  1092. form br {
  1093. clear: both;
  1094. }
  1095. /* Fix for alignment problem in IE-Win browsers */
  1096. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1097. * html .label {
  1098. margin-right: 10px;
  1099. }
  1100. * html .data {
  1101. height: 1%;
  1102. margin-left: 0;
  1103. }
  1104. /* End hide from IE5/mac */
  1105. .radio, .checkbox {
  1106. margin: 0;
  1107. padding: 0;
  1108. border: none;
  1109. background-color: transparent;
  1110. }
  1111. .required {
  1112. color: #f00;
  1113. font-weight: bold;
  1114. }
  1115. /* Admin section */
  1116. div.admin_section {
  1117. width: 40%;
  1118. float: left;
  1119. padding: 5px;
  1120. margin: 10px 20px;
  1121. }
  1122. div.admin_section h4 {
  1123. margin: 0;
  1124. border-bottom: 1px solid gray;
  1125. width: 100%;
  1126. }
  1127. /* Admin section */
  1128. div.admin_section {
  1129. width: 40%;
  1130. float: left;
  1131. padding: 5px;
  1132. margin: 10px 20px;
  1133. }
  1134. div.admin_section h4 {
  1135. margin: 0;
  1136. border-bottom: 1px solid gray;
  1137. width: 100%;
  1138. }
  1139. .user_course_category {
  1140. background-color: #efefef;
  1141. border: 1px solid #666;
  1142. font-weight: bold;
  1143. color: #666;
  1144. list-style-type: none;
  1145. margin: 5px;
  1146. padding: 5px;
  1147. }
  1148. .sessions_list {
  1149. line-height: 20px;
  1150. margin-top: 20px;
  1151. }
  1152. .sessions_list_inactive {
  1153. line-height: 20px;
  1154. }
  1155. .session_box {
  1156. border: 1px solid #DCE5F3;
  1157. /* font-weight: bold; */
  1158. color: #666;
  1159. list-style-type: none;
  1160. margin:5px 5px 10px 5px;
  1161. padding: 5px;
  1162. background-color:#FFF;
  1163. -webkit-border-radius: 10px;
  1164. -moz-border-radius: 10px;
  1165. border-radius: 10px;
  1166. }
  1167. .sub_session_box {
  1168. border: 1px solid #DCE5F3;
  1169. /* font-weight: bold; */
  1170. color: #666;
  1171. list-style-type: none;
  1172. margin:5px 5px 10px 0px;
  1173. padding: 5px;
  1174. background-color:#FFF;
  1175. -webkit-border-radius: 10px;
  1176. -moz-border-radius: 10px;
  1177. border-radius: 10px;
  1178. }
  1179. .sub_session_box_title {
  1180. margin-bottom: 10px;
  1181. background-color:#F9F9F9;
  1182. }
  1183. .session_box_title {
  1184. margin-bottom: 10px;
  1185. background-color:#F9F9F9;
  1186. }
  1187. .session_course_item {
  1188. margin: 0px;
  1189. margin-bottom:20px;
  1190. }
  1191. .session_course_item .courses {
  1192. margin-bottom: 5px;
  1193. height:35px;
  1194. }
  1195. /***************************************************************
  1196. * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
  1197. ***************************************************************/
  1198. .sectiontitle {
  1199. background-color: #EFEFEF;
  1200. border: 1px solid #cccccc;
  1201. font-weight: bold;
  1202. color: #666666;
  1203. list-style-type: none;
  1204. padding: 5px;
  1205. font-size: 11px;
  1206. }
  1207. .sectioncomment {
  1208. color: #000000;
  1209. margin: 5px;
  1210. padding: 5px;
  1211. font-size: 11px;
  1212. }
  1213. .sectionvalue {
  1214. list-style-type: none;
  1215. margin: 5px;
  1216. padding: 5px;
  1217. }
  1218. /*****************************************************
  1219. * ANNOUNCEMENTS *
  1220. *****************************************************/
  1221. .announcements_datum {
  1222. font-style: italic;
  1223. color: #666666;
  1224. }
  1225. /*****************************************************
  1226. * SYSTEM ANNOUNCEMENTS *
  1227. *****************************************************/
  1228. div.system_announcement {
  1229. padding: 10px;
  1230. border: 1px solid #ddd;
  1231. -moz-border-radius-topright : 5px;
  1232. -moz-border-radius-topleft : 5px;
  1233. -moz-border-radius-bottomright : 5px;
  1234. -moz-border-radius-bottomleft : 5px;
  1235. min-height:20px;
  1236. }
  1237. .system_announcement {
  1238. background: #eee url('images/headertables.jpg') repeat-x top center;
  1239. font: bold 100% arial, sans-serif, sans;
  1240. }
  1241. .system_announcement_content {
  1242. font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
  1243. }
  1244. .system_announcements {
  1245. background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
  1246. padding-top: 10px;
  1247. padding-bottom: 10px;
  1248. width: 90%;
  1249. }
  1250. .system_announcements h3 {
  1251. }
  1252. .system_announcement_title {
  1253. font-weight: bold;
  1254. font-size: 120%;
  1255. float:left;
  1256. }
  1257. .system_announcement_date {
  1258. font-color: #ccc;
  1259. float:right;
  1260. }
  1261. /*****************************************************
  1262. * THE NEW FORUM *
  1263. *****************************************************/
  1264. /* **** FORUM CATEGORY **** */
  1265. .forum_category {
  1266. background-color: #0066CC;
  1267. color: #fff;
  1268. }
  1269. .forum_category a {
  1270. color: #fff;
  1271. }
  1272. .forum_category_header {
  1273. background-color: #0066CC;
  1274. color: #fff;
  1275. }
  1276. tr.forum_category_header a {
  1277. color: #fff;
  1278. }
  1279. /* **** FORUM **** */
  1280. .forum_header {
  1281. background-color: #EFEFEF;
  1282. }
  1283. /* **** THREAD **** */
  1284. .forum_threadheader {
  1285. color: #aaa;
  1286. background-color: #F7F7F7;
  1287. }
  1288. tr.forum_threadheader td {
  1289. }
  1290. .forum-thread-header {
  1291. color: #000000;
  1292. background-color: #F7F7F7;
  1293. border-left: 1px solid #aaa;
  1294. border-right: 1px solid #aaa;
  1295. border-bottom: 1px solid #aaa;
  1296. border-top: 1px solid #aaa;
  1297. }
  1298. .forum-thread-body {
  1299. color: #000000;
  1300. background-color: #FFFFFF;
  1301. border-left: 1px solid #aaa;
  1302. border-right: 1px solid #aaa;
  1303. border-bottom: 1px solid #aaa;
  1304. border-top: 1px solid #aaa;
  1305. }
  1306. /* **** POST **** */
  1307. .quote {
  1308. background-color: #EFEFEF;
  1309. }
  1310. .forum_message_left {
  1311. width: 150px;
  1312. vertical-align: top;
  1313. border-right: 1px solid #aaa;
  1314. background-color: #F7F7F7;
  1315. }
  1316. .forum_message_left_2_be_approved {
  1317. width: 150px;
  1318. vertical-align: top;
  1319. border-right: 1px solid #aaa;
  1320. background-color: #F7F7F7;
  1321. color: #999;
  1322. }
  1323. .forum_message_post_title {
  1324. font-weight: bold;
  1325. background-color: #F7F7F7;
  1326. height: 20px;
  1327. }
  1328. .forum_message_post_title_2_be_approved {
  1329. color: #999;
  1330. font-weight: bold;
  1331. background-color: #F7F7F7;
  1332. height: 20px;
  1333. }
  1334. .forum_message_post_text {
  1335. margin-bottom: 10px;
  1336. vertical-align: top;
  1337. }
  1338. .forum_message_post_text_2_be_approved {
  1339. color: #999;
  1340. margin-bottom: 10px;
  1341. vertical-align: top;
  1342. }
  1343. .current {
  1344. font-weight: bold;
  1345. }
  1346. .structure {
  1347. font-weight: bold;
  1348. background-color: #F7F7F7;
  1349. height: 20px;
  1350. }
  1351. a.forum_group_link {
  1352. font-weight: lighter;
  1353. display:inline;
  1354. }
  1355. .forum_description {
  1356. color: #000;
  1357. font-weight: normal;
  1358. }
  1359. .forum_title {
  1360. color: #000;
  1361. font-size: 14px;
  1362. }
  1363. .forum_low_description {
  1364. color: #737780;
  1365. font-style: italic;
  1366. font-weight: normal;
  1367. }
  1368. .forum_attach_comment {
  1369. color: #737780;
  1370. font-style: italic;
  1371. font-weight: normal;
  1372. }
  1373. /* **** BLOG **** */
  1374. span.blog_title {
  1375. font-size: 18px;
  1376. font-weight: bold;
  1377. color: #1657A9;
  1378. }
  1379. span.blog_subttitle {
  1380. }
  1381. td.blog_left {
  1382. margin-right: 5px;
  1383. padding-right: 5px;
  1384. border-right: 1px solid #dddddd;
  1385. }
  1386. td.blog_right {
  1387. padding-left: 10px;
  1388. }
  1389. td.blog_menu_title {
  1390. background-color: #dddddd;
  1391. color: #1657A9;
  1392. font-weight: bold;
  1393. font-size: 11px;
  1394. padding: 2px;
  1395. }
  1396. td.blog_menu {
  1397. border-bottom: 1px dashed #dddddd;
  1398. border-right: 1px dashed #dddddd;
  1399. border-left: 1px dashed #dddddd;
  1400. padding: 10px;
  1401. }
  1402. td.blog_menu ul {
  1403. margin-top: 0;
  1404. margin-right: 0;
  1405. margin-bottom: 0;
  1406. margin-left: 15px;
  1407. padding: 0;
  1408. }
  1409. td.blog_menu ul li {
  1410. }
  1411. span.blogpost_title {
  1412. display: block;
  1413. font-size: 18px;
  1414. font-weight: bold;
  1415. color: #1657A9;
  1416. padding-bottom: 5px;
  1417. }
  1418. span.blogpost_date {
  1419. display: block;
  1420. font-weight: bold;
  1421. color: #333333;
  1422. padding-bottom: 10px;
  1423. }
  1424. span.blogpost_info {
  1425. display: block;
  1426. color: #333333;
  1427. border-top: 1px solid #dddddd;
  1428. margin-top: 5px;
  1429. }
  1430. table.newBlog {
  1431. border: 1px solid #dddddd;
  1432. margin-bottom: 10px;
  1433. margin-top: 10px;
  1434. padding: 10px;
  1435. background-color: #f6f6f6;
  1436. }
  1437. table.newTask {
  1438. border: 1px solid #dddddd;
  1439. margin-bottom: 10px;
  1440. margin-top: 10px;
  1441. padding: 10px;
  1442. background-color: #f6f6f6;
  1443. }
  1444. table.new_comment {
  1445. border: 1px solid #dddddd;
  1446. margin-bottom: 10px;
  1447. margin-top: 10px;
  1448. padding: 10px;
  1449. background-color: #F4F4F4;
  1450. }
  1451. div.blogpost_comment {
  1452. border-top: 1px dashed #dddddd;
  1453. border-right: 1px dashed #dddddd;
  1454. border-bottom: 1px dashed #dddddd;
  1455. border-left: 1px dashed #dddddd;
  1456. margin-bottom: 10px;
  1457. padding: 10px;
  1458. background-color: white;
  1459. z-index: -1;
  1460. }
  1461. span.blogpost_comment_title {
  1462. display: block;
  1463. font-size: 14px;
  1464. font-weight: bold;
  1465. color: #1657A9;
  1466. padding-bottom: 5px;
  1467. }
  1468. span.blogpost_comment_date {
  1469. display: block;
  1470. font-size: 10px;
  1471. font-weight: bold;
  1472. color: #333333;
  1473. padding-bottom: 10px;
  1474. }
  1475. span.blogpost_comment_info {
  1476. font-size: 10px;
  1477. display: block;
  1478. color: #333333;
  1479. border-top: 1px solid #dddddd;
  1480. margin-top: 10px;
  1481. }
  1482. div.blogpost {
  1483. border: 1px solid #DDDDDD;
  1484. background-color: #ECECEC;
  1485. margin-bottom: 15px;
  1486. padding: 10px;
  1487. }
  1488. div.comments {
  1489. border: 1px solid #dddddd;
  1490. margin-bottom: 10px;
  1491. margin-top: 10px;
  1492. padding: 10px;
  1493. background-color: #F4F4F4;
  1494. margin-left:50px;
  1495. }
  1496. .attachment_comment {
  1497. color: #737780;
  1498. font-style: italic;
  1499. font-weight: normal;
  1500. }
  1501. .link {
  1502. text-decoration: none;
  1503. font-weight : bold;
  1504. color : #1657A9;
  1505. cursor: pointer
  1506. }
  1507. .link:hover {
  1508. text-decoration: none;
  1509. color: #abd9f1;
  1510. font-weight: bold;
  1511. cursor: pointer
  1512. }
  1513. /*****************************************************
  1514. * INSTALLATION *
  1515. *****************************************************/
  1516. #installation_steps {
  1517. float:left;
  1518. background-color: #EFEFEF;
  1519. }
  1520. .current_step {
  1521. font-weight: bold;
  1522. }
  1523. .RequirementHeading {
  1524. margin-right:10px;
  1525. }
  1526. .RequirementHeading h1 {
  1527. color:#0066CC;
  1528. font-size:1.2em;
  1529. font-weight: bold;
  1530. border-bottom: 1px solid #0066CC;
  1531. }
  1532. .RequirementText {
  1533. color:#666;
  1534. font-size:1.0em;
  1535. font-weight: normal;
  1536. float:right;
  1537. width:200px;
  1538. }
  1539. .RequirementContent {
  1540. color:#000;
  1541. font-size:1.0em;
  1542. font-weight: normal;
  1543. }
  1544. .RequirementContent table {
  1545. border: 1px solid #ccc;
  1546. width: 400px;
  1547. }
  1548. .RequirementContent table th {
  1549. border-bottom: 1px solid #ccc;
  1550. text-align: left;
  1551. }
  1552. .requirements-item {
  1553. width: 50%;
  1554. background-color:#f7f7f7;
  1555. padding-left:2px;
  1556. }
  1557. .requirements-value {
  1558. }
  1559. /************************************************************
  1560. styles below here are not necessarily used in the current
  1561. release and the CVS files, they are from earlier versions,
  1562. and have been left untouched for anyone needing them in
  1563. their own platform ...
  1564. *************************************************************/
  1565. .topBanner a:link, .topBanner a:active, .topBanner a:visited {
  1566. text-decoration:none;
  1567. color:white;
  1568. }
  1569. .topBanner table {
  1570. text-decoration:none;
  1571. }
  1572. .topBanner a:hover {
  1573. text-decoration:underline;
  1574. }
  1575. .topBanner td {
  1576. border-top: solid White 1px;
  1577. }
  1578. .alternativeBgLight {
  1579. background-color: #f5f5f5;
  1580. }
  1581. .alternativeBgDark {
  1582. background-color: #e6e6e6
  1583. }
  1584. .forms {
  1585. letter-spacing: normal;
  1586. text-align: justify;
  1587. text-indent: 3pt;
  1588. word-spacing: normal;
  1589. padding: 2px 5px;
  1590. }
  1591. .formsTips {
  1592. text-align: justify;
  1593. text-indent: 15pt;
  1594. word-spacing: normal;
  1595. }
  1596. .warn {
  1597. border: thin double Silver;
  1598. margin-left: 15px;
  1599. margin-right: 15px;
  1600. color: Red;
  1601. padding-left: 25px;
  1602. }
  1603. .small {
  1604. font-size: 11px
  1605. }
  1606. .xsmall {
  1607. font-size: 11px
  1608. }
  1609. .xxsmall {
  1610. font-size: 9px
  1611. }
  1612. /*
  1613. * TABBED INTERFACE
  1614. */
  1615. #tabbed_menu {
  1616. width: 100%;
  1617. height: 20px;
  1618. border-bottom-width: 1px;
  1619. border-bottom-style: solid;
  1620. border-bottom-color: #666666;
  1621. margin-bottom: 20px;
  1622. }
  1623. #tabbed_menu #tabbed_menu_tabs li {
  1624. margin: 0px 10px;
  1625. padding: 0px;
  1626. display: inline;
  1627. list-style-type: none;
  1628. }
  1629. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  1630. float: left;
  1631. background: #f3f3f3;
  1632. font-weight: bold;
  1633. padding: 2px 10px 2px 10px;
  1634. margin-right: 4px;
  1635. border: 1px solid #cccccc;
  1636. border-bottom: 1px solid #666666;
  1637. text-decoration: none;
  1638. color: #666;
  1639. }
  1640. #tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
  1641. border: 1px solid #666666;
  1642. border-bottom: 1px solid #fff;
  1643. background: #fff;
  1644. color: #000;
  1645. }
  1646. .skip {
  1647. display: none;
  1648. }
  1649. #WCAG-editor {
  1650. border: 1px #DCDCDC solid;
  1651. background-color: #F0F0F0;
  1652. width: 100%;
  1653. }
  1654. #WCAG-editor .title {
  1655. padding: 2px;
  1656. background-color: #DCDCDC;
  1657. text-align: center;
  1658. color: #000000;
  1659. font-weight: bold;
  1660. }
  1661. #WCAG-editor .body {
  1662. padding-top: 5px;
  1663. padding-left: 5px;
  1664. padding-right: 13px;
  1665. padding-bottom: 5px;
  1666. }
  1667. #WCAG-editor textarea {
  1668. margin-left: 0px;
  1669. margin-right: 0px;
  1670. width: 100%;
  1671. height: 180px;
  1672. border: 1px #DCDCDC solid;
  1673. }
  1674. #WCAG-editor input {
  1675. width: 100%;
  1676. }
  1677. /* don't work on IE 6 */
  1678. #WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
  1679. width: auto;
  1680. }
  1681. /* only for IE6 */
  1682. #WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
  1683. width: auto;
  1684. }
  1685. #WCAG-content img {
  1686. float: left;
  1687. margin-right: 5px;
  1688. margin-bottom: 5px;
  1689. }
  1690. #WCAG-content p {
  1691. text-align: justify;
  1692. }
  1693. /* hack for IE < 7 */
  1694. #course_description input {
  1695. width: auto;
  1696. }
  1697. #course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
  1698. width: 100%;
  1699. }
  1700. .WCAG-form textarea {
  1701. width: 100%;
  1702. height: 180px;
  1703. }
  1704. /*
  1705. ------------------------------------------------------------------------------
  1706. Survey
  1707. ------------------------------------------------------------------------------
  1708. */
  1709. #survey_title {
  1710. background-color:#264269;
  1711. color:#FFF;
  1712. padding:2px;
  1713. border: 1px solid #264269;
  1714. }
  1715. #survey_subtitle {
  1716. background-color:#264269;
  1717. color:#FFF;
  1718. padding:2px;
  1719. border: 1px solid #264269;
  1720. }
  1721. .survey_content {
  1722. background-color:#EFEFEF;
  1723. color:#264269;
  1724. padding:5px;
  1725. border: 1px solid #264269;
  1726. }
  1727. .survey_question_wrapper {
  1728. border: 1px solid #4271b5;
  1729. }
  1730. .survey_question {
  1731. background-color:#4271b5;
  1732. color:#FFFFFF;
  1733. padding:5px;
  1734. }
  1735. .survey_question_options {
  1736. background-color:#FFF;
  1737. color:#000;
  1738. padding:5px;
  1739. }
  1740. .survey_export_link {
  1741. float: right;
  1742. }
  1743. /*
  1744. ------------------------------------------------------------------------------^M
  1745. sessions
  1746. ------------------------------------------------------------------------------^M
  1747. */
  1748. #ajax_list_coachs {
  1749. position:absolute;
  1750. border:1px solid #4171B5;
  1751. margin:0px;
  1752. padding:0px;
  1753. margin-left:200px;
  1754. margin-top:-23px;
  1755. background-color:#FFFFFF;
  1756. height:auto;
  1757. overflow:auto;
  1758. }
  1759. #ajax_list_courses {
  1760. position:absolute;
  1761. border:1px solid #4171B5;
  1762. margin:0px;
  1763. padding:0px;
  1764. margin-left:200px;
  1765. background-color:#FFFFFF;
  1766. height:auto;
  1767. overflow:auto;
  1768. }
  1769. #ajax_list_users {
  1770. position:absolute;
  1771. border:1px solid #4171B5;
  1772. margin:0px;
  1773. padding:0px;
  1774. margin-left:200px;
  1775. background-color:#FFFFFF;
  1776. height:auto;
  1777. overflow:auto;
  1778. }
  1779. #chat_login_name {
  1780. color : #4171b5;
  1781. }
  1782. /* Quizzes tool */
  1783. .quiz_export_link {
  1784. float: right;
  1785. }
  1786. /*
  1787. Learning path
  1788. */
  1789. #show_audiorecorder_div {
  1790. background:#F0F0F0;
  1791. border:1px solid #999999;
  1792. font-weight:bold;
  1793. padding:2px;
  1794. width:350px;
  1795. }
  1796. /* Glossary tool */
  1797. .glossary-term {
  1798. margin: 1em;
  1799. background-color: #ffe99b;
  1800. padding: 0.5em 0.5em 1.8em 0;
  1801. -moz-border-radius: 0.5em;
  1802. }
  1803. .glossary-term-title {
  1804. margin: 2em 0 1em 0.5em;
  1805. font-weight: bold;
  1806. font-size: 120%;
  1807. }
  1808. .glossary-term-desc {
  1809. margin-left: 1em;
  1810. }
  1811. .glossary-term-action-links {
  1812. float: right;
  1813. }
  1814. .glossary-term-edit-form {
  1815. margin: 1em;
  1816. background-color: #FFE4C4;
  1817. padding: 0.5em 0.5em 2em 0;
  1818. -moz-border-radius: 0.5em;
  1819. }
  1820. .glossary-term-edit-desc {
  1821. font-weight: bold;
  1822. font-size: 120%;
  1823. }
  1824. .glossary-term-edit-title {
  1825. font-weight: bold;
  1826. font-size: 120%;
  1827. }
  1828. .glossary-add-form {
  1829. font-weight: bold;
  1830. font-size: 120%;
  1831. margin: 1em;
  1832. }
  1833. .glossary-orderby-link {
  1834. float:right;
  1835. margin: 1em;
  1836. }
  1837. .glossary-msg-error {
  1838. color: #FF0000;
  1839. display :none;
  1840. font-weight: normal;
  1841. font-size: 80%;
  1842. }
  1843. /* Notebook */
  1844. .notebook-add-form {
  1845. margin: 1em;
  1846. background-color: #c3d9ff;
  1847. padding: 1em 1em;
  1848. }
  1849. .notebook-add-desc-textarea {
  1850. background-color: #f2f5f8;
  1851. border-color: #ffe99b;
  1852. overflow: hidden;
  1853. }
  1854. .notebook-add-title-text {
  1855. background-color: #f2f5f8;
  1856. border-color: #ffe99b;
  1857. }
  1858. .notebook-edit-desc-textarea {
  1859. background-color: #e0ecff;
  1860. border-color: #ffe99b;
  1861. overflow: hidden;
  1862. }
  1863. .notebook-edit-title-text {
  1864. background-color: #e0ecff;
  1865. border-color: #ffe99b;
  1866. }
  1867. .notebook-msg-error {
  1868. color: #FF0000;
  1869. display :none;
  1870. background-color: #ffe99b;
  1871. width: 40%;
  1872. }
  1873. .notebook-list {
  1874. margin: 1em 1em 0em 1em;
  1875. background-color: #79b;
  1876. padding: 0.3em 0.3em;
  1877. -moz-border-radius: 0.5em;
  1878. }
  1879. .notebook-title-list {
  1880. color : #fff;
  1881. padding: 0.3em 0.3em;
  1882. font-weight: bold;
  1883. font-size: 120%;
  1884. }
  1885. .notebook-desc-list {
  1886. margin: 0em;
  1887. background-color: #f2f5f8;
  1888. padding: 0.5em 0.3em 2em 0.3em;
  1889. border: 1px solid #79b;
  1890. }
  1891. .notebook-term-action-links {
  1892. padding: 0.3em 0.3em;
  1893. width: 50%;
  1894. color : #fff;
  1895. }
  1896. .notebook-orderby-link {
  1897. text-align:right;
  1898. margin-right: 1em;
  1899. }
  1900. .notebook-search-title {
  1901. text-align:right;
  1902. margin: 1em;
  1903. }
  1904. .notebook-date-information {
  1905. color : #fff;
  1906. padding: 0.3em;
  1907. font-size: 120%;
  1908. font-weight: bold;
  1909. }
  1910. /* Gradebook */
  1911. .resource-deleted {
  1912. color:#990000;
  1913. }
  1914. .gradebook-table-header {
  1915. border: 1px solid rgb(153, 153, 153);
  1916. background: rgb(240, 240, 240) none repeat scroll 0% 0%;
  1917. }
  1918. .gradebook-table-body {
  1919. border: 1px solid rgb(153, 153, 153);
  1920. background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  1921. }
  1922. .label_result {
  1923. float: left;
  1924. width: 25%;
  1925. text-align: left;
  1926. padding-top:8px;
  1927. }
  1928. .formw_result {
  1929. width: 75%;
  1930. float:left;
  1931. }
  1932. /* actions */
  1933. .actions_lp {
  1934. background:#F8F8F8;
  1935. height:29px;
  1936. }
  1937. .actions_lp img {
  1938. vertical-align:middle;
  1939. }
  1940. .actions_lp span {
  1941. margin-right: 10px;
  1942. vertical-align:middle;
  1943. }
  1944. .actions_lp form {
  1945. margin-right: 10px;
  1946. vertical-align:middle;
  1947. }
  1948. .actions {
  1949. background:#efefef;
  1950. border-bottom:1px dotted #5b975b;
  1951. border-top:1px dotted #5b975b;
  1952. padding:2px;
  1953. margin-bottom: 5px;
  1954. vertical-align:middle;
  1955. }
  1956. .actions img {
  1957. /*display:inline-block;*/
  1958. border: none;
  1959. text-decoration: none;
  1960. /*background-color: #efefef;*/
  1961. padding-right: 5px;
  1962. vertical-align:middle;
  1963. }
  1964. .actions a {
  1965. display:inline-block;
  1966. margin-right: 10px;
  1967. vertical-align:middle;
  1968. }
  1969. .actions span {
  1970. margin-right: 10px;
  1971. vertical-align:middle;
  1972. }
  1973. .actions form {
  1974. margin-right: 10px;
  1975. vertical-align:middle;
  1976. }
  1977. /* big actions */
  1978. .actionsbig {
  1979. background:#F8F8F8;
  1980. border-bottom:1px solid #999999;
  1981. border-top:1px solid #999999;
  1982. background-color:#efefef;
  1983. padding:2px;
  1984. margin-bottom: 5px;
  1985. vertical-align:middle;
  1986. float:left;
  1987. width:100%;
  1988. }
  1989. .content_table {
  1990. padding:2px;
  1991. margin-bottom: 5px;
  1992. vertical-align:middle;
  1993. float:left;
  1994. width:100%;
  1995. }
  1996. .actionsbig a {
  1997. float:left;
  1998. padding-left:12px;
  1999. padding-right:12px;
  2000. text-align:center;
  2001. }
  2002. .actions img {
  2003. vertical-align:middle;
  2004. }
  2005. .actions a {
  2006. margin-right: 10px;
  2007. vertical-align:middle;
  2008. }
  2009. .actions-title {
  2010. background:#efefef;
  2011. border-bottom:1px dotted #999999;
  2012. border-top:1px dotted #999999;
  2013. padding:4px;
  2014. margin-bottom: 5px;
  2015. font-size:14px;
  2016. font-weight:bolder;
  2017. vertical-align:middle;
  2018. }
  2019. /*****************************************************
  2020. * BUTTONS *
  2021. *****************************************************/
  2022. button:hover input[type="submit"]:hover {
  2023. background-color:#a8a7a7;
  2024. color:#545454;
  2025. border-style: inset;
  2026. }
  2027. /* button with image */
  2028. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
  2029. padding-left:30px;
  2030. background-position:10px;
  2031. background-repeat:no-repeat;
  2032. }
  2033. /*including "save" image*/
  2034. button.save {
  2035. background-image:url(images/button_accept.gif);
  2036. }
  2037. /*including "add" image*/
  2038. button.add {
  2039. background-image:url(images/button_add.gif);
  2040. }
  2041. /*including "cancel" image*/
  2042. button.cancel {
  2043. background-image:url(images/button_delete.gif);
  2044. }
  2045. /*including "search" image*/
  2046. button.search {
  2047. background-image:url(images/button_search.gif);
  2048. }
  2049. /*including "login" image*/
  2050. button.login {
  2051. background-image:url(images/button_login.gif);
  2052. margin:2px 5px 3px 5px !important;
  2053. }
  2054. /*including "plus" image*/
  2055. button.plus {
  2056. background-image:url(images/button_plus.gif);
  2057. }
  2058. /*including "minus" image*/
  2059. button.minus {
  2060. background-image:url(images/button_minus.gif);
  2061. }
  2062. /*including "next" image*/
  2063. button.next,input[type="submit"].submit_next {
  2064. background-image:url(images/button_next.gif);
  2065. }
  2066. /*including "back" image*/
  2067. button.back {
  2068. background-image:url(images/button_back.gif);
  2069. }
  2070. /*including "refresh" image*/
  2071. button.refresh {
  2072. background-image:url(images/button_refresh.gif);
  2073. }
  2074. /*including "upload" image*/
  2075. button.upload {
  2076. background-image:url(images/button_upload.gif);
  2077. }
  2078. .icon_image_content {
  2079. width:70px;
  2080. cursor:hand;
  2081. height:6em;
  2082. text-align: center;
  2083. padding-right: 10px;
  2084. padding-left: 0px;
  2085. border: 1px dotted #ccc;
  2086. background-color: #eee;
  2087. margin-right: 0.2em;
  2088. margin-top: 0.1em;
  2089. -moz-border-radius-topleft : 5px;
  2090. -moz-border-radius-bottomright : 5px;
  2091. -moz-border-radius-bottomleft : 5px;
  2092. -moz-border-radius-topright : 5px;
  2093. }
  2094. .icon_image_content:hover {
  2095. background-color: #fff;
  2096. border: 1px solid #ccc;
  2097. }
  2098. .question_menu {
  2099. list-style:none;
  2100. float:left;
  2101. padding:0px;
  2102. margin:-2px;
  2103. min-height:100px;
  2104. }
  2105. .question_menu li {
  2106. float:left;
  2107. margin:0px;
  2108. }
  2109. #exercise_admin {
  2110. margin: 0;
  2111. padding: 0;
  2112. border: 0;
  2113. }
  2114. div#friend-header {
  2115. float:left;
  2116. width:100%;
  2117. line-height: 2.1em;
  2118. }
  2119. div#friend-header a {
  2120. padding-right:6px;
  2121. }
  2122. div#friend-container {
  2123. float:left;
  2124. }
  2125. div.image_friend_network {
  2126. float:left;
  2127. border:1px solid #CCCCCC;
  2128. margin:2px;
  2129. padding:4px;
  2130. background: #EFEFEF;
  2131. height:125px;
  2132. width:81px;
  2133. z-index:5;
  2134. }
  2135. div.image_friend_network span {
  2136. overflow:hidden;
  2137. display:block;
  2138. height:92px;
  2139. margin: 0px 0px;
  2140. }
  2141. div.image_friend_network img {
  2142. vertical-align:middle;
  2143. }
  2144. div.image_friend_network center.friend {
  2145. overflow:hidden;
  2146. height:30px;
  2147. }
  2148. .friend_invitations {
  2149. float:left;
  2150. margin: 0 0 4px 12px;
  2151. }
  2152. button.arrowr, input.arrowr {
  2153. background-image:url(images/2rightarrow.gif);
  2154. }
  2155. button.arrowl, input.arrowl {
  2156. background-image:url(images/2leftarrow.gif);
  2157. }
  2158. .u-m-answer {
  2159. width:100%;
  2160. }
  2161. .u-m-answer p {
  2162. margin:2px;
  2163. }
  2164. .refresh {
  2165. background-image:url(images/refresh.png);
  2166. background-repeat:no-repeat;
  2167. padding-left:20px;
  2168. padding-bottom:2px;
  2169. }
  2170. .portal {
  2171. background-image:url(images/portal.png);
  2172. background-repeat:no-repeat;
  2173. padding-left:28px;
  2174. padding-bottom:10px;
  2175. padding-top:8px;
  2176. }
  2177. .legal-terms {
  2178. height:150px;
  2179. overflow:auto;
  2180. background-color:#eee;
  2181. width:500px;
  2182. }
  2183. /* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
  2184. * {
  2185. outline :none;
  2186. }
  2187. /*
  2188. input, select, textarea {
  2189. -moz-border-radius-bottomleft:5px;
  2190. -moz-border-radius-bottomright:5px;
  2191. -moz-border-radius-topleft:5px;
  2192. -moz-border-radius-topright:5px;
  2193. -x-system-font:none;
  2194. border:1px solid #CCCCCC;
  2195. color:#666666;
  2196. font-family:Arial,Helvetica,sans-serif;
  2197. font-size:120%;
  2198. font-size-adjust:none;
  2199. font-stretch:normal;
  2200. font-style:normal;
  2201. font-variant:normal;
  2202. font-weight:normal;
  2203. line-height:normal;
  2204. padding:5px;
  2205. }
  2206. input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  2207. background-image:url(images/shadow.gif);
  2208. }
  2209. .independent_course_item a {
  2210. font-size:135%;
  2211. }
  2212. .session_course_item a {
  2213. font-size:120%;
  2214. }
  2215. */
  2216. #maincontent .courseslist li {
  2217. margin-bottom:8px;
  2218. }
  2219. /*
  2220. a.read {
  2221. font-weight:normal;
  2222. }
  2223. .actions {
  2224. background:#efefef;
  2225. border:1px solid #ccc;
  2226. padding:2px;
  2227. margin-bottom: 5px;
  2228. vertical-align:middle;
  2229. }
  2230. .actions-title {
  2231. background:#efefef;
  2232. border:1px solid #ccc;
  2233. padding:4px;
  2234. margin-bottom: 5px;
  2235. font-size:14px;
  2236. font-weight:bolder;
  2237. vertical-align:middle;
  2238. }*/
  2239. /* GROUP TOOL */
  2240. #group_description {
  2241. margin: 10px 0px 10px 0px;
  2242. }
  2243. #group_privacy {
  2244. margin: 10px 0px 10px 0px;
  2245. }
  2246. #group_permissions {
  2247. -moz-background-clip:border;
  2248. -moz-background-inline-policy:continuous;
  2249. -moz-background-origin:padding;
  2250. -moz-border-radius-bottomleft:8px;
  2251. -moz-border-radius-bottomright:8px;
  2252. -moz-border-radius-topleft:8px;
  2253. -moz-border-radius-topright:8px;
  2254. background:#EEE none repeat scroll 0 0;
  2255. margin: 20px 0px 20px 0px;
  2256. }
  2257. #group_permissions ul {
  2258. list-style-image:none;
  2259. list-style-position:outside;
  2260. list-style-type:none;
  2261. margin:0;
  2262. padding:0;
  2263. }
  2264. #group_permissions ul li {
  2265. margin: 10px 0px 10px 5px;
  2266. }
  2267. /* Groups boxes */
  2268. .groups_grid_container {
  2269. width:100%;
  2270. }
  2271. .groups_grid_item {
  2272. width:80px;
  2273. float:left;
  2274. margin:5px;
  2275. }
  2276. .groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  2277. .groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
  2278. .groups_grid_element_2 { width:150px; float:left;}
  2279. /*POPULAR GROUP*/
  2280. .popular_grid_item {
  2281. background: none repeat scroll 0 0 #FFFFFF;
  2282. border: 1px solid #E5E5E5;
  2283. border-radius: 11px 11px 11px 11px;
  2284. -webkit-border-radius: 11px 11px 11px 11px;
  2285. -opera-border-radius: 11px 11px 11px 11px;
  2286. -moz-border-radius: 11px 11px 11px 11px;
  2287. box-shadow: 0 4px 18px #C8C8C8;
  2288. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  2289. -opera-box-shadow: 0 4px 18px #C8C8C8;
  2290. -moz-box-shadow: 0 4px 18px #C8C8C8;
  2291. float: left;
  2292. height: auto;
  2293. margin: 0 8px 15px 15px;
  2294. padding: 16px 12px 5px;
  2295. width:90%;
  2296. }
  2297. .popular_grid_element_0 {
  2298. width:600px;
  2299. height:98px;
  2300. padding-left:10px;
  2301. padding-right:10px;
  2302. overflow:hidden;
  2303. }
  2304. /*NEWEST GROUP*/
  2305. .newest_grid_item {
  2306. background: none repeat scroll 0 0 #FFFFFF;
  2307. border: 1px solid #E5E5E5;
  2308. border-radius: 11px 11px 11px 11px;
  2309. -webkit-border-radius: 11px 11px 11px 11px;
  2310. -opera-border-radius: 11px 11px 11px 11px;
  2311. -moz-border-radius: 11px 11px 11px 11px;
  2312. box-shadow: 0 4px 18px #C8C8C8;
  2313. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  2314. -opera-box-shadow: 0 4px 18px #C8C8C8;
  2315. -moz-box-shadow: 0 4px 18px #C8C8C8;
  2316. float: left;
  2317. height: auto;
  2318. margin: 0 8px 15px 15px;
  2319. padding: 16px 12px 5px;
  2320. width:90%;
  2321. }
  2322. .newest_grid_element_1 {
  2323. width:600px;
  2324. height:98x;
  2325. padding-left:10px;
  2326. padding-right:10px;
  2327. overflow:hidden;
  2328. }
  2329. /*MY GROUPS*/
  2330. .mygroups_grid_item {
  2331. background: none repeat scroll 0 0 #FFFFFF;
  2332. border: 1px solid #E5E5E5;
  2333. border-radius: 11px 11px 11px 11px;
  2334. -webkit-border-radius: 11px 11px 11px 11px;
  2335. -opera-border-radius: 11px 11px 11px 11px;
  2336. -moz-border-radius: 11px 11px 11px 11px;
  2337. box-shadow: 0 4px 18px #C8C8C8;
  2338. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  2339. -opera-box-shadow: 0 4px 18px #C8C8C8;
  2340. -moz-box-shadow: 0 4px 18px #C8C8C8;
  2341. float: left;
  2342. height: auto;
  2343. margin: 0 8px 15px 15px;
  2344. padding: 16px 12px 5px;
  2345. }
  2346. .box_description_group_member {
  2347. color: #999999;
  2348. font-size: 10px;
  2349. }
  2350. .mygroups_grid_element_1 {
  2351. width:600px;
  2352. height:100px;
  2353. overflow:hidden;
  2354. }
  2355. .box_description_group_title h3 {
  2356. margin-bottom:4px;
  2357. }
  2358. .box_description_group_title {
  2359. float:right;width:80%;
  2360. }
  2361. .box_description_group_content {
  2362. float:right;
  2363. width:80%;
  2364. margin-top:5px;
  2365. /* height:45px;*/
  2366. font-family:Verdana, Geneva, sans-serif;
  2367. font-size:12px;
  2368. color:#666666;
  2369. }
  2370. .box_description_group_actions {
  2371. float:right;
  2372. width:80%;
  2373. text-align:right;
  2374. margin-top:4px;
  2375. margin-right:4px;
  2376. }
  2377. #menu-wrapper {
  2378. width:200px;
  2379. float: right;
  2380. }
  2381. #menu {
  2382. -moz-border-radius: 10px; border: 1px solid #e1e1e0;
  2383. -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
  2384. -opera-border-radius: 10px; border: 1px solid #e1e1e0;
  2385. margin-top:20px;
  2386. /* margin-right:10px; */
  2387. margin-bottom:0px;
  2388. /*padding-left:10px;
  2389. padding-right:10px;*/
  2390. padding-top:5px;
  2391. padding-bottom:0px;
  2392. width:200px;
  2393. float: right;
  2394. min-height: 150px;
  2395. }
  2396. /* INVITATIONS */
  2397. .invitation_confirm {
  2398. border-top:1px solid #D8DFEA;
  2399. }
  2400. .invitation_image {
  2401. width:110px;
  2402. }
  2403. /* DASHBOARD */
  2404. /* Head section */
  2405. #head {
  2406. background-color: #000;
  2407. height: 100px;
  2408. }
  2409. #head h1 {
  2410. line-height: 100px;
  2411. color: #FFF;
  2412. text-align: center;
  2413. text-indent: -9999em
  2414. }
  2415. /* End Head Section */
  2416. /* Columns section */
  2417. #columns .column {
  2418. float: left;
  2419. width: 50%;
  2420. /* Min-height: */
  2421. min-height: 400px;
  2422. height: auto !important;
  2423. height: 400px;
  2424. }
  2425. #columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
  2426. /* To add in 1.8.7*/
  2427. .session_box_title span {
  2428. font-size: 130%;
  2429. font-weight: bold;
  2430. }
  2431. .sub_session_box_title span {
  2432. font-size: 130%;
  2433. font-weight: bold;
  2434. }
  2435. #session_category_title {
  2436. font-size: 140%;
  2437. font-weight: bold;
  2438. padding: 2px 0px 5px 5px;
  2439. }
  2440. /* fixes the * */
  2441. span.form_required {
  2442. padding-right:5px;
  2443. }
  2444. .userportal-course-item {
  2445. -webkit-border-radius: 10px;
  2446. -moz-border-radius: 10px;
  2447. border-radius: 10px;
  2448. background-color:#F9F9F9;
  2449. padding:10px 10px 5px 10px;
  2450. height:40px;
  2451. margin:5px;
  2452. }
  2453. .userportal-course-item-title {
  2454. font-size:135%;
  2455. }
  2456. .courseadminview-activity-3col, .platformadminview-activity-3col {
  2457. -moz-border-radius:5px 5px 5px 5px;
  2458. border:1px solid #E1E1E0;
  2459. float:left;
  2460. margin:0px 20px 10px 2px;
  2461. padding:11px;
  2462. width:220px;
  2463. height:330px;
  2464. }
  2465. .courseadminview-activity-3col ul {
  2466. padding:0px 20px 10px 4px;
  2467. list-style-type:none;
  2468. height:240px;
  2469. margin-left:0px;
  2470. margin: 0px 0px 0px 0px ;
  2471. }
  2472. .courseadminview-activity-3col ul li {
  2473. padding:4px 0px 4px 0px;
  2474. }
  2475. #activity-3col {
  2476. width: 800px ;
  2477. margin-left: auto ;
  2478. margin-right: auto ;
  2479. }
  2480. .userportal-catalog-item {
  2481. -webkit-border-radius: 10px;
  2482. -moz-border-radius: 10px;
  2483. border-radius: 10px;
  2484. background-color:#F9F9F9;
  2485. padding:5px 10px 10px 6px;
  2486. /* height:40px; */
  2487. }
  2488. .userportal-catalog-item .catalog_box li span {
  2489. font-size:130%;
  2490. font-weight:bold;
  2491. margin-left:5px;
  2492. }
  2493. /* New forum table */
  2494. .forum_table_title {
  2495. border-collapse: collapse;
  2496. width: 100%;
  2497. padding: 5px;
  2498. border-left: 1px solid gray;
  2499. border-top: 1px solid gray;
  2500. border-right: 1px solid gray;
  2501. padding:5px;
  2502. }
  2503. .forum_table_title th {
  2504. padding-right: 12px;
  2505. /*border: 1px solid gray;*/
  2506. background-color: #E5EDF9;
  2507. }
  2508. .forum_table {
  2509. border-collapse: collapse;
  2510. width: 100%;
  2511. padding: 5px;
  2512. border: 1px solid gray;
  2513. margin-bottom:15px;
  2514. }
  2515. .forum_table .forum_head{
  2516. padding:5px;
  2517. text-align: left;
  2518. font-size:14px;
  2519. }
  2520. .forum_table th {
  2521. padding-right: 12px;
  2522. /*border: 1px solid gray;*/
  2523. background-color: #E5EDF9;
  2524. }
  2525. .forum_table tr.row_odd {
  2526. background-color: #F2F2F2;
  2527. }
  2528. .forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
  2529. background-color: #E5EDF9;
  2530. }
  2531. .forum_table tr.row_even {
  2532. background-color: #fff;
  2533. }
  2534. .forum_table td {
  2535. padding: 5px;
  2536. vertical-align: top;
  2537. border-bottom: 1px solid #b0b0b0;
  2538. border-right: 1px dotted #e1e1e1;
  2539. border-left: 1px dotted #e1e1e1;
  2540. }
  2541. .post {
  2542. border: 1px solid gray;
  2543. margin-bottom:5px;
  2544. }
  2545. /* Text resize icons in header */
  2546. .resize_font { /* the canvas */
  2547. margin: 0 5px 0 5px;
  2548. }
  2549. .reset_font {
  2550. font-size: 1.2em;
  2551. color: gray;
  2552. border: 1px solid white;
  2553. padding: 2px;
  2554. }
  2555. .reset_font:hover {
  2556. border: 1px solid black;
  2557. cursor: pointer;
  2558. }
  2559. .increase_font {
  2560. font-size: 1.8em;
  2561. color: gray;
  2562. border: 1px solid white;
  2563. padding: 2px;
  2564. }
  2565. .increase_font:hover {
  2566. border: 1px solid black;
  2567. cursor: pointer;
  2568. }
  2569. .decrease_font {
  2570. font-size: 0.6em;
  2571. color: gray;
  2572. border: 1px solid white;
  2573. padding: 2px;
  2574. }
  2575. .decrease_font:hover {
  2576. border: 1px solid black;
  2577. cursor: pointer;
  2578. }
  2579. .online_grid_item {
  2580. float:left;
  2581. margin:10px;
  2582. text-align:center;
  2583. }
  2584. .online_grid_element_0 {
  2585. width: 100px;
  2586. height: 100px;
  2587. overflow: hidden;
  2588. }
  2589. /* input values to crop the image: top, right, bottom, left */
  2590. .online_grid_element_0 img{
  2591. width: 200px;
  2592. margin: -10px 0 0 -50px;
  2593. /* height: 150px; */
  2594. }
  2595. .online_grid_element_1, .online_grid_element_2 {
  2596. font-size:10px;
  2597. }
  2598. /* tips Abbr-plugin for FCKeditor */
  2599. abbr {
  2600. border-bottom: 1px dotted rgb(102, 102, 102);
  2601. background-color:#F00;
  2602. cursor: help;
  2603. }