default.css 55 KB

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