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