default.css 77 KB

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