default.css 74 KB

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