default.css 79 KB

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