default.css 56 KB

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