default.css 59 KB

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