default.css 97 KB

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