default.css 80 KB

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