default.css 88 KB

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