default.css 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704
  1. /*****************************************************
  2. * MAIN - CHAMILO CSS GREEN
  3. *****************************************************/
  4. /* the sticky effect */
  5. html {
  6. height: 100%;
  7. }
  8. body {
  9. /* hack ignored by non-IE to enable ie to support :hover on button */
  10. behavior:url("/main/css/csshover3.htc");
  11. font-family:Tahoma, Geneva, sans-serif;
  12. font-size: 12px;
  13. color: #000;
  14. margin: 0;
  15. padding: 0;
  16. background-color: #fff;
  17. height: 100%; /* stick */
  18. }
  19. /* Sticky footer*/
  20. #wrapper {
  21. min-height: 100%;
  22. height: auto !important;
  23. height: 100%;
  24. margin: 0 auto -9em; /* Do not change this value */
  25. }
  26. input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  27. -moz-border-radius-bottomleft:5px;
  28. -moz-border-radius-bottomright:5px;
  29. -moz-border-radius-topleft:5px;
  30. -moz-border-radius-topright:5px;
  31. border:1px solid #E1E1E0;
  32. }
  33. #outerframe {
  34. position: relative; /* do not remove, fixes a bug in IE */
  35. background-color: #fff;
  36. background-repeat:no-repeat;
  37. }
  38. /* Hides from IE5-mac \*/
  39. * html #outerframe {
  40. height: 1%;
  41. }
  42. /* End hide from IE5-mac */
  43. #main {
  44. /*
  45. -moz-border-image:url(images/bg-main.png) 5 5 5 5;
  46. -webkit-border-image:url(images/bg-main.png) 5 5 5 5;
  47. -o-border-image:url(images/bg-main.png) 5 5 5 5;
  48. -xv-border-image:url(images/bg-main.png) 5 5 5 5;
  49. */
  50. border:2px solid #ddd;
  51. position: relative; /* to avoid the IE peekabo bug*/
  52. margin: 0px auto;
  53. width: 90%;
  54. min-height: 320px;
  55. padding:12px;
  56. }
  57. .item {
  58. -moz-border-radius-bottomleft:5px;
  59. -moz-border-radius-bottomright:5px;
  60. -moz-border-radius-topleft:5px;
  61. -moz-border-radius-topright:5px;
  62. border:1px solid #E1E1E0;
  63. }
  64. /*
  65. -----------------------------------------------------------------------------
  66. Side-Menu Slider (JQuery) see banner.inc.php
  67. -----------------------------------------------------------------------------
  68. */
  69. ul#navigation {
  70. position: fixed;
  71. margin: 0px;
  72. padding: 0px;
  73. top: 10px;
  74. right: -10px;
  75. list-style: none;
  76. z-index:9999;
  77. }
  78. ul#navigation li {
  79. width: 73px;
  80. }
  81. ul#navigation li a {
  82. display: block;
  83. margin-left: 1px;
  84. width: 65px;
  85. height: 60px;
  86. background-color:#CFCFCF;
  87. background-repeat:no-repeat;
  88. background-position:center center;
  89. border:1px solid #AFAFAF;
  90. -moz-border-radius:10px 0px 0px 10px;
  91. -webkit-border-bottom-right-radius: 10px;
  92. -webkit-border-top-right-radius: 10x;
  93. -khtml-border-bottom-right-radius: 10px;
  94. -khtml-border-top-right-radius: 10px;
  95. -moz-box-shadow: 0px 4px 3px #000;
  96. opacity: 0.6;
  97. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  98. -webkit-box-shadow: 0px 4px 3px #000;
  99. }
  100. ul#navigation .help a {
  101. -moz-border-radius:8px 0 0 8px;
  102. -moz-box-shadow:0 2px 2px #000000;
  103. background-color:#879DAA;
  104. background-position:center center;
  105. background-repeat:no-repeat;
  106. border:1px solid #FFFFFF;
  107. display:block;
  108. height:44px;
  109. margin-left:50px;
  110. opacity:0.6;
  111. width:65px;
  112. padding: 6px 0 8px 6px;
  113. }
  114. ul#navigation .report a {
  115. -moz-border-radius:8px 0 0 8px;
  116. -moz-box-shadow:0 2px 2px #000000;
  117. background-color:#8fd400;
  118. background-position:center center;
  119. background-repeat:no-repeat;
  120. border:1px solid #FFFFFF;
  121. display:block;
  122. height:44px;
  123. margin-left:50px;
  124. opacity:0.6;
  125. width:65px;
  126. padding: 6px 0 8px 6px;
  127. }
  128. ul#navigation .student a {
  129. -moz-border-radius:8px 0 0 8px;
  130. -moz-box-shadow:0 2px 2px #000000;
  131. background-color:#b27651 ;
  132. background-position:center center;
  133. background-repeat:no-repeat;
  134. border:1px solid #FFFFFF;
  135. display:block;
  136. height:44px;
  137. margin-left:50px;
  138. opacity:0.6;
  139. width:65px;
  140. padding-bottom: 8px;
  141. }
  142. ul#navigation .user-online a {
  143. -moz-border-radius:8px 0 0 8px;
  144. -moz-box-shadow:0 2px 2px #000000;
  145. background-color:#ccbc67 ;
  146. background-position:center center;
  147. background-repeat:no-repeat;
  148. border:1px solid #FFFFFF;
  149. display:block;
  150. height:44px;
  151. margin-left:50px;
  152. opacity:0.6;
  153. width:65px;
  154. padding: 6px 0 8px 6px;
  155. }
  156. /* Other colors for other tabs in the earth tones */
  157. ul#navigation .user-connect a {
  158. -moz-border-radius:8px 0 0 8px;
  159. -moz-box-shadow:0 2px 2px #000000;
  160. background-color:#fac97a ;
  161. background-position:center center;
  162. background-repeat:no-repeat;
  163. border:1px solid #FFFFFF;
  164. display:block;
  165. height:44px;
  166. margin-left:50px;
  167. opacity:0.6;
  168. width:65px;
  169. padding: 6px 0 8px 6px;
  170. }
  171. ul#navigation .student-connect a {
  172. -moz-border-radius:8px 0 0 8px;
  173. -moz-box-shadow:0 2px 2px #000000;
  174. background-color:#d0d5d1 ;
  175. background-position:center center;
  176. background-repeat:no-repeat;
  177. border:1px solid #FFFFFF;
  178. display:block;
  179. height:44px;
  180. margin-left:50px;
  181. opacity:0.6;
  182. width:65px;
  183. padding: 6px 0 8px 6px;
  184. }
  185. /* for content section in main index.php file */
  186. /*
  187. |----------------------------------------------------------------------------
  188. | modified: to fit img and blocks in home page
  189. |----------------------------------------------------------------------------
  190. |
  191. */
  192. .maincontent {
  193. width: 60%;
  194. float: left;
  195. padding: 0 20px 0 20px;
  196. //padding: 0px;
  197. min-height: 333px;
  198. margin-top:8px;
  199. margin-bottom:30px;
  200. }
  201. /*
  202. .maincontent td {
  203. float: left;
  204. width: 100%;
  205. padding: 4px;
  206. }
  207. */
  208. #center {
  209. margin: 0 190px 0 0;
  210. padding: 10px 0 40px 0;
  211. min-height: 300px;
  212. background-color: #fff;
  213. }
  214. .invisible {
  215. color: #999;
  216. }
  217. .courseadminview table td a {
  218. color: #699030;
  219. font-weight: bold;
  220. }
  221. .Authoringview, .courseadminview, .platformadminview {
  222. position: relative;
  223. width: 80%;
  224. margin: 25px auto 10px;
  225. padding: 10px;
  226. }
  227. .Authoringview table td a {
  228. font-weight: bold;
  229. }
  230. .invisible a:link, .invisible a:visited {
  231. //color: #999;
  232. }
  233. a.invisible:link, a.invisible:visited {
  234. color: #999;
  235. }
  236. .clear {
  237. clear: both;
  238. line-height: 0px;
  239. height: 0;
  240. }
  241. input.link_alike {
  242. background-color: #FFFFFF;
  243. border-width: 0px;
  244. color: #4171b5;
  245. font-weight: bold;
  246. text-align: left;
  247. padding: 0px;
  248. margin: 0px;
  249. -moz-border-radius-bottomleft:5px;
  250. -moz-border-radius-bottomright:5px;
  251. -moz-border-radius-topleft:5px;
  252. -moz-border-radius-topright:5px;
  253. border:1px solid #E1E1E0;
  254. }
  255. input.link_alike:hover {
  256. background-color: #FFFFFF;
  257. border-width: 0px;
  258. color: #f3840d;
  259. font-weight: bold;
  260. text-align: left;
  261. padding: 0px;
  262. margin: 0px;
  263. -moz-border-radius-bottomleft:5px;
  264. -moz-border-radius-bottomright:5px;
  265. -moz-border-radius-topleft:5px;
  266. -moz-border-radius-topright:5px;
  267. border:1px solid #E1E1E0;
  268. }
  269. /*****************************************************
  270. * REDEFINED HTML TAGS *
  271. *****************************************************/
  272. img {
  273. border: none;
  274. }
  275. p, blockquote, ol, ul {
  276. font-size: 12px;
  277. }
  278. h1 {
  279. font-size: 21px;
  280. }
  281. h2 {
  282. font-size: 18px;
  283. }
  284. h3 {
  285. font-size: 15px;
  286. margin-top:0px;
  287. padding-top:0px;
  288. }
  289. h4 {
  290. font-size: 12px;
  291. }
  292. h5, h6 {
  293. font-family: verdana, arial, helvetica, sans-serif;
  294. }
  295. /* the following for regular <a> elements */
  296. a:link {
  297. font-family:Tahoma, Geneva, sans-serif;
  298. text-decoration: none;
  299. color :#01933e;
  300. }
  301. a:visited {
  302. font-family:Tahoma, Geneva, sans-serif;
  303. text-decoration: none;
  304. color : #01933e;
  305. }
  306. a:hover {
  307. font-family:Tahoma, Geneva, sans-serif;
  308. text-decoration: none;
  309. color: #f3840d;
  310. }
  311. a:active {
  312. font-family:Tahoma, Geneva, sans-serif;
  313. text-decoration: none;
  314. color : #01933e;
  315. }
  316. select, textarea {
  317. color : #000;
  318. border: 1px solid #000;
  319. }
  320. input.checkbox {
  321. border-width: 0;
  322. -moz-border-radius-bottomleft:5px;
  323. -moz-border-radius-bottomright:5px;
  324. -moz-border-radius-topleft:5px;
  325. -moz-border-radius-topright:5px;
  326. border:1px solid #E1E1E0;
  327. }
  328. select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
  329. cursor: pointer;
  330. font-size: 12px;
  331. -moz-border-radius-bottomleft:5px;
  332. -moz-border-radius-bottomright:5px;
  333. -moz-border-radius-topleft:5px;
  334. -moz-border-radius-topright:5px;
  335. border:1px solid #E1E1E0;
  336. }
  337. input[text] {
  338. font-size: 12px;
  339. -moz-border-radius-bottomleft:5px;
  340. -moz-border-radius-bottomright:5px;
  341. -moz-border-radius-topleft:5px;
  342. -moz-border-radius-topright:5px;
  343. border:1px solid #E1E1E0;
  344. }
  345. /* user_portal course status icon */
  346. .coursestatusicons {
  347. border: 0px solid #000;
  348. float: left;
  349. padding-right: 5px;
  350. width: auto;
  351. }
  352. /* user_portal course list */
  353. .courses {
  354. list-style-type: none;
  355. margin-bottom: 5px;
  356. height: 30px;
  357. }
  358. /* user_portal session list */
  359. .session_course_item .courses {
  360. margin-bottom: 5px;
  361. height:35px;
  362. }
  363. .session_course_item {
  364. /* padding: 0px; */
  365. margin: 0px;
  366. margin-bottom:15px;
  367. font-size:135%;
  368. }
  369. .session_course_item .item_closed, .userportal-course-item-title .item_closed {
  370. font-size:80%;
  371. }
  372. /*****************************************************
  373. * HEADER STYLES *
  374. *****************************************************/
  375. #header {
  376. width: 100%;
  377. padding: 0;
  378. margin: 0;
  379. }
  380. /********************************************************
  381. * HEADER 1: Title, portal, organisation, course title *
  382. ********************************************************/
  383. #header1 {
  384. font-size:12px;
  385. font-family:Tahoma, Geneva, sans-serif;
  386. padding:4px;
  387. color:#666666;
  388. height:53px;
  389. background-image:url(images/bg-header1.gif);
  390. Background-repeat:repeat-x;
  391. }
  392. #logoMinisterio {
  393. position: relative;
  394. float:right;
  395. width:99px;
  396. height:34px;
  397. margin-bottom: 0px;
  398. margin-top: 40px;
  399. margin-right: 5px;
  400. padding: 0px 0px 0px 0px;
  401. background: transparent;
  402. background-image: url("images/logoMouse.jpg");
  403. }
  404. #header1 a {
  405. font-size:12px;
  406. font-family:Tahoma, Geneva, sans-serif;
  407. font-weight:normal;
  408. color: #666666;
  409. text-decoration: none;
  410. }
  411. #header1 a:hover {
  412. text-decoration: underline;
  413. }
  414. #sitename {
  415. margin: 0;
  416. }
  417. #top_corner {
  418. }
  419. #institution {
  420. background-image: url(images/header-logo.png);
  421. background-repeat:no-repeat;
  422. height:80px;
  423. overflow:hidden;
  424. margin-left:4%;
  425. margin-top:1%;
  426. background-position:left bottom;
  427. }
  428. #my_courses {
  429. float:right;
  430. height:16px;
  431. padding-right:4%;
  432. }
  433. /********************************************************
  434. * HEADER 2: Users online, help, student/teacher view *
  435. ********************************************************/
  436. #header2 {
  437. width:90%;
  438. margin-left:auto;
  439. margin-right:auto;
  440. position: relative; /* to avoid the IE peekabo bug*/
  441. font-size: 1.0em;
  442. font-weight: normal;
  443. min-height:30px;
  444. padding: 0.2em 0.5em;
  445. padding-bottom: 0.2em;
  446. color: #666;
  447. }
  448. #header2 a {
  449. color: #666;
  450. text-decoration: none;
  451. font-weight:normal;
  452. }
  453. #header2 a:hover {
  454. text-decoration: underline;
  455. }
  456. /* Header2Right: online users, student/teacher view, help */
  457. #Header2Right ul {
  458. position: relative; /* to avoid the IE peekabo bug*/
  459. float: right;
  460. width: 70%;
  461. margin: 0;
  462. padding: 0;
  463. list-style-type: none;
  464. text-align: right;
  465. }
  466. #Header2Right ul li {
  467. display: inline;
  468. font-family:Tahoma, Geneva, sans-serif;
  469. font-size:12px;
  470. font-style:normal;
  471. color:#666666;
  472. }
  473. #Header2Right ul li a {
  474. padding: 4px 6px 4px 4px;
  475. font-family:Tahoma, Geneva, sans-serif;
  476. font-size:12px;
  477. font-style:normal;
  478. color:#666666;
  479. }
  480. /*****************************************************
  481. * HEADER 3: TABS OF THE HEADER *
  482. *****************************************************/
  483. #header3 {
  484. background-image:url(images/bg-header4.png);
  485. background-repeat:repeat-x;
  486. width:90%;
  487. margin-left:auto;
  488. margin-right:auto;
  489. font-size: 1.0em;
  490. color: #006;
  491. border-bottom: 2px solid #79aa0b;
  492. overflow:hidden;
  493. margin-bottom: 1px;
  494. padding: 0px 10px 0px 20px;
  495. height:36px;
  496. }
  497. #header3 a:hover {
  498. color:#fffc00D;
  499. }
  500. #header3 li {
  501. float:left; /* important for ieX*/
  502. }
  503. #header3 li a span:hover {
  504. color:#fffc00;
  505. }
  506. #header3 ul {
  507. padding-left:0px;
  508. list-style-type:none;
  509. height:25px;
  510. margin-left:0px;
  511. margin: 11px 0px 0px 0px ;
  512. }
  513. #header3 a {
  514. -moz-background-clip:border;
  515. -moz-background-inline-policy:continuous;
  516. -moz-background-origin:padding;
  517. background:transparent url(images/tab_left.gif) no-repeat scroll left top;
  518. color:#fff;
  519. cursor:pointer;
  520. float:left;
  521. height:25px;
  522. padding-left:9px;
  523. padding-right:2px;
  524. text-decoration:none;
  525. }
  526. #header3 li a span {
  527. background:transparent url(images/tab_right.gif) no-repeat scroll right top;
  528. color:#fff;
  529. cursor:pointer;
  530. display:block;
  531. float:left;
  532. height:20px;
  533. padding-right:10px;
  534. padding-top:5px;
  535. }
  536. #current a {
  537. background:transparent url(images/tab_left-active.gif) no-repeat scroll left top;
  538. color:#FFFFFF;
  539. cursor:pointer;
  540. float:left;
  541. height:25px;
  542. padding-left:9px;
  543. padding-right:2px;
  544. text-decoration:none;
  545. }
  546. #header3 li {
  547. float:left;
  548. }
  549. #current {
  550. background:transparent url(images/tab_center-active.gif) no-repeat scroll right top;;
  551. color:#FFFFFF;
  552. cursor:pointer;
  553. display:block;
  554. float:left;
  555. height:20px;
  556. overflow:hidden;
  557. padding-bottom:6px;
  558. margin-right:-3px;
  559. margin-right:3px;
  560. }
  561. #current #tab_active {
  562. background:transparent url(images/tab_right-active.gif) no-repeat scroll right top;
  563. color:#fff;
  564. cursor:pointer;
  565. display:block;
  566. float:left;
  567. height:20px;
  568. padding-right:10px;
  569. padding-top:5px;
  570. margin-right:-2px;
  571. }
  572. #header3 .banner_links {
  573. margin: 0;
  574. }
  575. #header3 input.logout {
  576. /* makes an input appear like a link in this header */
  577. margin: 0 0 0 0;
  578. padding: 0 30px 0 0;
  579. background-color: transparent;
  580. border: none;
  581. COLOR: #fff;
  582. font-size: 1.0em;
  583. font-weight:bold;
  584. font-family: verdana, arial, helvetica, sans-serif;
  585. display: inline;
  586. PADDING-RIGHT: 0px;
  587. PADDING-TOP: 3px;
  588. -moz-border-radius-bottomleft:5px;
  589. -moz-border-radius-bottomright:5px;
  590. -moz-border-radius-topleft:5px;
  591. -moz-border-radius-topright:5px;
  592. border:1px solid #E1E1E0;
  593. }
  594. #header3 input:hover {
  595. COLOR: #999;
  596. -moz-border-radius-bottomleft:5px;
  597. -moz-border-radius-bottomright:5px;
  598. -moz-border-radius-topleft:5px;
  599. -moz-border-radius-topright:5px;
  600. border:1px solid #E1E1E0;
  601. }
  602. #header3 input {
  603. PADDING-RIGHT: 15px;
  604. DISPLAY: block;
  605. PADDING-LEFT: 6px;
  606. -moz-border-radius-bottomleft:5px;
  607. -moz-border-radius-bottomright:5px;
  608. -moz-border-radius-topleft:5px;
  609. -moz-border-radius-topright:5px;
  610. border:1px solid #E1E1E0;
  611. }
  612. #logout {
  613. margin-bottom:0px;
  614. padding-bottom:0px;
  615. display: inline;
  616. float: right;
  617. width: auto;
  618. text-align: right;
  619. font-size: 1.0em;
  620. height:25px;
  621. }
  622. /*
  623. #header3 #logout {
  624. float:left;
  625. margin-bottom:0;
  626. margin-top:0;
  627. }
  628. #logout {
  629. overflow:hidden;
  630. width: auto;
  631. text-align: right;
  632. font-size: 1.0em;
  633. }
  634. /*****************************************************
  635. * HEADER 3: not used *
  636. *****************************************************/
  637. #header4 {
  638. width:90%;
  639. margin-left:auto;
  640. margin-right:auto;
  641. background-image:url(images/bg-header4.png);
  642. background-repeat:repeat-x;
  643. color: #009;
  644. padding: 4px 10px 4px 20px;
  645. clear:right;
  646. height:14px;
  647. }
  648. #header4 a {
  649. color: #666;
  650. }
  651. #header4 a:hover {
  652. text-decoration: none;
  653. color: #f3840d;
  654. }
  655. /* The tool shortcuts */
  656. #toolshortcuts {
  657. clear:right;
  658. margin-left:auto;
  659. margin-right:auto;
  660. text-align:right;
  661. width:92%;
  662. }
  663. /*****************************************************
  664. * FOOTER STYLES *
  665. *****************************************************/
  666. #footer {
  667. background-color: #79aa0b;
  668. background-image: url(images/bg-footer.gif);
  669. background-repeat:repeat-x;
  670. font-size: 12px;
  671. color:#ffffff;
  672. /*height: 10em;*/ /* Do not change this value */
  673. overflow:hidden;
  674. width: 100%;
  675. padding-bottom:10px;
  676. }
  677. /* Sticky footer*/
  678. .push {
  679. height: 10em; /* Very important */
  680. }
  681. #footer .copyright {
  682. float: right;
  683. padding-top:53px;
  684. margin-right:5%;
  685. background-color: #79aa0b;
  686. background-image: url(images/bg-footer.gif);
  687. background-repeat:repeat-x;
  688. }
  689. .footer_emails{
  690. float: left;
  691. margin-right:5%;
  692. background-color: #79aa0b;
  693. background-image: url(images/bg-footer.gif);
  694. background-repeat:repeat-x;
  695. padding-top:60px;
  696. }
  697. #footer #platformmanager {
  698. float: left;
  699. margin-left: 10px;
  700. }
  701. #footer #coursemanager {
  702. float: left;
  703. margin-left: 10px;
  704. }
  705. #footer a {
  706. color:#fff;
  707. font-weight:bold;
  708. }
  709. #bottom_corner {
  710. }
  711. /*
  712. ==============================================================================
  713. NAVIGATION MENU
  714. ==============================================================================
  715. */
  716. #menu-wrapper {
  717. width:200px;
  718. float: right;
  719. }
  720. #menu {
  721. -moz-border-radius: 10px; border: 1px solid #e1e1e0;
  722. -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
  723. -opera-border-radius: 10px; border: 1px solid #e1e1e0;
  724. margin-top:20px;
  725. margin-right:10px;
  726. margin-bottom:0px;
  727. padding-left:10px;
  728. padding-right:10px;
  729. padding-top:5px;
  730. padding-bottom:30px;
  731. width:200px;
  732. float: right;
  733. min-height: 150px;
  734. }
  735. .menucaption {
  736. font-size: 12px;
  737. font-weight: bold;
  738. padding-left: 12px;
  739. }
  740. .menusection {
  741. margin: 20px 0px 0 6px;
  742. padding-left: 3px;
  743. width: auto;
  744. }
  745. .menusectioncaption {
  746. font-weight:bold;
  747. font-size: 12px;
  748. position: relative;
  749. top: -5px;
  750. }
  751. .menulist {
  752. list-style: none;
  753. margin: 0 0 10px 0;
  754. padding: 0;
  755. list-style-image:none;
  756. list-style-position:outside;
  757. list-style-type:none;
  758. }
  759. .menulist li{
  760. /* float:left; */
  761. /* margin-left:10px; */
  762. margin-bottom:10px;
  763. display:list-item;
  764. }
  765. #centerwrap {
  766. float: left;
  767. width: 100%;
  768. margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
  769. it's empty otherwise. The difference is made up by putting a
  770. negative left margin on the left float:
  771. Note IE/Mac doesn't like this method ~ it wants the 100% so it can
  772. be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
  773. */
  774. }
  775. #center {
  776. margin: 0 190px 0 0;
  777. min-height: 300px;
  778. padding: 10px 0 40px 0;
  779. }
  780. #toolnav {
  781. margin:-7px 0 0 -5%;
  782. overflow:hidden;
  783. padding:0;
  784. width:180px;
  785. float:right;
  786. }
  787. #toolnav img {
  788. float: left;
  789. width: 25px;
  790. height: 25px;
  791. margin: 0 4px 0 0;
  792. }
  793. /* Hide from IE5-mac. Only IE-win sees this. \*/
  794. * html #toolnav {
  795. margin-right: 0px;
  796. }
  797. * html #center {
  798. height: 1%;
  799. margin-left: 0;
  800. }
  801. /* End hide from IE5/mac */
  802. /*
  803. this lets the navigation menu appear to the left:
  804. #center {
  805. margin: 0 0 0 180px;
  806. min-height: 300px;
  807. padding: 10px 0 40px 0;
  808. }
  809. #toolnav {
  810. float: left;
  811. width: 180px;
  812. padding: 20px 0 0 0;
  813. margin-left: -5%;
  814. }
  815. */
  816. /*
  817. ------------------------------------------------------------------------------
  818. course navigation menu as a definition list
  819. ------------------------------------------------------------------------------
  820. */
  821. #swap_menu_link {
  822. float: left;
  823. }
  824. #toolnavbox {
  825. border: 1px solid #4271b5;
  826. float: left;
  827. margin: 0 0 0 10px;
  828. padding: 0;
  829. }
  830. #toolnavbox dl {
  831. background: transparent;
  832. font-size: 12px;
  833. margin: 0 auto;
  834. text-align: center;
  835. width: 160px;
  836. }
  837. #toolnavbox dt {
  838. background: transparent;
  839. border-bottom: 1px solid #fff;
  840. color: #000;
  841. font-size: 12px;
  842. font-weight: bold;
  843. margin: 0;
  844. text-align: center;
  845. }
  846. #toolnavbox dd {
  847. background: #9fd854;
  848. border-bottom:1px solid #fff;
  849. color: #009;
  850. margin: 0;
  851. text-align: left;
  852. }
  853. #toolnavlist a, #toolnavlist a:link {
  854. background: #9fd854;
  855. color: #4171b5;
  856. display: block;
  857. margin: 0;
  858. padding: 5px 5px 5px 10px;
  859. text-decoration: none;
  860. line-height:24px;
  861. }
  862. #toolnavlist a:hover, #toolnavlist a#here {
  863. background: #fff;
  864. color:#4171b5;
  865. }
  866. /* --- end of course navigation menu section --- */
  867. /*
  868. this lets the navigation menu appear to the left:
  869. #center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
  870. min-height: 300px; }
  871. #toolnav { float: left; width: 180px; padding: 20px 0 0 0;
  872. margin-left: -5%;
  873. }
  874. #toolnav { float: right; width: 180px; padding: 0; margin: 0;
  875. margin-left: -5%; /* the difference to make the left colum appear flush left
  876. }*/
  877. /* Hide from IE5-mac. Only IE-win sees this. \*/
  878. * html #toolnav {
  879. margin-right: 0px;
  880. }
  881. * html #center {
  882. height: 1%;
  883. margin-left: 0;
  884. }
  885. /* End hide from IE5/mac */
  886. /*****************************************************
  887. * LOGIN AND LANGUAGE FORM *
  888. *****************************************************/
  889. #lang_form {
  890. text-align: left;
  891. font-size: 12px;
  892. margin: 2px 0 10px 0;
  893. padding: 2px;
  894. }
  895. #lang_form input, #lang_form select {
  896. font-size: 12px;
  897. margin-left: 6px;
  898. -moz-border-radius-bottomleft:5px;
  899. -moz-border-radius-bottomright:5px;
  900. -moz-border-radius-topleft:5px;
  901. -moz-border-radius-topright:5px;
  902. border:1px solid #E1E1E0;
  903. /* width:100%; */
  904. }
  905. #formLogin label {
  906. font-size: 12px;
  907. margin: 4px 6px;
  908. font-family:Tahoma, Geneva, sans-serif;
  909. color:#666666;
  910. }
  911. #formLogin input {
  912. font-size: 13px;
  913. margin: 4px 6px;
  914. padding-left:5px;
  915. -moz-border-radius-bottomleft:5px;
  916. -moz-border-radius-bottomright:5px;
  917. -moz-border-radius-topleft:5px;
  918. -moz-border-radius-topright:5px;
  919. border:1px solid #E1E1E0;
  920. /*width:100%;*/
  921. }
  922. #login_fail {
  923. margin: 0 6px 6px 6px;
  924. padding: 4px;
  925. border: 1px solid #f00;
  926. background-color: #fff;
  927. font-size: 12px;
  928. color: #f00;
  929. }
  930. input.mainoption {
  931. font-weight : bold;
  932. -moz-border-radius-bottomleft:5px;
  933. -moz-border-radius-bottomright:5px;
  934. -moz-border-radius-topleft:5px;
  935. -moz-border-radius-topright:5px;
  936. border:1px solid #E1E1E0;
  937. }
  938. input.liteoption {
  939. font-weight : normal;
  940. -moz-border-radius-bottomleft:5px;
  941. -moz-border-radius-bottomright:5px;
  942. -moz-border-radius-topleft:5px;
  943. -moz-border-radius-topright:5px;
  944. border:1px solid #E1E1E0;
  945. }
  946. /*****************************************************
  947. * COURSE HOMEPAGE *
  948. *****************************************************/
  949. /* various sections in course-home.php file */
  950. #toolremove {
  951. width: 40%;
  952. color: #f00;
  953. font-weight: bold;
  954. margin: 10px auto;
  955. padding: 10px;
  956. border: 2px solid #f00;
  957. }
  958. #courseintro {
  959. clear: both;
  960. width: 80%;
  961. /* margin: 10px auto; */
  962. padding: 10px;
  963. border-bottom: 1px solid #dcdcdc;
  964. }
  965. #courseintro_icons {
  966. clear: both;
  967. width: 80%;
  968. margin: 10px auto;
  969. }
  970. .everybodyview {
  971. position: relative; /* to avoid the IE peekabo bug ?*/
  972. -moz-border-radius-bottomleft:5px;
  973. -moz-border-radius-bottomright:5px;
  974. -moz-border-radius-topleft:5px;
  975. -moz-border-radius-topright:5px;
  976. border:1px solid #E1E1E0;
  977. width: 80%;
  978. margin: 10px auto;
  979. padding: 10px;
  980. }
  981. .courseadminview, .platformadminview {
  982. position: relative;
  983. width: 80%;
  984. margin: 25px auto 10px;
  985. padding: 10px;
  986. -moz-border-radius-bottomleft:5px;
  987. -moz-border-radius-bottomright:5px;
  988. -moz-border-radius-topleft:5px;
  989. -moz-border-radius-topright:5px;
  990. border:1px solid #E1E1E0;
  991. }
  992. .viewcaption {
  993. position: relative;
  994. top: -20px;
  995. font-size: 12px;
  996. font-weight: bold;
  997. color: #aaa;
  998. background-color: #fff;
  999. padding: 0 4px;
  1000. }
  1001. .tool-icon {
  1002. margin-bottom: -3px;
  1003. }
  1004. /***********************************/
  1005. /*****************************************************
  1006. * AGENDA *
  1007. *****************************************************/
  1008. #agenda {
  1009. width: 100%;
  1010. margin: 0 auto;
  1011. border: 1px solid #bbb;
  1012. border-collapse: collapse;
  1013. }
  1014. .agenda_month_divider {
  1015. background-color: #dcdcdc;
  1016. font-weight: bold;
  1017. font-size: 12px;
  1018. color: #666;
  1019. text-align: center;
  1020. }
  1021. #agenda .title a {
  1022. color: #fff;
  1023. }
  1024. #agenda .agendaitem {
  1025. font-size: 12px;
  1026. }
  1027. #smallcalendar .title {
  1028. background-color: #dcdcdc;
  1029. font-weight: bold;
  1030. padding: 5px;
  1031. color: #666;
  1032. text-align: center;
  1033. font-size: 11px;
  1034. }
  1035. #smallcalendar .title a {
  1036. color: #666;
  1037. }
  1038. #agenda_select {
  1039. list-style: none;
  1040. border: 0px solid green;
  1041. margin: 30px 0 0 0;
  1042. padding: 0 0 0 10px;
  1043. }
  1044. /* ---------------------------------------------------
  1045. styles for the agenda (day, week, month view)
  1046. -----------------------------------------------------*/
  1047. #agenda_list {
  1048. width: 100%;
  1049. margin: 0 auto;
  1050. border: 1px solid #fff;
  1051. border-collapse: collapse;
  1052. }
  1053. /*The caption of the calendar (displays the month and the << and >> links*/
  1054. #agenda_list .title {
  1055. background-color: #dcdcdc;
  1056. font-weight: bold;
  1057. font-size: 12px;
  1058. color: #666;
  1059. text-align: left;
  1060. padding: 2px 10px;
  1061. text-align: center;
  1062. border: 1px solid #bbb;
  1063. }
  1064. #agenda_list .title a:link, #agenda_list #title a:visited {
  1065. background-color: #dcdcdc;
  1066. font-weight: bold;
  1067. font-size: 11px;
  1068. color: #666;
  1069. padding: 2px 10px;
  1070. text-align: center;
  1071. }
  1072. #agenda_list .title a:hover {
  1073. background-color: #dcdcdc;
  1074. font-weight: bold;
  1075. font-size: 11px;
  1076. color: #f3840d;
  1077. padding: 2px 10px;
  1078. text-align: center;
  1079. }
  1080. /* The cells with the name of the days of the weeks (mon->sun)*/
  1081. #agenda_list .weekdays {
  1082. background-color: #dcdcdc;
  1083. text-align: center;
  1084. font-weight: bold;
  1085. border: 1px solid #264269;
  1086. border-collapse: collapse;
  1087. }
  1088. /* The cells for the days (1->31) */
  1089. #agenda_list .days_week {
  1090. height: 40px;
  1091. width: 12%;
  1092. text-align: left;
  1093. vertical-align: top;
  1094. border: 1px solid #ccc;
  1095. border-collapse: collapse;
  1096. background-color: #f5f5f5;
  1097. }
  1098. #agenda_list .days_weekend {
  1099. height: 40px;
  1100. width: 12%;
  1101. text-align: left;
  1102. vertical-align: top;
  1103. border: 1px solid #ccc;
  1104. border-collapse: collapse;
  1105. background-color: #e6e6e6;
  1106. }
  1107. #agenda_list .days_today {
  1108. height: 40px;
  1109. width: 12%;
  1110. text-align: left;
  1111. vertical-align: top;
  1112. border: 1px solid #ccc;
  1113. border-collapse: collapse;
  1114. background-color: #FFFFC0;
  1115. }
  1116. #agenda_list th {
  1117. background-color:#E5EDF9;
  1118. border:1px solid gray;
  1119. padding-right:12px;
  1120. }
  1121. /* text in the cells: display of agenda items (visible)*/
  1122. #agenda_list .data {
  1123. background-color: #eee;
  1124. text-align: left;
  1125. padding: 2px 10px;
  1126. font-weight: bold;
  1127. border: 0px solid #dcdcdc;
  1128. border-collapse: collapse;
  1129. }
  1130. #agenda_list .datanotbold {
  1131. background-color: #eee;
  1132. text-align: left;
  1133. padding: 2px 10px;
  1134. font-weight: normal;
  1135. border: 0px solid #dcdcdc;
  1136. border-collapse: collapse;
  1137. }
  1138. #agenda_list .text {
  1139. background-color: #fff;
  1140. text-align: left;
  1141. padding: 2px 10px;
  1142. font-weight: normal;
  1143. border: 0px solid #dcdcdc;
  1144. border-collapse: collapse;
  1145. }
  1146. /*text in the cells: display of agenda items (invisible)*/
  1147. #agenda_list .data_hidden {
  1148. background-color: #eee;
  1149. text-align: left;
  1150. padding: 2px 10px;
  1151. font-weight: bold;
  1152. border: 0px solid #dcdcdc;
  1153. border-collapse: collapse;
  1154. color: #999999;
  1155. }
  1156. #agenda_list .datanotbold_hidden {
  1157. background-color: #eee;
  1158. text-align: left;
  1159. padding: 2px 10px;
  1160. font-weight: normal;
  1161. border: 0px solid #dcdcdc;
  1162. border-collapse: collapse;
  1163. color: #999999;
  1164. }
  1165. #agenda_list .text_hidden {
  1166. background-color: #fff;
  1167. text-align: left;
  1168. padding: 2px 10px;
  1169. font-weight: normal;
  1170. border: 0px solid #dcdcdc;
  1171. border-collapse: collapse;
  1172. color: #999999;
  1173. }
  1174. /*text in the cells: display of agenda items (highlighted)*/
  1175. #agenda_list .datanow {
  1176. background-color: #FFCC00;
  1177. text-align: left;
  1178. padding: 2px 10px;
  1179. font-weight: bold;
  1180. border: 0px solid #dcdcdc;
  1181. border-collapse: collapse;
  1182. }
  1183. #agenda_list .datanotboldnow {
  1184. background-color: #FFCC00;
  1185. text-align: left;
  1186. padding: 2px 10px;
  1187. font-weight: normal;
  1188. border: 0px solid #dcdcdc;
  1189. border-collapse: collapse;
  1190. }
  1191. #agenda_list .textnow {
  1192. background-color: #fff;
  1193. text-align: left;
  1194. padding: 2px 10px;
  1195. font-weight: normal;
  1196. border: 0px solid #dcdcdc;
  1197. border-collapse: collapse;
  1198. }
  1199. /* ---------------------------------------------------
  1200. styles for the mini agenda
  1201. -----------------------------------------------------*/
  1202. #smallcalendar {
  1203. width: 100%;
  1204. margin: 0 auto;
  1205. border: 1px solid #fff;
  1206. border-collapse: collapse;
  1207. }
  1208. #smallcalendar .weekdays {
  1209. background-color: #dcdcdc;
  1210. text-align: center;
  1211. font-size: 11px;
  1212. font-weight: bold;
  1213. border: 1px solid #fff;
  1214. border-collapse: collapse;
  1215. }
  1216. #smallcalendar .days_week {
  1217. background-color: #f5f5f5;
  1218. text-align: center;
  1219. font-size: 11px;
  1220. border-collapse: collapse;
  1221. }
  1222. #smallcalendar .days_weekend {
  1223. background-color: #e6e6e6;
  1224. text-align: center;
  1225. font-size: 11px;
  1226. border: 1px solid #fff;
  1227. border-collapse: collapse;
  1228. }
  1229. #smallcalendar .days_today {
  1230. width: 12%;
  1231. text-align: center;
  1232. font-size: 11px;
  1233. border: 1px solid #FA8500;
  1234. border-collapse: collapse;
  1235. background-color: #FFCA8D;
  1236. }
  1237. /* ---------------------------------------------------
  1238. styles for the personal agenda
  1239. -----------------------------------------------------*/
  1240. .personal_agenda {
  1241. color: #008000;
  1242. }
  1243. .personal_agenda a:link, .personal_agenda a:visited {
  1244. color: #008000;
  1245. }
  1246. a.personal_agenda:link, a.personal_agenda:visited {
  1247. color: #008000;
  1248. }
  1249. .personal_agenda a:hover, .personal_agenda a:hover {
  1250. color: #666666;
  1251. }
  1252. a.personal_agenda:hover, a.personal_agenda:hover {
  1253. color: #666666;
  1254. }
  1255. /*****************************************************
  1256. * DISPLAY MESSAGES *
  1257. *****************************************************/
  1258. /* normal and erro message-box */
  1259. .normal-message {
  1260. position: relative;
  1261. margin-top: 10px;
  1262. margin-bottom: 10px;
  1263. min-height: 30px;
  1264. border-width: 1px;
  1265. border-style: solid;
  1266. border: 1px solid #4171B5;
  1267. -moz-border-radius: 10px;
  1268. padding: 6px;
  1269. color: #00407F;
  1270. background-color: #EFEFEF;
  1271. }
  1272. .warning-message {
  1273. position: relative;
  1274. margin-top: 10px;
  1275. margin-bottom: 10px;
  1276. border-width: 1px;
  1277. border-style: solid;
  1278. padding: 6px;
  1279. border: 1px solid #FFB30F;
  1280. -moz-border-radius: 10px;
  1281. color: #000;
  1282. background-color: #FFEFA7;
  1283. min-height: 30px;
  1284. }
  1285. .confirmation-message {
  1286. background-color:#CAF0C7;
  1287. border-color:#1F8323;
  1288. color:#1F8323;
  1289. position: relative;
  1290. margin-top: 10px;
  1291. margin-bottom: 10px;
  1292. border-width: 1px;
  1293. border-style: solid;
  1294. -moz-border-radius: 10px;
  1295. padding:6px;
  1296. min-height: 30px;
  1297. }
  1298. .error-message {
  1299. position: relative;
  1300. margin-top: 10px;
  1301. margin-bottom: 10px;
  1302. border-width: 1px;
  1303. border-style: solid;
  1304. -moz-border-radius: 10px;
  1305. padding: 6px;
  1306. border: 1px solid #FF0000;
  1307. color: #440000;
  1308. background-color: #FFD1D1;
  1309. min-height: 30px;
  1310. }
  1311. .confirmation-message .bottom-link, .error-message .bottom-link, .normal-message .bottom-link, .warning-message .bottom-link {
  1312. position: absolute;
  1313. bottom: 0.2em;
  1314. right: 0.5em;
  1315. }
  1316. /* New training */
  1317. .bottom-link {
  1318. border: 2px outset;
  1319. text-decoration: none;
  1320. background-color:#9fd854;
  1321. border-color: #D4E2F6;
  1322. background-image:url(images/button_back.jpg);
  1323. background-position:10px 50%;
  1324. background-repeat:no-repeat;
  1325. font-size:100%;
  1326. margin-top:1px;
  1327. padding:5px 20px;
  1328. vertical-align:middle;
  1329. padding-left:35px;
  1330. display:block;
  1331. }
  1332. .bottom-link:active {
  1333. border: 2px inset;
  1334. }
  1335. .bottom-link:link {
  1336. border-style: solid;
  1337. border-width : 1px 2px 2px 1px;
  1338. text-decoration : none;
  1339. border-color : #69f #00f #00f #69f;
  1340. }
  1341. .bottom-link:hover {
  1342. border-color: #ccc;
  1343. color: #111;
  1344. }
  1345. /**********************************************
  1346. * DOCUMENT MODULE *
  1347. **********************************************/
  1348. /* styles from the document.php file */
  1349. .comment {
  1350. margin-left: 30px;
  1351. }
  1352. /* styles from the upload.php file */
  1353. dl.upload_option {
  1354. margin: 1em 0;
  1355. padding: 0;
  1356. }
  1357. .upload_option dt {
  1358. font-weight:bold;
  1359. margin:0;
  1360. }
  1361. .upload_option dd {
  1362. margin:0;
  1363. }
  1364. .document_owner {
  1365. text-align: right;
  1366. }
  1367. /**********************************************
  1368. * DROPBOX MODULE *
  1369. **********************************************/
  1370. /* styles from dropbox.php file */
  1371. .dropbox_detail {
  1372. font-size: small
  1373. }
  1374. .dropbox_date {
  1375. color: #737780;
  1376. font-style: italic;
  1377. font-weight: normal;
  1378. }
  1379. .dropbox_person {
  1380. font-weight: bold
  1381. }
  1382. .dropbox_listTitle {
  1383. color: #000000;
  1384. }
  1385. .dropbox_feedback {
  1386. font-size: x-small;
  1387. height: 50px;
  1388. width: 200px;
  1389. overflow: auto
  1390. }
  1391. .dropbox_feedbacks {
  1392. height: 250px;
  1393. width: 100%;
  1394. overflow: auto
  1395. }
  1396. /**********************************************
  1397. * CHAT MODULE *
  1398. **********************************************/
  1399. /* styles for chat / conference tools */
  1400. #chat_entermessage {
  1401. background-color: #D6E5FA;
  1402. border-top: 1px solid #dcdcdc;
  1403. padding: 5px;
  1404. margin: 0;
  1405. }
  1406. /* the following for the greyed out elements */
  1407. a.nobold:link, a.nobold:visited, a.nobold:active {
  1408. font-weight: normal;
  1409. color: #999;
  1410. margin: 0 0 0 25px;
  1411. }
  1412. a.nobold:hover {
  1413. font-weight: normal;
  1414. color: #999;
  1415. text-decoration: underline;
  1416. margin: 0 0 0 25px;
  1417. }
  1418. .note {
  1419. margin: 6px;
  1420. font-size: 12px;
  1421. line-height: 14px;
  1422. font-family: verdana, arial, helvetica, sans-serif;
  1423. background-color: #9fd854;
  1424. color: #666666;
  1425. border: 1px solid #bbb;
  1426. padding: 10px 10px 10px 10px;
  1427. }
  1428. .note b {
  1429. margin: 10px 10px 5px 0px;
  1430. }
  1431. .alternativeBgLight {
  1432. background-color: #f5f5f5;
  1433. border: 1px solid #dcdcdc;
  1434. border-collapse: collapse;
  1435. }
  1436. .alternativeBgDark {
  1437. background-color: #ccf;
  1438. border: 1px solid #dcdcdc;
  1439. border-collapse: collapse;
  1440. }
  1441. .myagendatoday {
  1442. background-color: #FFCA8D;
  1443. border-collapse: collapse;
  1444. font-family: verdana, arial, helvetica, sans-serif;
  1445. color: #CC3300;
  1446. font-weight: bold;
  1447. }
  1448. /*****************************************************
  1449. * FORM STYLES *
  1450. *****************************************************/
  1451. div.row {
  1452. clear: both;
  1453. padding-top: 5px;
  1454. }
  1455. div.row div.form_header {
  1456. white-space: nowrap;
  1457. padding: 2px;
  1458. background-color: #E1E1E1;
  1459. border: 1px solid #bbb;
  1460. }
  1461. div.row div.label {
  1462. float: left;
  1463. width: 18%;
  1464. text-align: right;
  1465. }
  1466. div.row div.formw {
  1467. width: 80%;
  1468. float:left;
  1469. }
  1470. [dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
  1471. float: left;
  1472. text-align: right;
  1473. }
  1474. [dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
  1475. float: right;
  1476. text-align: left;
  1477. }
  1478. span.form_required {
  1479. color: #f00;
  1480. }
  1481. span.form_error {
  1482. color: #f00;
  1483. font-size: x-small;
  1484. margin: 2px;
  1485. }
  1486. /*****************************************************
  1487. * DATA TABLE STYLES *
  1488. *****************************************************/
  1489. .cell_header {
  1490. background-color: #EEEEFF;
  1491. font-weight:bold;
  1492. text-align:left;
  1493. padding-left:5px;
  1494. }
  1495. /* header cell in data table in tools */
  1496. .data_table {
  1497. /*border-collapse: collapse;
  1498. width: 100%;
  1499. padding: 5px;*/
  1500. margin-top: 8px;
  1501. border-collapse: collapse;
  1502. border-spacing: 0;
  1503. border: 1px solid #DDDDDD;
  1504. font-size: 12px;
  1505. margin-bottom: 15px;
  1506. text-align: left;
  1507. width: 100%;
  1508. }
  1509. .data_table th {
  1510. /*padding-right: 12px;
  1511. border: 1px solid gray;
  1512. background-color: #E5EDF9;*/
  1513. border-bottom: 1px solid #DDDDDD;
  1514. line-height: normal;
  1515. padding: 8px 10px;
  1516. text-align: left;
  1517. vertical-align: middle;
  1518. background-color: #F2F2F2;
  1519. }
  1520. .data_table tr.row_odd {
  1521. background-color: #FBFBFB;
  1522. }
  1523. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  1524. background-color: #E5EDF9;
  1525. }
  1526. .data_table tr.row_even {
  1527. background-color: #fff;
  1528. }
  1529. .data_table td {
  1530. /*
  1531. padding: 5px;
  1532. vertical-align: top;
  1533. border-bottom: 1px solid #b0b0b0;
  1534. border-right: 1px dotted #e1e1e1;
  1535. border-left: 1px dotted #e1e1e1;*/
  1536. border-bottom: 1px solid #DDDDDD;
  1537. line-height: normal;
  1538. /*padding: 8px 10px; */
  1539. padding: 6px;
  1540. text-align: left;
  1541. vertical-align: middle;
  1542. }
  1543. .data_table_pagination {
  1544. width:100%;
  1545. margin-top: 8px;
  1546. }
  1547. /* admin page tool list definitions */
  1548. .tool_list dt {
  1549. font-weight: bold;
  1550. }
  1551. .tool_list dd {
  1552. margin: 0;
  1553. padding: 4px 0 0 10px;
  1554. }
  1555. /* divs for category list / platform news on home page */
  1556. .home_cats {
  1557. width: 45%;
  1558. float: left;
  1559. position: relative;
  1560. margin: 0;
  1561. padding: 0px;
  1562. padding-top: 8px;
  1563. background: transparent;
  1564. }
  1565. .home_news {
  1566. width: 45%;
  1567. float: right;
  1568. position: relative;
  1569. margin: 0;
  1570. padding: 0px;
  1571. padding-top: 8px;
  1572. background: #fff;
  1573. }
  1574. label.left {
  1575. float: left;
  1576. width: 15em;
  1577. margin: 0 0 0.5em 0;
  1578. }
  1579. form br {
  1580. clear: both;
  1581. }
  1582. /* Fix for alignment problem in IE-Win browsers */
  1583. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1584. * html .label {
  1585. margin-right: 10px;
  1586. }
  1587. * html .data {
  1588. height: 1%;
  1589. margin-left: 0;
  1590. }
  1591. /* End hide from IE5/mac */
  1592. .radio, .checkbox {
  1593. margin: 0;
  1594. padding: 0;
  1595. border: none;
  1596. background-color: transparent;
  1597. }
  1598. .required {
  1599. color: #f00;
  1600. font-weight: bold;
  1601. }
  1602. /* Admin section */
  1603. div.admin_section {
  1604. -moz-border-radius-bottomleft:10px;
  1605. -moz-border-radius-bottomright:10px;
  1606. -moz-border-radius-topleft:10px;
  1607. -moz-border-radius-topright:10px;
  1608. border:1px solid #E1E1E0;
  1609. width: 40%;
  1610. float: left;
  1611. padding: 5px;
  1612. margin: 10px 20px;
  1613. min-height:200px;
  1614. }
  1615. div.admin_section h4 {
  1616. margin: 0;
  1617. border-bottom: 1px solid #E1E1E0;
  1618. width: 100%;
  1619. }
  1620. .admin_section li {
  1621. background-image:url(images/bullet.gif);
  1622. background-repeat:no-repeat;
  1623. list-style:none;
  1624. background-position: center left;
  1625. }
  1626. .admin_section li a {
  1627. margin-left:15px;
  1628. }
  1629. .admin_section li input {
  1630. -moz-border-radius-bottomleft:5px;
  1631. -moz-border-radius-bottomright:5px;
  1632. -moz-border-radius-topleft:5px;
  1633. -moz-border-radius-topright:5px;
  1634. border:1px solid #E1E1E0;
  1635. }
  1636. .user_course_category {
  1637. background-color: #9fd854;
  1638. border: 1px solid #666;
  1639. font-weight: bold;
  1640. color: #666;
  1641. list-style-type: none;
  1642. margin: 5px;
  1643. padding: 5px;
  1644. }
  1645. .sessions_list {
  1646. line-height: 20px;
  1647. margin-top: 20px;
  1648. }
  1649. .sessions_list_inactive {
  1650. line-height: 20px;
  1651. }
  1652. .session_box {
  1653. border: 1px solid #DCE5F3;
  1654. /* font-weight: bold; */
  1655. color: #666;
  1656. list-style-type: none;
  1657. margin:5px 5px 10px 5px;
  1658. padding: 5px;
  1659. background-color:#FFF;
  1660. -webkit-border-radius: 10px;
  1661. -moz-border-radius: 10px;
  1662. border-radius: 10px;
  1663. }
  1664. .sub_session_box {
  1665. border: 1px solid #DCE5F3;
  1666. /* font-weight: bold; */
  1667. color: #666;
  1668. list-style-type: none;
  1669. margin:5px 5px 10px 0px;
  1670. padding: 5px;
  1671. background-color:#FFF;
  1672. -webkit-border-radius: 10px;
  1673. -moz-border-radius: 10px;
  1674. border-radius: 10px;
  1675. }
  1676. .sub_session_box_title {
  1677. margin-bottom: 10px;
  1678. background-color:#F9F9F9;
  1679. }
  1680. .session_box_title {
  1681. margin-bottom: 10px;
  1682. background-color:#F9F9F9;
  1683. }
  1684. .admin_section {
  1685. }
  1686. .session_box_coach {
  1687. }
  1688. /***************************************************************
  1689. * CHAMILO CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
  1690. ***************************************************************/
  1691. .sectiontitle {
  1692. background-color: #E1E1E1;
  1693. border: 1px solid #ABDAEA;
  1694. font-weight: bold;
  1695. color: #666666;
  1696. list-style-type: none;
  1697. margin: 5px;
  1698. padding: 5px;
  1699. font-size: 11px;
  1700. }
  1701. .sectioncomment {
  1702. color: #000000;
  1703. margin: 5px;
  1704. padding: 5px;
  1705. font-size: 11px;
  1706. }
  1707. .sectionvalue {
  1708. list-style-type: none;
  1709. margin: 5px;
  1710. padding: 5px;
  1711. }
  1712. /*****************************************************
  1713. * ANNOUNCEMENTS *
  1714. *****************************************************/
  1715. .announcements_datum {
  1716. font-size: 12px;
  1717. font-style: italic;
  1718. color: #666666;
  1719. }
  1720. /*****************************************************
  1721. * SYSTEM ANNOUNCEMENTS *
  1722. *****************************************************/
  1723. div.system_announcement {
  1724. padding: 10px;
  1725. border: 1px solid #ddd;
  1726. -moz-border-radius-topright : 5px;
  1727. -moz-border-radius-topleft : 5px;
  1728. -moz-border-radius-bottomright : 5px;
  1729. -moz-border-radius-bottomleft : 5px;
  1730. min-height:20px;
  1731. }
  1732. .system_announcement {
  1733. background: #eee url('images/headertables.jpg') repeat-x top center;
  1734. font: bold 100% arial, sans-serif, sans;
  1735. }
  1736. .system_announcement_content {
  1737. font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
  1738. }
  1739. .system_announcements {
  1740. background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
  1741. padding-top: 10px;
  1742. padding-bottom: 10px;
  1743. margin-left:8px;
  1744. }
  1745. .system_announcements h3 {
  1746. padding-left:70px;
  1747. padding-top: 30px;
  1748. }
  1749. .system_announcement_title {
  1750. font-weight: bold;
  1751. font-size: 120%;
  1752. float:left;
  1753. }
  1754. .system_announcement_date {
  1755. font-color: #ccc;
  1756. float:right;
  1757. }
  1758. /*****************************************************
  1759. * THE NEW FORUM *
  1760. *****************************************************/
  1761. /* **** FORUM CATEGORY **** */
  1762. .forum_category {
  1763. background-color: #0066CC;
  1764. color: #fff;
  1765. }
  1766. .forum_category a {
  1767. color: #fff;
  1768. }
  1769. .forum_category_header {
  1770. background-color: #0066CC;
  1771. color: #fff;
  1772. }
  1773. tr.forum_category_header a {
  1774. color: #fff;
  1775. }
  1776. /* **** FORUM **** */
  1777. .forum_header {
  1778. background-color: #E1E1E1;
  1779. }
  1780. /* **** THREAD **** */
  1781. .forum_threadheader {
  1782. color: #aaa;
  1783. background-color: #F7F7F7;
  1784. }
  1785. tr.forum_threadheader td {
  1786. }
  1787. .forum-thread-header {
  1788. color: #000000;
  1789. background-color: #F7F7F7;
  1790. border-left: 1px solid #aaa;
  1791. border-right: 1px solid #aaa;
  1792. border-bottom: 1px solid #aaa;
  1793. border-top: 1px solid #aaa;
  1794. }
  1795. .forum-thread-body {
  1796. color: #000000;
  1797. background-color: #FFFFFF;
  1798. border-left: 1px solid #aaa;
  1799. border-right: 1px solid #aaa;
  1800. border-bottom: 1px solid #aaa;
  1801. border-top: 1px solid #aaa;
  1802. }
  1803. /* **** POST **** */
  1804. .quote {
  1805. background-color: #9fee54;
  1806. }
  1807. .forum_message_left {
  1808. width: 150px;
  1809. vertical-align: top;
  1810. /*border-bottom: 1px solid #666666;*/
  1811. border-right: 1px solid #aaa;
  1812. background-color: #F7F7F7;
  1813. }
  1814. .forum_message_left_2_be_approved {
  1815. width: 150px;
  1816. vertical-align: top;
  1817. /*border-bottom: 1px solid #666666;*/
  1818. border-right: 1px solid #aaa;
  1819. background-color: #F7F7F7;
  1820. color: #999;
  1821. }
  1822. .forum_message_post_title {
  1823. /*border-bottom: 1px solid #666666;*/
  1824. font-weight: bold;
  1825. background-color: #F7F7F7;
  1826. height: 20px;
  1827. }
  1828. .forum_message_post_title_2_be_approved {
  1829. /*border-bottom: 1px solid #666666;*/
  1830. color: #999;
  1831. font-weight: bold;
  1832. background-color: #F7F7F7;
  1833. height: 20px;
  1834. }
  1835. .forum_message_post_text {
  1836. /*border-bottom: 1px solid #666666;*/
  1837. margin-bottom: 10px;
  1838. vertical-align: top;
  1839. }
  1840. .forum_message_post_text_2_be_approved {
  1841. /*border-bottom: 1px solid #666666;*/
  1842. color: #999;
  1843. margin-bottom: 10px;
  1844. vertical-align: top;
  1845. }
  1846. .current {
  1847. font-weight: bold;
  1848. }
  1849. .structure {
  1850. /*border-bottom: 1px solid #666666;*/
  1851. font-weight: bold;
  1852. background-color: #F7F7F7;
  1853. height: 20px;
  1854. }
  1855. a.forum_group_link {
  1856. font-weight: lighter;
  1857. display:inline;
  1858. }
  1859. .forum_description {
  1860. color: #000;
  1861. font-weight: normal;
  1862. }
  1863. .forum_title {
  1864. color: #000;
  1865. font-size: 14px;
  1866. }
  1867. .forum_low_description {
  1868. color: #737780;
  1869. font-style: italic;
  1870. font-weight: normal;
  1871. }
  1872. .forum_attach_comment {
  1873. color: #737780;
  1874. font-style: italic;
  1875. font-weight: normal;
  1876. }
  1877. /* **** BLOG **** */
  1878. span.blog_title {
  1879. font-size: 20px;
  1880. font-weight: bold;
  1881. color: #2A4B74;
  1882. }
  1883. span.blog_subttitle {
  1884. font-size: 12px;
  1885. }
  1886. td.blog_left {
  1887. margin-right: 5px;
  1888. padding-right: 5px;
  1889. border-right: 1px solid #dddddd;
  1890. }
  1891. td.blog_right {
  1892. padding-left: 10px;
  1893. }
  1894. td.blog_menu_title {
  1895. background-color: #dddddd;
  1896. color: #2A4B74;
  1897. font-weight: bold;
  1898. font-size: 11px;
  1899. padding: 2px;
  1900. }
  1901. td.blog_menu {
  1902. border-bottom: 1px dashed #dddddd;
  1903. border-right: 1px dashed #dddddd;
  1904. border-left: 1px dashed #dddddd;
  1905. padding: 10px;
  1906. }
  1907. td.blog_menu ul {
  1908. margin-top: 0;
  1909. margin-right: 0;
  1910. margin-bottom: 0;
  1911. margin-left: 15px;
  1912. padding: 0;
  1913. }
  1914. td.blog_menu ul li {
  1915. }
  1916. span.blogpost_title {
  1917. display: block;
  1918. font-size: 18px;
  1919. font-weight: bold;
  1920. color: #2A4B74;
  1921. padding-bottom: 5px;
  1922. }
  1923. span.blogpost_date {
  1924. display: block;
  1925. font-size: 12px;
  1926. font-weight: bold;
  1927. color: #333333;
  1928. padding-bottom: 10px;
  1929. }
  1930. span.blogpost_info {
  1931. display: block;
  1932. color: #333333;
  1933. border-top: 1px solid #dddddd;
  1934. margin-top: 5px;
  1935. }
  1936. table.newBlog {
  1937. border: 1px solid #dddddd;
  1938. margin-bottom: 10px;
  1939. margin-top: 10px;
  1940. padding: 10px;
  1941. background-color: #f6f6f6;
  1942. }
  1943. table.newTask {
  1944. border: 1px solid #dddddd;
  1945. margin-bottom: 10px;
  1946. margin-top: 10px;
  1947. padding: 10px;
  1948. background-color: #f6f6f6;
  1949. }
  1950. table.new_comment {
  1951. border: 1px solid #dddddd;
  1952. margin-bottom: 10px;
  1953. margin-top: 10px;
  1954. padding: 10px;
  1955. background-color: #F4F4F4;
  1956. }
  1957. div.blogpost_comment {
  1958. border-top: 1px dashed #dddddd;
  1959. border-right: 1px dashed #dddddd;
  1960. border-bottom: 1px dashed #dddddd;
  1961. border-left: 1px dashed #dddddd;
  1962. margin-bottom: 10px;
  1963. padding: 10px;
  1964. background-color: white;
  1965. }
  1966. span.blogpost_comment_title {
  1967. display: block;
  1968. font-size: 14px;
  1969. font-weight: bold;
  1970. color: #1657A9;
  1971. padding-bottom: 5px;
  1972. }
  1973. span.blogpost_comment_date {
  1974. display: block;
  1975. font-size: 10px;
  1976. font-weight: bold;
  1977. color: #333333;
  1978. padding-bottom: 10px;
  1979. }
  1980. span.blogpost_comment_info {
  1981. font-size: 10px;
  1982. display: block;
  1983. color: #333333;
  1984. border-top: 1px solid #dddddd;
  1985. margin-top: 10px;
  1986. }
  1987. div.blogpost {
  1988. border: 1px solid #DDDDDD;
  1989. background-color: #ECECEC;
  1990. margin-bottom: 15px;
  1991. padding: 10px;
  1992. }
  1993. div.comments {
  1994. border: 1px solid #dddddd;
  1995. margin-bottom: 10px;
  1996. margin-top: 10px;
  1997. padding: 10px;
  1998. background-color: #F4F4F4;
  1999. }
  2000. .attachment_comment {
  2001. color: #737780;
  2002. font-style: italic;
  2003. font-weight: normal;
  2004. }
  2005. .link {
  2006. text-decoration: none;
  2007. font-weight : bold;
  2008. color : #1657A9;
  2009. cursor: pointer
  2010. }
  2011. .link:hover {
  2012. text-decoration: none;
  2013. color: #abd9f1;
  2014. font-weight: bold;
  2015. cursor: pointer
  2016. }
  2017. /*****************************************************
  2018. * INSTALLATION *
  2019. *****************************************************/
  2020. #installation_steps {
  2021. float:left;
  2022. background-color: #9fee54;
  2023. }
  2024. .current_step {
  2025. font-weight: bold;
  2026. }
  2027. /************************************************************
  2028. styles below here are not necessarily used in the current
  2029. release and the CVS files, they are from earlier versions,
  2030. and have been left untouched for anyone needing them in
  2031. their own platform ...
  2032. *************************************************************/
  2033. .topBanner a:link, .topBanner a:active, .topBanner a:visited {
  2034. text-decoration:none;
  2035. color:white;
  2036. }
  2037. .topBanner table {
  2038. text-decoration:none;
  2039. }
  2040. .topBanner a:hover {
  2041. text-decoration:underline;
  2042. }
  2043. .topBanner td {
  2044. border-top: solid White 1px;
  2045. }
  2046. .alternativeBgLight {
  2047. background-color: #f5f5f5;
  2048. }
  2049. .alternativeBgDark {
  2050. background-color: #e6e6e6
  2051. }
  2052. .forms {
  2053. letter-spacing: normal;
  2054. text-align: justify;
  2055. text-indent: 3pt;
  2056. word-spacing: normal;
  2057. padding: 2px 5px;
  2058. }
  2059. .formsTips {
  2060. text-align: justify;
  2061. text-indent: 15pt;
  2062. word-spacing: normal;
  2063. }
  2064. /*
  2065. input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
  2066. padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
  2067. */
  2068. .warn {
  2069. border: thin double Silver;
  2070. margin-left: 15px;
  2071. margin-right: 15px;
  2072. font-family: serif;
  2073. color: Red;
  2074. padding-left: 25px;
  2075. -moz-border-radius-bottomleft:5px;
  2076. -moz-border-radius-bottomright:5px;
  2077. -moz-border-radius-topleft:5px;
  2078. -moz-border-radius-topright:5px;
  2079. border:1px solid #E1E1E0;
  2080. }
  2081. .small {
  2082. font-family: Verdana, Arial, Helvetica, sans-serif;
  2083. font-size: 11px
  2084. }
  2085. .xsmall {
  2086. font-family: Verdana, Arial, Helvetica, sans-serif;
  2087. font-size: 11px
  2088. }
  2089. .xxsmall {
  2090. font-family: Verdana, Arial, Helvetica, sans-serif;
  2091. font-size: 9px
  2092. }
  2093. #glossary_menu li {
  2094. LIST-STYLE-TYPE: none;
  2095. display: inline;
  2096. padding-left:5px;
  2097. }
  2098. .glossary_divider {
  2099. text-transform: capitalize;
  2100. background-color: #CCCCCC;
  2101. padding: 3px;
  2102. font-weight: bold;
  2103. margin-bottom: 3px;
  2104. margin-top: 10px;
  2105. }
  2106. .glossary_word {
  2107. background-color: #F7F7F7;
  2108. padding: 3px;
  2109. font-weight: bold;
  2110. margin-bottom: 3px;
  2111. margin-top: 10px;
  2112. }
  2113. /*
  2114. * TABBED INTERFACE
  2115. */
  2116. #tabbed_menu {
  2117. width: 100%;
  2118. height: 20px;
  2119. border-bottom-width: 1px;
  2120. border-bottom-style: solid;
  2121. border-bottom-color: #666666;
  2122. margin-bottom: 20px;
  2123. }
  2124. #tabbed_menu #tabbed_menu_tabs li {
  2125. margin: 0 10;
  2126. padding: 0;
  2127. display: inline;
  2128. list-style-type: none;
  2129. }
  2130. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  2131. float: left;
  2132. background: #f3f3f3;
  2133. font-weight: bold;
  2134. padding: 2px 10px 2px 10px;
  2135. margin-right: 4px;
  2136. border: 1px solid #cccccc;
  2137. border-bottom: 1px solid #666666;
  2138. text-decoration: none;
  2139. color: #666;
  2140. }
  2141. #tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
  2142. border: 1px solid #666666;
  2143. border-bottom: 1px solid #fff;
  2144. background: #fff;
  2145. color: #000;
  2146. }
  2147. #WCAG-editor {
  2148. border: 1px #DCDCDC solid;
  2149. background-color: #F0F0F0;
  2150. width: 100%;
  2151. }
  2152. #WCAG-editor .title {
  2153. padding: 2px;
  2154. background-color: #DCDCDC;
  2155. text-align: center;
  2156. color: #000000;
  2157. font-weight: bold;
  2158. }
  2159. #WCAG-editor .body {
  2160. padding-top: 5px;
  2161. padding-left: 5px;
  2162. padding-right: 13px;
  2163. padding-bottom: 5px;
  2164. }
  2165. #WCAG-editor textarea {
  2166. margin-left: 0px;
  2167. margin-right: 0px;
  2168. width: 100%;
  2169. height: 180px;
  2170. border: 1px #DCDCDC solid;
  2171. }
  2172. #WCAG-editor input {
  2173. width: 100%;
  2174. -moz-border-radius-bottomleft:5px;
  2175. -moz-border-radius-bottomright:5px;
  2176. -moz-border-radius-topleft:5px;
  2177. -moz-border-radius-topright:5px;
  2178. border:1px solid #E1E1E0;
  2179. }
  2180. /* don't work on IE 6 */
  2181. #WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
  2182. width: auto;
  2183. -moz-border-radius-bottomleft:5px;
  2184. -moz-border-radius-bottomright:5px;
  2185. -moz-border-radius-topleft:5px;
  2186. -moz-border-radius-topright:5px;
  2187. border:1px solid #E1E1E0;}
  2188. /* only for IE6 */
  2189. #WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
  2190. width: auto;
  2191. }
  2192. #WCAG-content img {
  2193. float: left;
  2194. margin-right: 5px;
  2195. margin-bottom: 5px;
  2196. }
  2197. #WCAG-content p {
  2198. text-align: justify;
  2199. }
  2200. /* hack for IE < 7 */
  2201. #course_description input {
  2202. width: auto;
  2203. -moz-border-radius-bottomleft:5px;
  2204. -moz-border-radius-bottomright:5px;
  2205. -moz-border-radius-topleft:5px;
  2206. -moz-border-radius-topright:5px;
  2207. border:1px solid #E1E1E0;
  2208. }
  2209. #course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
  2210. width: 100%;
  2211. }
  2212. .WCAG-form textarea {
  2213. width: 100%;
  2214. height: 180px;
  2215. }
  2216. .skip {
  2217. display: none;
  2218. }
  2219. /*
  2220. ------------------------------------------------------------------------------
  2221. OTHERS
  2222. ------------------------------------------------------------------------------
  2223. */
  2224. .input_titles {
  2225. width: 300px;
  2226. -moz-border-radius-bottomleft:5px;
  2227. -moz-border-radius-bottomright:5px;
  2228. -moz-border-radius-topleft:5px;
  2229. -moz-border-radius-topright:5px;
  2230. border:1px solid #E1E1E0;
  2231. }
  2232. /*
  2233. ------------------------------------------------------------------------------
  2234. Survey
  2235. ------------------------------------------------------------------------------
  2236. */
  2237. #survey_title {
  2238. background-color:#dcdcdc;
  2239. color:#000;
  2240. padding:2px;
  2241. }
  2242. #survey_subtitle {
  2243. background-color:#dcdcdc;
  2244. color:#000;
  2245. padding:2px;
  2246. }
  2247. .survey_content {
  2248. background-color:#9fee54;
  2249. color:#264269;
  2250. padding:5px;
  2251. border: 1px solid #999;
  2252. margin-top: 4px;
  2253. }
  2254. .survey_question_wrapper {
  2255. border: 1px solid #999;
  2256. margin-top:4px;
  2257. }
  2258. .survey_question {
  2259. /* 264269 4271b5 9fd854 */
  2260. background-color:#9fd854;
  2261. color:#999;
  2262. padding:5px;/*border: 1px solid #264269;*/
  2263. }
  2264. .survey_question_options {
  2265. /* 264269 4271b5 9fd854 */
  2266. background-color:#FFF;
  2267. color:#000;
  2268. padding:5px;/*border: 1px solid #264269;*/
  2269. }
  2270. /*
  2271. |----------------------------------------------------------------------------
  2272. | Added: to fit img and blocks in home page
  2273. |----------------------------------------------------------------------------
  2274. |
  2275. */
  2276. #hellomindfactory {
  2277. border: 1px solid #ccc;
  2278. margin:-14px 0 0 0;
  2279. width:690px;
  2280. height:428px;
  2281. }
  2282. #tophellomindfactory {
  2283. margin: 10px 5px 5px 5px;
  2284. height:200px;
  2285. width:680px;
  2286. }
  2287. .topa {
  2288. background:transparent url('images/logoa4.gif') no-repeat;
  2289. }
  2290. .topb {
  2291. background:transparent url('images/logob4.gif') no-repeat;
  2292. }
  2293. #bottomhellomindfactory {
  2294. margin: 5px;
  2295. height:200px;
  2296. width:680px;
  2297. background:transparent url('images/textologo.jpg') no-repeat;
  2298. }
  2299. /*
  2300. .copyright {
  2301. display:none;
  2302. }
  2303. */
  2304. /* Quizzes tool */
  2305. .quiz_export_link {
  2306. float: right;
  2307. }
  2308. /*Exercice timer*/
  2309. #square{
  2310. padding:5px;
  2311. background-color:#EEEEEE;
  2312. border:1px solid #CCCCCC;
  2313. margin-right : 24px;
  2314. width : 155px;
  2315. margin-bottom:20px;
  2316. }
  2317. #wrapper-clock{
  2318. width:100%;
  2319. margin:0;
  2320. }
  2321. .count_down{
  2322. padding: 3px;
  2323. font-size:22px;
  2324. font-weight:bold;
  2325. color:#222;
  2326. }
  2327. /*
  2328. ------------------------------------------------------------------------------
  2329. Learning path
  2330. ------------------------------------------------------------------------------
  2331. */
  2332. #show_audiorecorder_div {
  2333. background:#F0F0F0;
  2334. border:1px solid #999999;
  2335. font-weight:bold;
  2336. padding:2px;
  2337. width:350px;
  2338. }
  2339. /* Glossary tool */
  2340. .glossary-term {
  2341. margin: 1em;
  2342. background-color: #ffe99b;
  2343. padding: 0.5em 0.5em 1.8em 0;
  2344. -moz-border-radius: 0.5em;
  2345. }
  2346. .glossary-term-title {
  2347. margin: 2em 0 1em 0.5em;
  2348. font-weight: bold;
  2349. font-size: 120%;
  2350. }
  2351. .glossary-term-desc {
  2352. margin-left: 1em;
  2353. }
  2354. .glossary-term-action-links {
  2355. float: right;
  2356. }
  2357. .glossary-term-edit-form {
  2358. margin: 1em;
  2359. background-color: #FFE4C4;
  2360. padding: 0.5em 0.5em 2em 0;
  2361. -moz-border-radius: 0.5em;
  2362. }
  2363. .glossary-term-edit-desc {
  2364. font-weight: bold;
  2365. font-size: 120%;
  2366. }
  2367. .glossary-term-edit-title {
  2368. font-weight: bold;
  2369. font-size: 120%;
  2370. }
  2371. .glossary-add-form {
  2372. font-weight: bold;
  2373. font-size: 120%;
  2374. margin: 1em;
  2375. }
  2376. .glossary-orderby-link {
  2377. float:right;
  2378. margin: 1em;
  2379. }
  2380. .glossary-msg-error {
  2381. color: #FF0000;
  2382. display :none;
  2383. font-weight: normal;
  2384. font-size: 80%;
  2385. }
  2386. /* Notebook */
  2387. .notebook-add-form {
  2388. margin: 1em;
  2389. background-color: #c3d9ff;
  2390. padding: 1em 1em;
  2391. }
  2392. .notebook-add-desc-textarea {
  2393. background-color: #f2f5f8;
  2394. border-color: #ffe99b;
  2395. overflow: hidden;
  2396. }
  2397. .notebook-add-title-text {
  2398. background-color: #f2f5f8;
  2399. border-color: #ffe99b;
  2400. }
  2401. .notebook-edit-desc-textarea {
  2402. background-color: #e0ecff;
  2403. border-color: #ffe99b;
  2404. overflow: hidden;
  2405. }
  2406. .notebook-edit-title-text {
  2407. background-color: #e0ecff;
  2408. border-color: #ffe99b;
  2409. }
  2410. .notebook-msg-error {
  2411. color: #FF0000;
  2412. display :none;
  2413. background-color: #ffe99b;
  2414. width: 40%;
  2415. }
  2416. .notebook-list {
  2417. margin: 1em 1em 0em 1em;
  2418. background-color: #79b;
  2419. padding: 0.3em 0.3em;
  2420. -moz-border-radius: 0.5em;
  2421. }
  2422. .notebook-title-list {
  2423. color : #fff;
  2424. padding: 0.3em 0.3em;
  2425. font-weight: bold;
  2426. font-size: 120%;
  2427. }
  2428. .notebook-desc-list {
  2429. margin: 0em;
  2430. background-color: #f2f5f8;
  2431. padding: 0.5em 0.3em 2em 0.3em;
  2432. border: 1px solid #79b;
  2433. }
  2434. .notebook-term-action-links {
  2435. padding: 0.3em 0.3em;
  2436. width: 50%;
  2437. color : #fff;
  2438. }
  2439. .notebook-orderby-link {
  2440. text-align:right;
  2441. margin-right: 1em;
  2442. }
  2443. .notebook-search-title {
  2444. text-align:right;
  2445. margin: 1em;
  2446. }
  2447. .notebook-date-information {
  2448. color : #fff;
  2449. padding: 0.3em;
  2450. font-size: 120%;
  2451. font-weight: bold;
  2452. }
  2453. /* Gradebook */
  2454. .resource-deleted {
  2455. color:#990000;
  2456. }
  2457. .gradebook-table-header {
  2458. border: 1px solid rgb(153, 153, 153);
  2459. background: rgb(240, 240, 240) none repeat scroll 0% 0%;
  2460. }
  2461. .gradebook-table-body {
  2462. border: 1px solid rgb(153, 153, 153);
  2463. background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  2464. }
  2465. .label_result {
  2466. float: left;
  2467. width: 25%;
  2468. text-align: left;
  2469. padding-top:8px;
  2470. }
  2471. .formw_result {
  2472. width: 75%;
  2473. float:left;
  2474. }
  2475. #label_result {
  2476. float: left;
  2477. text-align: right;
  2478. margin-right: 10px;
  2479. }
  2480. /* actions */
  2481. .actions_lp {
  2482. background:#F8F8F8;
  2483. height:29px;
  2484. padding-left: -17px;
  2485. margin: 5px 2px 1px 12px;
  2486. vertical-align:middle;
  2487. width: 90%;
  2488. }
  2489. .actions_lp img {
  2490. vertical-align:middle;
  2491. }
  2492. .actions_lp a {
  2493. margin-right: 10px;
  2494. vertical-align:middle;
  2495. }
  2496. .actions_lp span {
  2497. margin-right: 10px;
  2498. vertical-align:middle;
  2499. }
  2500. .actions_lp form {
  2501. margin-right: 10px;
  2502. vertical-align:middle;
  2503. }
  2504. .actions {
  2505. background:#9fd854;
  2506. border-bottom:1px dotted #999999;
  2507. border-top:1px dotted #999999;
  2508. /*height:35px;*/
  2509. padding:2px;
  2510. margin-bottom: 5px;
  2511. vertical-align:middle;
  2512. }
  2513. .actions img {
  2514. /*display:inline-block;*/
  2515. border: none;
  2516. text-decoration: none;
  2517. /*background-color: #efefef;*/
  2518. padding-right: 5px;
  2519. vertical-align:middle;
  2520. }
  2521. .actions a {
  2522. display:inline-block;
  2523. margin-right: 10px;
  2524. vertical-align:middle;
  2525. }
  2526. .actions span {
  2527. margin-right: 10px;
  2528. vertical-align:middle;
  2529. }
  2530. .actions form {
  2531. margin-right: 10px;
  2532. vertical-align:middle;
  2533. }
  2534. /* big actions */
  2535. .actionsbig {
  2536. background:#F8F8F8;
  2537. border-bottom:1px solid #999999;
  2538. border-top:1px solid #999999;
  2539. background-color:#E1E1E1;
  2540. height:100%;
  2541. padding:2px;
  2542. margin-bottom: 5px;
  2543. vertical-align:middle;
  2544. float:left;
  2545. width:100%;
  2546. }
  2547. .content_table {
  2548. padding:2px;
  2549. margin-bottom: 5px;
  2550. vertical-align:middle;
  2551. float:left;
  2552. width:100%;
  2553. }
  2554. .actionsbig a {
  2555. float:left;
  2556. padding-left:6px;
  2557. padding-right:12px;
  2558. text-align:center;
  2559. }
  2560. .actions img {
  2561. vertical-align:middle;
  2562. }
  2563. .actions a {
  2564. margin-right: 10px;
  2565. vertical-align:middle;
  2566. }
  2567. .actions-title {
  2568. background:#9fd854;
  2569. border-bottom:1px dotted #999999;
  2570. border-top:1px dotted #999999;
  2571. /*height:35px;*/
  2572. padding:4px;
  2573. margin-bottom: 5px;
  2574. font-size:14px;
  2575. font-weight:bolder;
  2576. /*background:url(images/actions.jpg) repeat-x;*/
  2577. vertical-align:middle;
  2578. }
  2579. .actions-message {
  2580. white-space: nowrap;
  2581. padding: 2px;
  2582. background-color: #D2ECF5;
  2583. border: 1px solid #ABDAEA;
  2584. }
  2585. /**********************************************
  2586. * EXERCISE TOOL *
  2587. **********************************************/
  2588. .exercice_form {
  2589. width: 300px;
  2590. }
  2591. #validationButton {
  2592. text-decoration: none;
  2593. margin: 5px;
  2594. /*border:1px solid #999999;*/
  2595. /*background:#F0F0F0; */
  2596. padding: 3px;
  2597. padding-left:10px;
  2598. padding-right:10px;
  2599. font-weight:bold;
  2600. color:#666;
  2601. }
  2602. .rounded {
  2603. border: 3px solid #CCCCCC;
  2604. padding: 3px;
  2605. width: 200px;
  2606. /*margin-left:10px;*/
  2607. }
  2608. .rounded_inner {
  2609. background:#FFF;
  2610. padding-top: 10px;
  2611. padding-bottom: 10px;
  2612. }
  2613. .rounded_inner:hover {
  2614. color:#C802A5;
  2615. background:#F0F0F0;
  2616. }
  2617. .exercise_scenario_label {
  2618. }
  2619. .exercise_scenario_element {
  2620. }
  2621. span.checkbox {
  2622. width: 19px;
  2623. height: 25px;
  2624. padding: 0 5px 0 0;
  2625. background: url(images/checkbox.gif) no-repeat;
  2626. display: block;
  2627. clear: left;
  2628. float: left;
  2629. }
  2630. span.radio {
  2631. width: 19px;
  2632. height: 25px;
  2633. padding: 0 5px 0 0;
  2634. background: url(images/radio.gif) no-repeat;
  2635. display: block;
  2636. clear: left;
  2637. float: left;
  2638. }
  2639. #question_title {
  2640. font-size: 1.5em;
  2641. font-weight: bold;
  2642. }
  2643. #question_description {
  2644. padding-left:5px;
  2645. padding-top:10px;
  2646. }
  2647. #question_score {
  2648. padding-left:5px;
  2649. padding-top:10px;
  2650. padding-bottom:10px;
  2651. font-weight:bold;
  2652. font-size:130%;
  2653. }
  2654. #question_feedback {
  2655. background-color:#FCF7BA;
  2656. border:1px solid #CCCCCC;
  2657. color:#666666;
  2658. font-size:11px;
  2659. font-weight:bold;
  2660. list-style-type:none;
  2661. margin-top:5px;
  2662. padding:5px;
  2663. }
  2664. #exercise_close_link {
  2665. background: url(images/close.gif) no-repeat;
  2666. padding-left: 20px;
  2667. }
  2668. #exercise_close_link:hover {
  2669. background: url(images/close_highlight.gif) no-repeat;
  2670. padding-left: 20px;
  2671. }
  2672. /*****************************************************
  2673. * BUTTONS *
  2674. *****************************************************/
  2675. /* BUTTONS */
  2676. button {
  2677. margin:2px 5px 3px 3px !important;
  2678. background-color: #F5F5F5;
  2679. border-width: 0px;
  2680. border-color:#EEEEEE #DEDEDE #DEDEDE #EEEEEE;
  2681. border-style:solid;
  2682. border-width:1px;
  2683. font-family: bold arial, verdana, helvetica, sans-serif;
  2684. font-size: 100%;
  2685. line-height :130%;
  2686. text-decoration: none;
  2687. color: black;
  2688. cursor: pointer;
  2689. padding:5px 15px 5px 15px;
  2690. vertical-align:middle;
  2691. }
  2692. button:hover {
  2693. color:#545454;
  2694. border-style: inset;
  2695. background-color:#DFF4FF;
  2696. border:1px solid #C2E1EF;
  2697. }
  2698. /* button with image */
  2699. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back {
  2700. padding-left:30px;
  2701. background-position:10px;
  2702. background-repeat:no-repeat;
  2703. }
  2704. /* POSITIVE */
  2705. button.save, button.add, button.search, button.refresh, button.upload, button.login, button.plus, button.minus, button.next, button.back {
  2706. /* background-color:#; */
  2707. /* border-color: #fff; */
  2708. }
  2709. 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 {
  2710. /* border-color: #fff;
  2711. background-color:#fff; */
  2712. }
  2713. /* NEGATIVE */
  2714. button.cancel {
  2715. background-color:#F8E8E6;
  2716. border-color: #FFE3DE;
  2717. }
  2718. button.cancel:hover {
  2719. border-color: #F4E1D0;
  2720. background-color: #FFE3DE;
  2721. }
  2722. /*including "save" image*/
  2723. button.save {
  2724. background-image:url(images/button_accept.gif);
  2725. }
  2726. /*including "add" image*/
  2727. button.add {
  2728. background-image:url(images/button_add.gif);
  2729. }
  2730. /*including "cancel" image*/
  2731. button.cancel {
  2732. background-image:url(images/button_delete.gif);
  2733. }
  2734. /*including "search" image*/
  2735. button.search {
  2736. /* background-color:#FFFFFF; */
  2737. background-image:url(images/bg-button.gif);
  2738. background-position:right center;
  2739. padding-right: 30px;
  2740. }
  2741. /*including "login" image*/
  2742. button.login {
  2743. background-image:url(images/bg-button.gif);
  2744. background-position:right;
  2745. /* background-color:#FFF;
  2746. border:solid 2px #FFF; */
  2747. float:left;
  2748. margin-right:20px;
  2749. padding-right:30px;
  2750. margin:2px 5px 3px 5px !important;
  2751. }
  2752. button.login:hover{
  2753. /* background-color:#FFF; */
  2754. /* border: solid 1px #FFF; */
  2755. }
  2756. /*including "plus" image*/
  2757. button.plus {
  2758. background-image:url(images/button_plus.gif);
  2759. }
  2760. /*including "minus" image*/
  2761. button.minus {
  2762. background-image:url(images/button_minus.gif);
  2763. }
  2764. /*including "next" image*/
  2765. button.next {
  2766. background-image:url(images/button_next.gif);
  2767. }
  2768. /*including "back" image*/
  2769. button.back {
  2770. background-image:url(images/button_back.gif);
  2771. }
  2772. /*including "refresh" image*/
  2773. button.refresh {
  2774. background-image:url(images/button_refresh.gif);
  2775. }
  2776. /*including "upload" image*/
  2777. button.upload {
  2778. background-image:url(images/button_upload.gif);
  2779. }
  2780. .icon_image_content {
  2781. width:70px;
  2782. cursor:hand;
  2783. height:6em;
  2784. text-align: center;
  2785. padding-right: 10px;
  2786. padding-left: 0px;
  2787. border: 1px dotted #ccc;
  2788. background-color: #eee;
  2789. margin-right: 0.2em;
  2790. margin-top: 0.1em;
  2791. -moz-border-radius-topleft : 5px;
  2792. -moz-border-radius-bottomright : 5px;
  2793. -moz-border-radius-bottomleft : 5px;
  2794. -moz-border-radius-topright : 5px;
  2795. }
  2796. .icon_image_content:hover {
  2797. background-color: #fff;
  2798. border: 1px solid #ccc;
  2799. }
  2800. #expire_session div {
  2801. float:left;
  2802. padding-left:15px;
  2803. }
  2804. /* Fake buttons: links that look like buttons */
  2805. .fake_button_back {
  2806. border: 2px outset;
  2807. padding: 2px;
  2808. text-decoration: none;
  2809. background-color:#9fd854;
  2810. border-color: #D4E2F6;
  2811. background-image:url(images/button_back.gif);
  2812. padding-left:30px;
  2813. background-position:10px;
  2814. background-repeat:no-repeat;
  2815. }
  2816. .fake_button_back:active {
  2817. border: 2px inset;
  2818. }
  2819. .fake_button_back:link {
  2820. border-style: solid;
  2821. border-width : 1px 2px 2px 1px;
  2822. text-decoration : none;
  2823. padding : 4px;
  2824. border-color : #69f #00f #00f #69f;
  2825. }
  2826. .fake_button_back:hover {
  2827. border-color: #ccc;
  2828. color: #111;
  2829. }
  2830. .question_menu {
  2831. list-style:none;
  2832. float:left;
  2833. }
  2834. .question_menu li {
  2835. float:left;
  2836. margin:0px;
  2837. }
  2838. #exercise_admin {
  2839. margin: 0;
  2840. padding: 0;
  2841. border: 0;
  2842. }
  2843. div#friend-header {
  2844. float:left;
  2845. width:100%;
  2846. line-height: 2.1em;
  2847. }
  2848. div#friend-header a {
  2849. padding-right:6px;
  2850. }
  2851. div#friend-container {
  2852. float:left;
  2853. }
  2854. div.image_friend_network {
  2855. float:left;
  2856. border:1px solid #CCCCCC;
  2857. margin:2px;
  2858. padding:4px;
  2859. height:125px;
  2860. width:82px;
  2861. z-index:5;
  2862. }
  2863. div.image_friend_network span {
  2864. overflow:hidden;
  2865. display:block;
  2866. height:92px;
  2867. margin: 0px 0px;
  2868. }
  2869. div.image_friend_network img {
  2870. vertical-align:middle;
  2871. }
  2872. div.image_friend_network center.friend {
  2873. overflow:hidden;
  2874. height:30px;
  2875. }
  2876. .friend_invitations {
  2877. float:left;
  2878. margin: 0 0 4px 12px;
  2879. }
  2880. /* button >> */
  2881. button.arrowr {
  2882. -moz-border-radius-topleft : 5px;
  2883. -moz-border-radius-bottomright : 5px;
  2884. -moz-border-radius-bottomleft : 5px;
  2885. -moz-border-radius-topright : 5px;
  2886. padding-left:20px;
  2887. padding-top:20px;
  2888. background-position:10px;
  2889. background-color:#F1F1F1;
  2890. border-color: #D4E2F6;
  2891. border-width: 1px;
  2892. display:block;
  2893. font-size: 100%;
  2894. line-height :130%;
  2895. vertical-align:middle;
  2896. }
  2897. /*including "arrowr" image*/
  2898. button.arrowr {
  2899. background-image:url(images/2rightarrow.gif);
  2900. background-repeat:no-repeat;
  2901. }
  2902. /* button << */
  2903. button.arrowl {
  2904. margin:0px;
  2905. -moz-border-radius-topleft : 5px;
  2906. -moz-border-radius-bottomright : 5px;
  2907. -moz-border-radius-bottomleft : 5px;
  2908. -moz-border-radius-topright : 5px;
  2909. padding-left:20px;
  2910. padding-top:20px;
  2911. background-position:10px;
  2912. background-color:#F1F1F1;
  2913. border-color: #D4E2F6;
  2914. border-width: 1px;
  2915. display:block;
  2916. font-size: 100%;
  2917. line-height :130%;
  2918. vertical-align:middle;
  2919. }
  2920. /*including "arrowl" image*/
  2921. button.arrowl {
  2922. background-image:url(images/2leftarrow.gif);
  2923. background-repeat:no-repeat;
  2924. }
  2925. /* input >> */
  2926. input.arrowr {
  2927. -moz-border-radius-topleft : 5px;
  2928. -moz-border-radius-bottomright : 5px;
  2929. -moz-border-radius-bottomleft : 5px;
  2930. -moz-border-radius-topright : 5px;
  2931. padding-left:25px;
  2932. padding-top:20px;
  2933. background-position:10px;
  2934. background-color:#E5EDF9;
  2935. border-color: #D4E2F6;
  2936. border-width: 1px;
  2937. display:block;
  2938. font-size: 100%;
  2939. line-height :130%;
  2940. vertical-align:middle;
  2941. background-image:url(images/2rightarrow.gif);
  2942. background-repeat:no-repeat;
  2943. }
  2944. /* input << */
  2945. input.arrowl {
  2946. margin:0px;
  2947. -moz-border-radius-topleft : 5px;
  2948. -moz-border-radius-bottomright : 5px;
  2949. -moz-border-radius-bottomleft : 5px;
  2950. -moz-border-radius-topright : 5px;
  2951. padding-right:25px;
  2952. padding-top:20px;
  2953. background-position:10px;
  2954. background-color:#E5EDF9;
  2955. border-color: #D4E2F6;
  2956. border-width: 1px;
  2957. display:block;
  2958. font-size: 100%;
  2959. line-height :130%;
  2960. vertical-align:middle;
  2961. background-image:url(images/2leftarrow.gif);
  2962. background-repeat:no-repeat;
  2963. }
  2964. .u-m-answer {
  2965. float:left;
  2966. width:100%;
  2967. }
  2968. .u-m-answer p {
  2969. margin:4px;
  2970. }
  2971. .refresh {
  2972. background-image:url(images/refresh.png);
  2973. background-repeat:no-repeat;
  2974. padding-left:20px;
  2975. padding-bottom:2px;
  2976. }
  2977. .portal {
  2978. background-image:url(images/portal.png);
  2979. background-repeat:no-repeat;
  2980. padding-left:28px;
  2981. padding-bottom:10px;
  2982. padding-top:8px;
  2983. }
  2984. .legal-terms {
  2985. height:150px;
  2986. overflow:auto;
  2987. background-color:#eee;
  2988. width:500px;
  2989. }
  2990. /* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
  2991. * {
  2992. outline :none;
  2993. }
  2994. input, select, textarea {
  2995. -moz-border-radius-bottomleft:5px;
  2996. -moz-border-radius-bottomright:5px;
  2997. -moz-border-radius-topleft:5px;
  2998. -moz-border-radius-topright:5px;
  2999. -x-system-font:none;
  3000. border:1px solid #CCCCCC;
  3001. color:#666666;
  3002. font-family:Arial,Helvetica,sans-serif;
  3003. font-size:120%;
  3004. font-size-adjust:none;
  3005. font-stretch:normal;
  3006. font-style:normal;
  3007. font-variant:normal;
  3008. font-weight:normal;
  3009. line-height:normal;
  3010. padding:5px;
  3011. }
  3012. input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  3013. background-image:url(images/shadow.gif);
  3014. }
  3015. .independent_course_item a {
  3016. font-size:135%;
  3017. }
  3018. .session_course_item a {
  3019. /*font-size:135%;*/
  3020. }
  3021. #maincontent .courseslist li {
  3022. margin-bottom:8px;
  3023. }
  3024. a.read {
  3025. font-weight:normal;
  3026. }
  3027. .actions {
  3028. background:#efefef;
  3029. border:1px solid #ccc;
  3030. padding:2px;
  3031. margin-bottom: 5px;
  3032. vertical-align:middle;
  3033. }
  3034. .actions-title {
  3035. background:#efefef;
  3036. border:1px solid #ccc;
  3037. padding:4px;
  3038. margin-bottom: 5px;
  3039. font-size:14px;
  3040. font-weight:bolder;
  3041. vertical-align:middle;
  3042. }
  3043. /* GROUP TOOL */
  3044. #group_description {
  3045. margin: 10px 0px 10px 0px;
  3046. }
  3047. #group_privacy {
  3048. margin: 10px 0px 10px 0px;
  3049. }
  3050. #group_permissions {
  3051. -moz-background-clip:border;
  3052. -moz-background-inline-policy:continuous;
  3053. -moz-background-origin:padding;
  3054. -moz-border-radius-bottomleft:8px;
  3055. -moz-border-radius-bottomright:8px;
  3056. -moz-border-radius-topleft:8px;
  3057. -moz-border-radius-topright:8px;
  3058. background:#EEE none repeat scroll 0 0;
  3059. margin: 20px 0px 20px 0px;
  3060. }
  3061. #group_permissions ul {
  3062. list-style-image:none;
  3063. list-style-position:outside;
  3064. list-style-type:none;
  3065. margin:0;
  3066. padding:0;
  3067. }
  3068. #group_permissions ul li {
  3069. margin: 10px 0px 10px 5px;
  3070. }
  3071. /* Groups boxes */
  3072. .groups_grid_container {
  3073. width:100%;
  3074. }
  3075. .groups_grid_item {
  3076. width:80px;
  3077. float:left;
  3078. margin:5px;
  3079. }
  3080. .groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3081. .groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
  3082. .groups_grid_element_2 { width:150px; float:left;}
  3083. /*POPULAR GROUP*/
  3084. .popular_grid_item {
  3085. background: none repeat scroll 0 0 #FFFFFF;
  3086. border: 1px solid #E5E5E5;
  3087. border-radius: 11px 11px 11px 11px;
  3088. -webkit-border-radius: 11px 11px 11px 11px;
  3089. -opera-border-radius: 11px 11px 11px 11px;
  3090. -moz-border-radius: 11px 11px 11px 11px;
  3091. box-shadow: 0 4px 18px #C8C8C8;
  3092. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  3093. -opera-box-shadow: 0 4px 18px #C8C8C8;
  3094. -moz-box-shadow: 0 4px 18px #C8C8C8;
  3095. float: left;
  3096. height: auto;
  3097. margin: 0 8px 15px 15px;
  3098. padding: 16px 12px 5px;
  3099. width:90%;
  3100. }
  3101. .popular_grid_element_0 {
  3102. width:600px;
  3103. height:98px;
  3104. padding-left:10px;
  3105. padding-right:10px;
  3106. overflow:hidden;
  3107. }
  3108. /*NEWEST GROUP*/
  3109. .newest_grid_item {
  3110. background: none repeat scroll 0 0 #FFFFFF;
  3111. border: 1px solid #E5E5E5;
  3112. border-radius: 11px 11px 11px 11px;
  3113. -webkit-border-radius: 11px 11px 11px 11px;
  3114. -opera-border-radius: 11px 11px 11px 11px;
  3115. -moz-border-radius: 11px 11px 11px 11px;
  3116. box-shadow: 0 4px 18px #C8C8C8;
  3117. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  3118. -opera-box-shadow: 0 4px 18px #C8C8C8;
  3119. -moz-box-shadow: 0 4px 18px #C8C8C8;
  3120. float: left;
  3121. height: auto;
  3122. margin: 0 8px 15px 15px;
  3123. padding: 16px 12px 5px;
  3124. width:90%;
  3125. }
  3126. .newest_grid_element_1 {
  3127. width:600px;
  3128. height:98x;
  3129. padding-left:10px;
  3130. padding-right:10px;
  3131. overflow:hidden;
  3132. }
  3133. /*MY GROUPS*/
  3134. .mygroups_grid_item {
  3135. background: none repeat scroll 0 0 #FFFFFF;
  3136. border: 1px solid #E5E5E5;
  3137. border-radius: 11px 11px 11px 11px;
  3138. -webkit-border-radius: 11px 11px 11px 11px;
  3139. -opera-border-radius: 11px 11px 11px 11px;
  3140. -moz-border-radius: 11px 11px 11px 11px;
  3141. box-shadow: 0 4px 18px #C8C8C8;
  3142. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  3143. -opera-box-shadow: 0 4px 18px #C8C8C8;
  3144. -moz-box-shadow: 0 4px 18px #C8C8C8;
  3145. float: left;
  3146. height: auto;
  3147. margin: 0 8px 15px 15px;
  3148. padding: 16px 12px 5px;
  3149. width:90%;
  3150. }
  3151. .box_description_group_member {
  3152. color: #999999;
  3153. font-size: 10px;
  3154. }
  3155. .mygroups_grid_element_1 {
  3156. width:600px;
  3157. height:100px;
  3158. padding-left:10px;
  3159. padding-right:10px;
  3160. overflow:hidden;
  3161. }
  3162. .box_description_group_title h3 {
  3163. margin-bottom:4px;
  3164. }
  3165. .box_description_group_title {
  3166. float:right;width:80%;
  3167. }
  3168. .box_description_group_content {
  3169. float:right;
  3170. width:80%;
  3171. margin-top:5px;
  3172. /* height:45px;*/
  3173. font-family:Verdana, Geneva, sans-serif;
  3174. font-size:12px;
  3175. color:#666666;
  3176. }
  3177. .box_description_group_actions {
  3178. float:right;
  3179. width:80%;
  3180. text-align:right;
  3181. margin-top:4px;
  3182. margin-right:4px;
  3183. }
  3184. /*PROFILE*/
  3185. .profile_grid_container { width:100%;}
  3186. .profile_grid_item {
  3187. border:1px dotted #CCCCCC;
  3188. float:left;
  3189. height:90px;
  3190. margin:5px;
  3191. padding:5px;
  3192. width:270px;
  3193. }
  3194. .profile_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3195. .profile_grid_element_1 { width:170px; float:left; text-align:left; margin-bottom:1px; }
  3196. /* pagination grid sortable */
  3197. .sub_header {width:100%}
  3198. .grid_selectbox {float:left;width:35%}
  3199. .grid_title {float:left;width:30%;text-align:center}
  3200. .grid_nav {float:left;width:35%;text-align:right}
  3201. /* Groups boxes */
  3202. .group_invitation_grid_container { width:100%;}
  3203. .group_invitation_grid_item {
  3204. border:1px dotted #CCCCCC;
  3205. float:left;
  3206. height:85px;
  3207. margin:8px;
  3208. padding:5px;
  3209. width:300px;
  3210. }
  3211. .group_invitation_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3212. .group_invitation_grid_element_1 { width:100px; float:left; text-align:left;margin-bottom:5px;}
  3213. .group_invitation_grid_element_2 { width:150px; float:left;}
  3214. /* home group boxes */
  3215. .home_group_grid_container {
  3216. margin-bottom:60px;
  3217. }
  3218. .home_group_grid_element_1 {
  3219. font-family:Verdana, Geneva, sans-serif;
  3220. font-size:12px;
  3221. color:#686868;
  3222. font-weight:bold;
  3223. margin:2px;
  3224. padding:2px;
  3225. }
  3226. .home_group_grid_element_2 {
  3227. float:right;
  3228. width:80%;
  3229. height:45px;
  3230. font-family:Verdana, Geneva, sans-serif;
  3231. font-size:12px;
  3232. color:#666666;
  3233. }
  3234. /*INVITATION IN PROFILE*/
  3235. .invitation_profile_grid_container { width:100%;}
  3236. .invitation_profile_grid_item {
  3237. border:1px dotted #CCCCCC;
  3238. float:left;
  3239. height:110px;
  3240. margin:5px;
  3241. padding:5px;
  3242. width:100px;
  3243. }
  3244. .invitation_profile_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3245. .invitation_profile_grid_element_0 img {width:50px;height:50px;border:3px solid #E6E6E6;}
  3246. .invitation_profile_grid_element_2 { width:100px; float:left; text-align:center;}
  3247. .invitation_profile_grid_element_3 { width:100px; float:left; text-align:center;}
  3248. /* User boxes */
  3249. .search_users_grid_container { width:100%;}
  3250. .search_users_grid_item { width:400px; height: 90px; border:1px dotted #ccc; float:left; padding:5px; margin:8px;}
  3251. .search_users_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3252. .search_users_grid_element_1 { width:100px; float:left; text-align:center;margin-bottom:5px;}
  3253. .search_users_grid_element_2 { width:150px; float:left;}
  3254. .search_users_grid_selectbox { width:50%; float:left;}
  3255. .search_users_grid_title { width:30%; float:left;}
  3256. .search_users_grid_nav { float:right;}
  3257. /*WAITING USER*/
  3258. .waiting_user_grid_container { width:100%;}
  3259. .waiting_user_grid_item { width:500px; height: 120px; border:1px dotted #ccc; float:left; padding:5px; margin:5px;}
  3260. .waiting_user_grid_element_0 { width:100px; height: 90px; float:left; text-align:center; margin-bottom:5px; padding-top:15px;}
  3261. .waiting_user_grid_element_1 { width:400px; float:left; text-align:left; margin-bottom:5px}
  3262. .waiting_user_grid_element_2 { width:400px; float:left; text-align:justify;margin-bottom:5px}
  3263. .waiting_user_grid_element_5 { width:100%; text-align:left;}
  3264. .waiting_user_grid_element_6 { width:100%; text-align:left;}
  3265. /*LIST MEMBERS*/
  3266. .list_members_grid_container { width:100%;}
  3267. .list_members_grid_item { width:105px; height: 150px; border:1px dotted #ccc; float:left; padding:5px; margin:8px;}
  3268. .list_members_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3269. .list_members_grid_element_0 img {width:50px;height:50px;border:3px solid #E6E6E6;}
  3270. .list_members_grid_element_2 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3271. .list_members_grid_element_3 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3272. .list_members_grid_element_5 { width:100%; text-align:center;}
  3273. /*SEARCH USER*/
  3274. .search_user_grid_container { width:100%;}
  3275. .search_user_grid_item { width:100px; height:100px; border:1px dotted #ccc; float:left; padding:5px; margin:5px; overflow:hidden;}
  3276. .search_user_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
  3277. .search_user_grid_element_0 img {width:50px;height:50px;border:2px solid #E6E6E6;}
  3278. .search_user_grid_element_1 { width:100%; text-align:center;}
  3279. .search_user_grid_element_2 { width:100%; text-align:center;}
  3280. .search_user_grid_element_3 { width:100%; text-align:center;}
  3281. /*SEARCH GROUP*/
  3282. .search_group_grid_item {
  3283. float:left;
  3284. width:345px;
  3285. height:165px;
  3286. margin-top:20px;
  3287. }
  3288. .search_group_grid_container {
  3289. margin-top:0px;
  3290. }
  3291. .search_group_grid_element_1 {
  3292. width:330px;
  3293. height:165px;
  3294. padding-left:10px;
  3295. padding-right:10px;
  3296. background-image:url(../../img/boxmygroupscontent.jpg);
  3297. background-repeat:repeat-y;
  3298. overflow:hidden;
  3299. }
  3300. #menu {
  3301. -moz-border-radius: 10px; border: 1px solid #e1e1e0;
  3302. -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
  3303. -opera-border-radius: 10px; border: 1px solid #e1e1e0;
  3304. margin-top:20px;
  3305. margin-right:10px;
  3306. margin-bottom:0px;
  3307. padding-left:10px;
  3308. padding-right:10px;
  3309. padding-top:5px;
  3310. padding-bottom:0px;
  3311. width:200px;
  3312. float: right;
  3313. min-height: 150px;
  3314. }
  3315. /* INVITATIONS */
  3316. .invitation_confirm {
  3317. border-top:1px solid #D8DFEA;
  3318. }
  3319. .invitation_image {
  3320. width:110px;
  3321. }
  3322. /**********************************************
  3323. * MESSAGE TOOL *
  3324. **********************************************/
  3325. #inbox-wrapper {
  3326. width:100%;
  3327. }
  3328. #inbox {
  3329. height:auto;
  3330. margin-left:auto;
  3331. margin-right:auto;
  3332. overflow:hidden;
  3333. }
  3334. #outbox {
  3335. height:auto;
  3336. margin-left:auto;
  3337. margin-right:auto;
  3338. overflow:hidden;
  3339. }
  3340. #inbox-menu {
  3341. width:150px;
  3342. float:left;
  3343. margin-right:10px;
  3344. }
  3345. #inbox-menu ul {
  3346. list-style-image:none;
  3347. list-style-position:outside;
  3348. list-style-type:none;
  3349. margin:0;
  3350. padding:0px;
  3351. }
  3352. #inbox-menu ul li {
  3353. padding:2px 0px;
  3354. }
  3355. #message-reply-link {
  3356. float:right;
  3357. }
  3358. .message-item {
  3359. -moz-background-clip:border;
  3360. -moz-background-inline-policy:continuous;
  3361. -moz-background-origin:padding;
  3362. -moz-border-radius-bottomleft:8px;
  3363. -moz-border-radius-bottomright:8px;
  3364. -moz-border-radius-topleft:8px;
  3365. -moz-border-radius-topright:8px;
  3366. background:#F5F5F5 none repeat scroll 0 0;
  3367. margin:0 0 5px;
  3368. padding:10px;
  3369. }
  3370. .message-topic {
  3371. -moz-background-clip:border;
  3372. -moz-background-inline-policy:continuous;
  3373. -moz-background-origin:padding;
  3374. -moz-border-radius-bottomleft:8px;
  3375. -moz-border-radius-bottomright:8px;
  3376. -moz-border-radius-topleft:8px;
  3377. -moz-border-radius-topright:8px;
  3378. background:#E6EEFB none repeat scroll 0 0;
  3379. margin:0 0 5px;
  3380. padding:10px;
  3381. }
  3382. .message-group-title-topic {
  3383. font-size:180%;
  3384. margin:5px 0px 5px 0px;
  3385. }
  3386. .message-group-title {
  3387. font-size:120%;
  3388. }
  3389. .message-group-author {
  3390. margin:5px 0px 5px 0px;
  3391. }
  3392. .message-group-content {
  3393. line-height:150%;
  3394. margin: 5px 0px 8px 0px;
  3395. }
  3396. .message-group-date {
  3397. color:#666;
  3398. width:100%;
  3399. text-align:right;
  3400. }
  3401. .view-message-content {
  3402. line-height:150%;
  3403. font-size:110%;
  3404. }
  3405. .message_view_table {
  3406. cellspacing:0;
  3407. cellpadding:0;
  3408. background-color:#dbeaf5;
  3409. border=0;
  3410. border-collapse: collapse;
  3411. width: 100%;
  3412. }
  3413. .message_view_table th {
  3414. padding-right: 12px;
  3415. border: 1px solid gray;
  3416. background-color: #f0f0f0;
  3417. }
  3418. .message-select-box {
  3419. float:left;
  3420. display:inline;
  3421. position:absolute;
  3422. margin-top:23px;
  3423. margin-left:20px;
  3424. }
  3425. /* styles from the my.profile.php file */
  3426. .message-content {
  3427. /* float:right;
  3428. background:#FFF;
  3429. padding: 10px 0 0 5px;
  3430. width:125px;
  3431. position:relative;*/
  3432. }
  3433. .message-content .message-delete {
  3434. position: absolute;
  3435. top: 10px;
  3436. right: 10px;
  3437. cursor: pointer;
  3438. }
  3439. .message-content-internal {
  3440. display:inline;
  3441. margin:20px auto;
  3442. background:#F5E38E;
  3443. border:2px solid #EBCA4F;
  3444. padding:10px;
  3445. width:100px;
  3446. position:relative;
  3447. margin-top:150px;
  3448. margin-right:-100px;
  3449. }
  3450. .message-title {
  3451. /* color:#ff0000; */
  3452. font-size:12px;
  3453. }
  3454. .message-body {
  3455. padding: 0 0 11px;
  3456. color:#333;
  3457. }
  3458. .message-link {
  3459. color:#ff8400;
  3460. }
  3461. .message-view {
  3462. float:right;
  3463. margin:20px auto;
  3464. background:#F5E38E;
  3465. border:2px solid #EBCA4F;
  3466. padding:10px;
  3467. width:100px;
  3468. position:relative;
  3469. margin-top:115px;
  3470. margin-right:-100px;
  3471. }
  3472. .message-content-table {
  3473. background-color:white;
  3474. border:1px solid black;
  3475. position:absolute;
  3476. width:200px;
  3477. height:60px;
  3478. z-index:3;
  3479. visibility:hidden;
  3480. top:85px;
  3481. left:10px;
  3482. margin: 0px;
  3483. padding: 0px;
  3484. }
  3485. #message {
  3486. margin: 0 auto;
  3487. text-align: center;
  3488. }
  3489. #message select {
  3490. margin: 10px 0;
  3491. width: 220px;
  3492. }
  3493. #message textarea {
  3494. margin: 10px 0;
  3495. }
  3496. #message td {
  3497. padding: 4px;
  3498. }
  3499. .message-top-title {
  3500. float:left;
  3501. margin-top:1px;
  3502. margin-bottom:1px;
  3503. background-color:#F2F2F2;
  3504. width:600px;
  3505. border-bottom:1px solid #CCCCCC;
  3506. margin:left:5px;
  3507. }
  3508. .message-bottom-title {
  3509. height:22px;
  3510. float:left;
  3511. margin-top:1px;
  3512. margin-bottom:1px;
  3513. background-color:#F2F2F2;
  3514. width:600px;
  3515. border-bottom:1px solid #CCCCCC;
  3516. }
  3517. .message-content-body-left {
  3518. float:left;
  3519. width:30%;
  3520. }
  3521. .message-content-body-right {
  3522. float:right;
  3523. text-align:left;
  3524. width:60%;
  3525. }
  3526. .message-body-title {
  3527. float:right;
  3528. margin-top:1px;
  3529. margin-bottom:5px;
  3530. border-bottom:1px solid #CCCCCC;
  3531. border-collapse:collapse;
  3532. }
  3533. .message-image-info {
  3534. float:left;
  3535. margin-top:10px;
  3536. margin-bottom:10px;
  3537. margin-left:10px;
  3538. text-align:left;
  3539. margin-right:20px;
  3540. }
  3541. .message-content-body-right dd {
  3542. color:#333399;
  3543. border-bottom:1px solid #CCCCCC;
  3544. height:20px;
  3545. text-decoration:none;
  3546. outline-style:none;
  3547. background:#ffffff;
  3548. }
  3549. .message-content-body-right:hover {
  3550. }
  3551. a.unread {
  3552. font-weight:bold;
  3553. }
  3554. /*SOCIAL TOOL*/
  3555. .social-plugin-item {
  3556. float:left;
  3557. width:50%;
  3558. background-color:#ccc;
  3559. margin: 0px;
  3560. }
  3561. #social-plugins {
  3562. float:left;
  3563. background-color:#f00;
  3564. width:100%;
  3565. margin: 0px;
  3566. padding:2px;
  3567. }
  3568. .social-profile-extended {
  3569. width:320px;
  3570. overflow:hidden;
  3571. }
  3572. div.image-social-content {
  3573. float:left;
  3574. border:1px dotted #ccc;
  3575. margin:2px;
  3576. padding: 8px 4px 4px 4px;
  3577. background: #ffffff;
  3578. height:105px;
  3579. width:82px;
  3580. z-index:5;
  3581. cursor:pointer;
  3582. position:relative;
  3583. overflow:hidden;
  3584. }
  3585. div.image-social-content span {
  3586. overflow:hidden;
  3587. display:block;
  3588. height:75px;
  3589. }
  3590. div.image-social-content img {
  3591. vertical-align:middle;
  3592. }
  3593. div.image-social-content center.friend {
  3594. overflow:hidden;
  3595. height:30px;
  3596. }
  3597. .image-social-content .image-delete {
  3598. position: absolute;
  3599. top: 1px;
  3600. right: 1px;
  3601. cursor: pointer;
  3602. }
  3603. .social-info {
  3604. background:#B8C8DC;
  3605. color:#4475B0;
  3606. font-size:12px;
  3607. font-weight:bold;
  3608. }
  3609. .social-display-image {
  3610. float:right;
  3611. margin-top:-130px;
  3612. margin-right:5px;
  3613. }
  3614. .social-search-image {
  3615. color:#000033;
  3616. margin-top:2px;
  3617. width:200px;
  3618. }
  3619. .social-subtitle-search {
  3620. background:#ffffff;
  3621. border-top:1px #9DACBF solid;
  3622. border-bottom:1px #9DACBF solid;
  3623. }
  3624. .social-align-box {
  3625. text-align:left;
  3626. float:left;
  3627. }
  3628. .social-header {
  3629. margin-bottom:8px;
  3630. }
  3631. #social-content {
  3632. width:100%;
  3633. height:auto;
  3634. overflow:hidden;
  3635. margin-left:auto;
  3636. margin-right:auto;
  3637. }
  3638. #social-content-right {
  3639. height:auto;
  3640. overflow:hidden;
  3641. float:left;
  3642. width:700px;
  3643. }
  3644. .social-content-image {
  3645. margin-bottom:10px;
  3646. margin-top:2px;
  3647. overflow:hidden;
  3648. }
  3649. #social-content-left {
  3650. display:block;
  3651. float:left;
  3652. height:auto;
  3653. margin-right:10px;
  3654. min-height:300px;
  3655. overflow:hidden;
  3656. width:175px;
  3657. }
  3658. .social-content-description {
  3659. background:#ECE9D8;
  3660. }
  3661. .social-content-body {
  3662. background:#ffffff;
  3663. }
  3664. .social-content-table {
  3665. border-top:1px #9DACBF solid;
  3666. border-left:1px #9DACBF solid;
  3667. border-right:1px #9DACBF solid;
  3668. border-bottom:1px #9DACBF solid;
  3669. }
  3670. .social-profile-info dt {
  3671. text-align:left;
  3672. clear:left;
  3673. float:left;
  3674. width:80px;
  3675. }
  3676. .social-profile-info dd {
  3677. padding:1px 0px 3px 0px;
  3678. float:left;
  3679. margin:0;
  3680. display : block;
  3681. padding-left:10px;
  3682. width:200px;
  3683. }
  3684. /* general layout of the profile page */
  3685. #social-profile-wrapper {
  3686. width: 100%;
  3687. text-align:left;
  3688. margin:0 auto;
  3689. float: left;
  3690. }
  3691. #social-profile-container {
  3692. /* width: 705px; */
  3693. }
  3694. #social-profile-left {
  3695. float:left;
  3696. width:22%;
  3697. }
  3698. #social-profile-content {
  3699. float:right;
  3700. width:47%;
  3701. margin-left: 4px;
  3702. }
  3703. #social-profile-right {
  3704. float:right;
  3705. width:30%;
  3706. margin-left: 4px;
  3707. }
  3708. /* SOCIAL MENU VERTICAL */
  3709. .social-menu {
  3710. width:100%;
  3711. height:auto;
  3712. }
  3713. .social-menu ul {
  3714. list-style-image:none;
  3715. list-style-position:outside;
  3716. list-style-type:none;
  3717. margin:0;
  3718. padding:0px;
  3719. }
  3720. .social-menu li {
  3721. margin-bottom:4px;
  3722. padding-bottom:12px;
  3723. background-image:url(../../img/line-social.jpg);
  3724. background-position:bottom;
  3725. background-repeat:repeat-x;
  3726. }
  3727. .social-menu li img {
  3728. float:left;
  3729. }
  3730. .social-menu-sub-level a img {
  3731. float:left;
  3732. }
  3733. .social-menu ul li a {
  3734. padding:2px 0px;
  3735. }
  3736. .social-menu-sub-level {
  3737. margin-left:20px;
  3738. }
  3739. .social-menu-title{
  3740. width:100%;
  3741. float:left;
  3742. height:auto;
  3743. background-color:#85b80b;
  3744. margin-bottom:10px;
  3745. padding-top:4px;
  3746. padding-bottom:4px;
  3747. }
  3748. .social-menu-text1 {
  3749. color:#fff;
  3750. font-size:12px;
  3751. font-weight:bold;
  3752. }
  3753. .social-menu-text2 {
  3754. color:#000;
  3755. font-weight:normal;
  3756. font-size:12px;
  3757. }
  3758. .social-menu-text3 {
  3759. color:#94cdf9;
  3760. font-weight:normal;
  3761. font-size:12px;
  3762. font-weight:bold;
  3763. }
  3764. .social-menu-text4 {
  3765. font-family:Verdana, Geneva, sans-serif;
  3766. color:#000;
  3767. font-weight:normal;
  3768. font-size:13px;
  3769. vertical-align:bottom;
  3770. }
  3771. .social-menu-text-active {
  3772. font-family:Verdana, Geneva, sans-serif;
  3773. color:#000;
  3774. font-weight:bold;
  3775. font-size:12px;
  3776. vertical-align:bottom;
  3777. }
  3778. .social-menu-title-right {
  3779. width:84%;
  3780. float:right;
  3781. height:20px;
  3782. background-color:#32578b;
  3783. margin-bottom:10px;
  3784. }
  3785. /* BOX SHARED PROFILE */
  3786. .social-friend-container {
  3787. width:100%;
  3788. overflow:hidden;
  3789. }
  3790. .shared_profile_mygroups_grid_container {
  3791. width:100%;
  3792. overflow:hidden;
  3793. }
  3794. .shared_profile_mygroups_grid_item {
  3795. width:42%;
  3796. float:left;
  3797. height:140px;
  3798. margin:20px;
  3799. }
  3800. .social-menu-group-member {
  3801. float:left;
  3802. height:120px;
  3803. margin:5px;
  3804. overflow:hidden;
  3805. padding:2px;
  3806. width:76px;
  3807. }
  3808. /* styles from the my.profile.php file */
  3809. #social_widget {
  3810. /* border:1px dotted #ccc; */
  3811. float:left;
  3812. padding:1px;
  3813. padding-bottom:10px;
  3814. margin-bottom:10px;
  3815. margin-left:0px;
  3816. margin-right:0px;
  3817. width:215px;
  3818. }
  3819. #social_widget_image {
  3820. float:left;
  3821. width:190px;
  3822. margin-bottom:10px;
  3823. padding:2px;
  3824. }
  3825. /* SOCIAL BOX */
  3826. .social-box-main1 {
  3827. width:100%;
  3828. height:auto;
  3829. overflow:hidden;
  3830. }
  3831. .social-box-left {
  3832. width:345px;
  3833. float:left;
  3834. height:auto;
  3835. margin:0px;
  3836. }
  3837. .social-box-right {
  3838. width:300px;
  3839. float:left;
  3840. height:auto;
  3841. margin-left:10px;
  3842. overflow:hidden;
  3843. }
  3844. .social-box-container1 {
  3845. width:350px;
  3846. height:auto;
  3847. margin-top:10px;
  3848. }
  3849. .social-box-content1 {
  3850. width:330px;
  3851. height:auto;
  3852. padding-left:15px;
  3853. padding-right:10px;
  3854. background-image:url(../../img/boxmygroupscontent.jpg);
  3855. background-repeat:repeat-y;
  3856. overflow:hidden;
  3857. }
  3858. .social-box-main2 {
  3859. height:auto;
  3860. overflow:hidden;
  3861. width:700px;
  3862. }
  3863. .social-box-container2 {
  3864. width:700px;
  3865. height:auto;
  3866. overflow:hidden;
  3867. margin-bottom:20px;
  3868. }
  3869. .social-box-content2 {
  3870. width:660px;
  3871. background-image:url(../../img/content-post-group2.jpg);
  3872. background-repeat:repeat-y;
  3873. padding-left:20px;
  3874. padding-right:20px;
  3875. }
  3876. .social-box-container3 {
  3877. width:110px;
  3878. margin-left:60px;
  3879. }
  3880. .social-box-content3 {
  3881. width:560px;
  3882. height:auto;
  3883. padding-left:20px;
  3884. padding-right:20px;
  3885. background-image:url(../../img/content-post-reply02.jpg);
  3886. background-repeat:repeat-y;
  3887. }
  3888. .box_shared_profile_group_title {
  3889. border-bottom:1pt dotted #000;
  3890. padding:5px;
  3891. vertical-align:middle;
  3892. font-size:12pt;
  3893. font-weight:bold;
  3894. margin-bottom:5px
  3895. }
  3896. .box_shared_profile_group_description {
  3897. height:100px;
  3898. margin-left:65px;
  3899. }
  3900. .box_shared_profile_group_image {
  3901. height:80px;
  3902. width:60px;
  3903. float:left;
  3904. }
  3905. .box_shared_profile_group_actions {
  3906. text-align:right;
  3907. }
  3908. .social-groups-text1 {
  3909. font-family:Verdana, Geneva, sans-serif;
  3910. font-size:12px;
  3911. color:#669;
  3912. }
  3913. .social-groups-text2 {
  3914. font-family:Verdana, Geneva, sans-serif;
  3915. font-size:12px;
  3916. color:#686868;
  3917. font-weight:bold;
  3918. }
  3919. .social-groups-text3 {
  3920. font-family:Verdana, Geneva, sans-serif;
  3921. font-size:12px;
  3922. color:#000;
  3923. font-weight:bold;
  3924. text-transform:capitalize;
  3925. margin-top:5px;
  3926. }
  3927. .social-groups-text4 {
  3928. font-family:Verdana, Geneva, sans-serif;
  3929. font-size:12px;
  3930. color:#666666;
  3931. }
  3932. .social-groups-image {
  3933. border: 2px solid #cac9c9;
  3934. }
  3935. .social-groups-home-title {
  3936. border-bottom:1pt dotted #000;
  3937. padding:2px;
  3938. margin-bottom:5px;
  3939. font-weight:bold;
  3940. }
  3941. .social-home-users-online {
  3942. border:3px solid #E6E6E6;
  3943. }
  3944. #social-content-online {
  3945. background-color:#85b80b;
  3946. margin-bottom:5px;
  3947. margin-top:2px;
  3948. padding:1px;
  3949. }
  3950. #social-group-details {
  3951. margin-bottom:20px;
  3952. }
  3953. .social-group-details-info span {
  3954. color:#777;
  3955. }
  3956. .social-group-details-info {
  3957. padding:2px 0px 2px 0px;
  3958. }
  3959. .social-background-content {
  3960. z-index:5;
  3961. position:relative;
  3962. /*border:1px dotted #DDDDDD;*/
  3963. width:170px;
  3964. overflow:hidden;
  3965. }
  3966. .social-background-content .hidden_message {
  3967. cursor:pointer;
  3968. position:absolute;
  3969. top:0px;
  3970. right:0px;
  3971. }
  3972. .hidden_message {
  3973. background-color:#5A5A5A;
  3974. padding:2px;
  3975. margin:0px;
  3976. }
  3977. .hidden_message a {
  3978. color:#fff;
  3979. /* text-decoration: underline; */
  3980. }
  3981. #social-forum-main-title {
  3982. font-size:130%;
  3983. font-weight:bold;
  3984. padding: 0px 8px 0px 8px;
  3985. }
  3986. #social-forum-title {
  3987. font-size:130%;
  3988. font-weight:bold;
  3989. padding: 0px 8px 0px 8px;
  3990. }
  3991. #social-thread {
  3992. /*-moz-border-radius-bottomleft:5px;
  3993. -moz-border-radius-bottomright:5px; */
  3994. -moz-border-radius-topleft:5px;
  3995. -moz-border-radius-topright:5px;
  3996. border:1px solid #E1E1E0;
  3997. background-color:#E1E1E0;
  3998. padding:8px;
  3999. font-size:110%;
  4000. font-weight:bold;
  4001. }
  4002. #social-post {
  4003. -moz-border-radius-bottomleft:5px;
  4004. -moz-border-radius-bottomright:5px;
  4005. /* -moz-border-radius-topleft:5px;
  4006. -moz-border-radius-topright:5px; */
  4007. border:1px solid #E1E1E0;
  4008. background-color:#ECECEB;
  4009. padding:12px;
  4010. }
  4011. /* THEMATIC ADVANCE */
  4012. .thematic-postit {
  4013. width:250px;
  4014. height:auto;
  4015. overflow:hidden;
  4016. }
  4017. .thematic-postit-center {
  4018. background-image: url('../../img/postit_center.png');
  4019. height:auto;
  4020. margin-top: 0px;
  4021. margin-bottom:-16px;
  4022. padding-left:20px;
  4023. padding-right:20px;
  4024. padding-bottom:10px;
  4025. padding-top: 5px;
  4026. }
  4027. #titlethematic{
  4028. text-transform: uppercase;
  4029. color: green;
  4030. }
  4031. /* ATTENDANCE */
  4032. div.attendance-calendar-add div.row div.formw,div.attendance-calendar-edit div.row div.formw {
  4033. float: left;
  4034. display:inline;
  4035. width:auto;
  4036. overflow:hidden;
  4037. margin-right:2px;
  4038. margin-top:5px;
  4039. }
  4040. .attendance-calendar-add div.row {
  4041. display:inline;
  4042. }
  4043. .attendance-calendar-edit div.row {
  4044. display:inline;
  4045. }
  4046. .attendance-calendar-row {
  4047. padding:5px;
  4048. }
  4049. .attendance-faults-bar {
  4050. width:90%;
  4051. background-color:none;
  4052. padding:2px;
  4053. font-size:120%;
  4054. font-weight: bold;
  4055. padding:5px;
  4056. }
  4057. /* DASHBOARD */
  4058. /* Head section */
  4059. #head {
  4060. background-color: #000;
  4061. height: 100px;
  4062. }
  4063. #head h1 {
  4064. line-height: 100px;
  4065. color: #FFF;
  4066. text-align: center;
  4067. text-indent: -9999em
  4068. }
  4069. /* End Head Section */
  4070. /* Columns section */
  4071. #columns .column {
  4072. float: left;
  4073. width: 50%;
  4074. /* Min-height: */
  4075. min-height: 400px;
  4076. height: auto !important;
  4077. height: 400px;
  4078. }
  4079. #columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
  4080. /* To add in 1.8.7*/
  4081. .session_box_title span {
  4082. font-size: 130%;
  4083. font-weight: bold;
  4084. }
  4085. .sub_session_box_title span {
  4086. font-size: 130%;
  4087. font-weight: bold;
  4088. }
  4089. #session_category_title {
  4090. font-size: 140%;
  4091. font-weight: bold;
  4092. padding: 2px 0px 5px 5px;
  4093. }
  4094. /* fixes the * */
  4095. span.form_required {
  4096. padding-right:5px;
  4097. }
  4098. .userportal-course-item {
  4099. -webkit-border-radius: 10px;
  4100. -moz-border-radius: 10px;
  4101. border-radius: 10px;
  4102. background-color:#F9F9F9;
  4103. padding:5px 10px 5px 10px;
  4104. height:40px;
  4105. margin:5px;
  4106. }
  4107. .userportal-course-item-title {
  4108. font-size:135%;
  4109. }
  4110. .courseadminview-activity-3col, .platformadminview-activity-3col {
  4111. -moz-border-radius:5px 5px 5px 5px;
  4112. border:1px solid #E1E1E0;
  4113. float:left;
  4114. margin:10px 20px 10px 10px;
  4115. padding:11px;
  4116. width:210px;
  4117. height:330px;
  4118. }
  4119. .courseadminview-activity-3col ul {
  4120. padding:10px 20px 10px 20px;
  4121. list-style-type:none;
  4122. height:240px;
  4123. margin-left:0px;
  4124. margin: 0px 0px 0px 0px ;
  4125. }
  4126. .courseadminview-activity-3col ul li {
  4127. padding:4px 0px 4px 0px;
  4128. }
  4129. #activity-3col {
  4130. width: 800px ;
  4131. margin-left: auto ;
  4132. margin-right: auto ;
  4133. }
  4134. .userportal-catalog-item {
  4135. -webkit-border-radius: 10px;
  4136. -moz-border-radius: 10px;
  4137. border-radius: 10px;
  4138. background-color:#F9F9F9;
  4139. padding:5px 10px 10px 6px;
  4140. /* height:40px; */
  4141. }
  4142. .userportal-catalog-item .catalog_box li span {
  4143. font-size:130%;
  4144. font-weight:bold;
  4145. margin-left:5px;
  4146. }
  4147. .userportal-session-item {
  4148. -webkit-border-radius: 10px;
  4149. -moz-border-radius: 10px;
  4150. border-radius: 10px;
  4151. background-color:#F9F9F9;
  4152. padding:5px 10px 10px 6px;
  4153. /* height:40px; */
  4154. }
  4155. .userportal-session-category-item {
  4156. -webkit-border-radius: 10px;
  4157. -moz-border-radius: 10px;
  4158. border-radius: 10px;
  4159. background-color:#F9F9F9;
  4160. padding:5px 10px 10px 16px;
  4161. /* height:40px; */
  4162. /*background-color:#f9f9f9; border:1px solid #dddddd; padding:5px 10px 5px 10px; margin-top: 10px; */
  4163. }
  4164. .catalog_box {
  4165. border: 1px solid #DCE5F3;
  4166. /* font-weight: bold; */
  4167. color: #666;
  4168. list-style-type: none;
  4169. margin:5px 5px 10px 5px;
  4170. padding: 5px;
  4171. background-color:#FFF;
  4172. -webkit-border-radius: 10px;
  4173. -moz-border-radius: 10px;
  4174. border-radius: 10px;
  4175. }
  4176. .course-student-view-activity-3col {
  4177. -webkit-border-radius: 10px;
  4178. -moz-border-radius: 10px;
  4179. border-radius: 10px;
  4180. background-color:#FFFFFF;
  4181. height: 350px;
  4182. width: 800px ;
  4183. margin-left: auto ;
  4184. margin-right: auto ;
  4185. }
  4186. .course-student-view-activity-3col ul {
  4187. padding:10px 20px 10px 20px;
  4188. list-style-type:none;
  4189. /* height:240px; */
  4190. margin-left:0px;
  4191. margin: 0px 0px 0px 0px ;
  4192. float:left;
  4193. width : 280px;
  4194. }
  4195. .course-student-view-activity-3col ul li {
  4196. padding:5px 0px 4px 0px;
  4197. /* float:left;
  4198. width : 380px; */
  4199. }
  4200. /* plugins divs */
  4201. #plugin-header {
  4202. margin-left:65px;
  4203. padding:5px;
  4204. }
  4205. #plugin-mycourses_menu {
  4206. padding:5px;
  4207. }
  4208. #plugin-mycourses_main {
  4209. padding:5px;
  4210. }
  4211. #plugin-footer {
  4212. padding:0px;
  4213. }
  4214. /* Categories courses*/
  4215. #course-picture {
  4216. position:absolute;
  4217. top:8%;
  4218. left:85%;
  4219. padding:4px;
  4220. border:1pt solid #ccc;
  4221. }
  4222. #categories-content-first {
  4223. width:290px;
  4224. padding:10px;
  4225. float:left;
  4226. }
  4227. #categories-search {
  4228. padding:10px;
  4229. text-align:center;
  4230. height:105px;
  4231. float: right;
  4232. }
  4233. #categories-list {
  4234. padding:25px;
  4235. margin-top:10px;
  4236. font-size:11pt;
  4237. }
  4238. #categories-content-second {
  4239. margin-left: 315px;
  4240. padding:5px;
  4241. margin-top:5px;
  4242. }
  4243. .categories-block-course {
  4244. -moz-border-radius-topleft:8px;
  4245. -moz-border-radius-topright:8px;
  4246. -webkit-border-top-left-radius: 8px;
  4247. -webkit-border-top-right-radius: 8px;
  4248. border-top-left-radius: 8px;
  4249. border-top-right-radius: 8px;
  4250. -moz-box-shadow:0 -1px 10px 2px #CCCCCC;
  4251. -Webkit-box-shadow: 0 -1px 10px 2px #CCCCCC;
  4252. box-shadow: 0 -1px 10px 2px #CCCCCC;
  4253. border:1px solid #CCCCCC;
  4254. float:left;
  4255. margin:10px;
  4256. padding:9px;
  4257. width:240px;
  4258. min-height:132px;
  4259. }
  4260. .categories-course-picture {
  4261. width:75px;
  4262. height:75px;
  4263. float:left;
  4264. }
  4265. .categories-course-picture img {
  4266. width: 75px;
  4267. height: 75px;
  4268. }
  4269. .categories-course-description {
  4270. margin-left:80px;
  4271. font-family:arial;
  4272. font-size:11px;
  4273. }
  4274. .categories-course-links {
  4275. margin-top:5px;
  4276. height: 40px;
  4277. }
  4278. .attendance-users-table td {
  4279. /* height:66px; */
  4280. }
  4281. .attendance-calendar-table td {
  4282. /* height:66px; */
  4283. }
  4284. /* New forum table */
  4285. .forum_table_title {
  4286. border-collapse: collapse;
  4287. width: 100%;
  4288. padding: 5px;
  4289. border-left: 1px solid gray;
  4290. border-top: 1px solid gray;
  4291. border-right: 1px solid gray;
  4292. padding:5px;
  4293. }
  4294. .forum_table_title th {
  4295. padding-right: 12px;
  4296. /*border: 1px solid gray;*/
  4297. background-color: #E5EDF9;
  4298. }
  4299. .forum_table {
  4300. border-collapse: collapse;
  4301. width: 100%;
  4302. padding: 5px;
  4303. border: 1px solid gray;
  4304. margin-bottom:15px;
  4305. }
  4306. .forum_table .forum_head{
  4307. padding:5px;
  4308. text-align: left;
  4309. font-size:14px;
  4310. }
  4311. .forum_table th {
  4312. padding-right: 12px;
  4313. /*border: 1px solid gray;*/
  4314. background-color: #E5EDF9;
  4315. }
  4316. .forum_table tr.row_odd {
  4317. background-color: #F2F2F2;
  4318. }
  4319. .forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
  4320. background-color: #E5EDF9;
  4321. }
  4322. .forum_table tr.row_even {
  4323. background-color: #fff;
  4324. }
  4325. .forum_table td {
  4326. padding: 5px;
  4327. vertical-align: top;
  4328. border-bottom: 1px solid #b0b0b0;
  4329. border-right: 1px dotted #e1e1e1;
  4330. border-left: 1px dotted #e1e1e1;
  4331. }
  4332. .post {
  4333. border: 1px solid gray;
  4334. margin-bottom:5px;
  4335. }
  4336. /* Text resize icons in header */
  4337. .resize_font { /* the canvas */
  4338. margin: 0 5px 0 5px;
  4339. }
  4340. .reset_font {
  4341. font-size: 1.2em;
  4342. color: gray;
  4343. border: 1px solid white;
  4344. padding: 2px;
  4345. }
  4346. .reset_font:hover {
  4347. border: 1px solid black;
  4348. cursor: pointer;
  4349. }
  4350. .increase_font {
  4351. font-size: 1.8em;
  4352. color: gray;
  4353. border: 1px solid white;
  4354. padding: 2px;
  4355. }
  4356. .increase_font:hover {
  4357. border: 1px solid black;
  4358. cursor: pointer;
  4359. }
  4360. .decrease_font {
  4361. font-size: 0.6em;
  4362. color: gray;
  4363. border: 1px solid white;
  4364. padding: 2px;
  4365. }
  4366. .decrease_font:hover {
  4367. border: 1px solid black;
  4368. cursor: pointer;
  4369. }
  4370. .online_grid_item {
  4371. float:left;
  4372. margin:10px;
  4373. text-align:center;
  4374. }
  4375. .online_grid_element_0 {
  4376. width: 100px;
  4377. height: 100px;
  4378. overflow: hidden;
  4379. }
  4380. /* input values to crop the image: top, right, bottom, left */
  4381. .online_grid_element_0 img{
  4382. width: 200px;
  4383. margin: -10px 0 0 -50px;
  4384. /* height: 150px; */
  4385. }
  4386. .online_grid_element_1, .online_grid_element_2 {
  4387. font-size:10px;
  4388. }
  4389. .progresstext {
  4390. text-align:center;
  4391. }
  4392. .rounded_div {
  4393. background: none repeat scroll 0 0 #FFFFFF;
  4394. border: 1px solid #E5E5E5;
  4395. border-radius: 11px 11px 11px 11px;
  4396. -webkit-border-radius: 11px 11px 11px 11px;
  4397. -opera-border-radius: 11px 11px 11px 11px;
  4398. -moz-border-radius: 11px 11px 11px 11px;
  4399. box-shadow: 0 4px 18px #C8C8C8;
  4400. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  4401. -opera-box-shadow: 0 4px 18px #C8C8C8;
  4402. -moz-box-shadow: 0 4px 18px #C8C8C8;
  4403. float: left;
  4404. height: auto;
  4405. margin: 10px 8px 15px 15px;
  4406. padding: 16px 12px 5px;
  4407. }