default.css 64 KB

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