default.css 60 KB

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