default.css 59 KB

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