default.css 59 KB

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