default.css 54 KB

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