default.css 97 KB

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