default.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124
  1. /*****************************************************
  2. * MAIN - CORPORATE *
  3. *****************************************************/
  4. html {
  5. height: 100%;
  6. }
  7. /* Redefining html styles */
  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. margin: 0;
  14. padding: 0;
  15. height: 100%; /* stick */
  16. }
  17. #wrapper{
  18. min-height: 100%;
  19. height: auto !important;
  20. height: 100%;
  21. margin: 0 auto -4em;
  22. }
  23. input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  24. background-image:url(images/shadow.gif);
  25. }
  26. img {
  27. border: none;
  28. }
  29. a:link {
  30. color : #333;
  31. }
  32. a:visited {
  33. color : #333;
  34. }
  35. a:hover {
  36. color: #f3840d;
  37. }
  38. a:active {
  39. }
  40. input, input[type=file], select, textarea {
  41. background:#F8F8F8;
  42. border:1px solid #999999;
  43. padding:1px 2px;
  44. }
  45. input[type=button], input[type=submit] {
  46. border:1px solid #999999;
  47. background:#F0F0F0;
  48. padding-left:10px;
  49. padding-right:10px;
  50. font-weight:bold;
  51. color:#666;
  52. }
  53. /* header styles */
  54. #header {
  55. }
  56. /* header 1 styles */
  57. #header1 {
  58. background-color: #dcdcdc;
  59. color: #666;
  60. border-bottom: 1px solid #ccc;
  61. }
  62. #header1 a {
  63. color: #333;
  64. text-decoration: none;
  65. }
  66. #header1 a:hover {
  67. }
  68. #my_courses {
  69. float: right;
  70. font-weight: bold;
  71. }
  72. #header1 img {
  73. border: 0px;
  74. }
  75. /* header 2 styles */
  76. #header2 {
  77. background: #f0f0f0;
  78. color: #666;
  79. border-bottom: 1px solid #ccc;
  80. }
  81. #header2 a {
  82. color: #333;
  83. text-decoration: none;
  84. }
  85. #header2 a:hover {
  86. }
  87. #Header2Right ul {
  88. float: right;
  89. list-style-type: none;
  90. text-align: right;
  91. color:#680157;
  92. margin: 0;
  93. padding: 0;
  94. }
  95. #Header2Right ul li {
  96. display: inline;
  97. }
  98. #Header2Right ul li a {
  99. color:#333;
  100. }
  101. #Header2Right ul li a:hover {
  102. color:#333;
  103. }
  104. /* header 3 styles */
  105. #header3 {
  106. background: #fff;
  107. border-bottom: 1px solid #aeaeae;
  108. color: #333;
  109. height:auto;
  110. font-weight: bold;
  111. }
  112. #header3 UL {
  113. PADDING-RIGHT: 2px;
  114. PADDING-LEFT: 10px;
  115. PADDING-BOTTOM: 0px;
  116. MARGIN: 0px;
  117. list-style:none;
  118. display: inline;
  119. }
  120. #header3 LI {
  121. PADDING-RIGHT: 0px;
  122. PADDING-LEFT: 2px;
  123. FLOAT: left;
  124. PADDING-BOTTOM: 0px;
  125. MARGIN: 0px;
  126. PADDING-TOP: 0px;/*border-bottom: 1px solid #dcdcdc;*/
  127. cursor: pointer;
  128. }
  129. #header3 a {
  130. float:left;
  131. background:url(../../img/dokeosgrey/tab_left.gif) no-repeat left top;
  132. text-decoration:none;
  133. cursor: pointer;
  134. color: #333;
  135. padding-right: 1px;
  136. padding-left: 9px;
  137. height:25px;
  138. }
  139. #header3 li a:hover {
  140. float:left;
  141. background:url(../../img/dokeosgrey/tab_left_hover.gif) no-repeat left top;
  142. text-decoration:none;
  143. cursor: pointer;
  144. }
  145. #header3 li a span {
  146. float:left;
  147. display:block;
  148. background:url(../../img/dokeosgrey/tab_right.gif) no-repeat right top;
  149. color:#333;
  150. cursor: pointer;
  151. padding-right: 10px;
  152. padding-top: 5px;
  153. height:20px;
  154. }
  155. #header3 li a:hover span {
  156. float:left;
  157. display:block;
  158. background:url(../../img/dokeosgrey/tab_right_hover.gif) no-repeat right top;
  159. color:#333;
  160. cursor: pointer;
  161. }
  162. #header3 #current a {
  163. float:left;
  164. background:url(../../img/dokeosgrey/tab_left_active.gif) no-repeat left top;
  165. text-decoration:none;
  166. }
  167. #header3 #current a span {
  168. float:left;
  169. display:block;
  170. background:url(../../img/dokeosgrey/tab_right_active.gif) no-repeat right top;
  171. }
  172. #header3 #logout {
  173. margin-top: 0px;
  174. }
  175. #header3 input.logout:hover {
  176. }
  177. #logout {
  178. display: inline;
  179. float: right;
  180. width: auto;
  181. text-align: right;
  182. font-size: 1.0em;
  183. }
  184. /* header 4 styles */
  185. #header4 {
  186. margin-left: 5px;
  187. height: 21px;
  188. }
  189. a.breadcrumb {
  190. height: 21px;
  191. }
  192. a.breadcrumb0 {
  193. background:url(images/home.gif) no-repeat;
  194. padding-left: 22px;
  195. }
  196. /* footer styles */
  197. #footer {
  198. border-top: 1px solid #aeaeae;
  199. height:3.5em;
  200. color:#fff;
  201. background-color: #434343;
  202. }
  203. .push {
  204. height: 4em; /* Very important */
  205. }
  206. #footer .copyright {
  207. float: right;
  208. padding-top:8px;
  209. margin-right:10px;
  210. }
  211. #footer #platformmanager {
  212. float: left;
  213. padding-top:8px;
  214. margin-left:10px;
  215. }
  216. #footerright {
  217. margin-top: 10px;
  218. float: right;
  219. margin-right:20px;
  220. }
  221. #footerleft {
  222. padding-top: 10px;
  223. }
  224. #footer a {
  225. color:#fff;
  226. }
  227. /* main styles */
  228. #main {
  229. position: relative;
  230. min-height: 320px;
  231. padding-left: 15px;
  232. padding-right: 15px;
  233. padding-bottom: 5px;
  234. }
  235. /* my courses styles */
  236. .maincontent {
  237. float: left;
  238. width: 73%;
  239. min-height: 333px;
  240. margin-top:0;
  241. }
  242. .coursestatusicons {
  243. border: 0px solid #000;
  244. float: left;
  245. padding-right: 5px;
  246. width: auto;
  247. }
  248. .courseslist {
  249. margin-left: -25px;
  250. }
  251. .courses {
  252. list-style-type: none;
  253. margin-bottom: 5px;
  254. }
  255. .courses a {
  256. text-decoration:underline;
  257. }
  258. .user_course_category {
  259. background-color: #efefef;
  260. border: 1px solid #666;
  261. font-weight: bold;
  262. color: #666;
  263. list-style-type: none;
  264. margin: 5px;
  265. padding: 5px;
  266. }
  267. .session_course_item {
  268. /* padding: 0px; */
  269. margin: 0px;
  270. }
  271. .session_course_item .courses {
  272. margin-bottom: 5px;
  273. height:35px;
  274. }
  275. .menu {
  276. float: right;
  277. width: 200px;
  278. min-height: 150px;
  279. background-color: #F0F0F0;
  280. border: 1px solid #bbb;
  281. margin-right: 0px;
  282. margin-bottom: 10px;
  283. padding-bottom: 10px;
  284. margin-top:10px;
  285. }
  286. .menu form {
  287. margin: 0px 6px 0 6px;
  288. }
  289. .menucaption {
  290. font-size: 12px;
  291. font-weight: bold;
  292. padding-left: 12px;
  293. }
  294. .menusection {
  295. width: auto;
  296. margin: 24px 6px 0 6px;
  297. padding-left: 10px;
  298. border: 1px solid #bbb;
  299. }
  300. .menusectioncaption {
  301. position: relative;
  302. top: -9px;
  303. background-color:#F0F0F0;
  304. font-size: 12px;
  305. padding: 0 8px 0 4px;
  306. }
  307. .menulist {
  308. list-style: none;
  309. margin: 0 0 12px 0;
  310. padding: 0;
  311. }
  312. .note {
  313. width: auto;
  314. margin: 24px 6px 0 6px;
  315. padding: 3px;
  316. background-color:#bbb;
  317. border: 1px outset;
  318. }
  319. /* form styles */
  320. .form {
  321. width: 75%;
  322. float: 'left';
  323. }
  324. form div.row {
  325. clear: both;
  326. padding-top: 5px;
  327. }
  328. .form_header {
  329. white-space: nowrap;
  330. padding: 2px;
  331. background-color: #f0f0f0;
  332. border: 1px solid #bbb;
  333. font-weight: bold;
  334. }
  335. form div.row div.label {
  336. float: left;
  337. width: 18%;
  338. text-align: right;
  339. }
  340. form div.row div.formw {
  341. width: 80%;
  342. float:left;
  343. }
  344. [dir=ltr] form div.row div.label, [dir=rtl] form div.row div.formw {
  345. float: left;
  346. text-align: right;
  347. }
  348. [dir=rtl] form div.row div.label, [dir=ltr] form div.row div.formw {
  349. float: right;
  350. text-align: left;
  351. }
  352. form span.form_required {
  353. color: #f00;
  354. }
  355. form span.form_error {
  356. color: #f00;
  357. font-size: x-small;
  358. margin: 2px;
  359. }
  360. /* feedback messages */
  361. .normal-message {
  362. position: relative;
  363. margin-top: 10px;
  364. margin-bottom: 10px;
  365. border-width: 1px;
  366. border-style: solid;
  367. padding: 5px;
  368. border: 1px solid #dcdcdc;
  369. color: #00407F;
  370. background-color: #E5EDF9;
  371. min-height: 30px;
  372. }
  373. .warning-message {
  374. position: relative;
  375. margin-top: 10px;
  376. margin-bottom: 10px;
  377. border-width: 1px;
  378. border-style: solid;
  379. padding: 5px;
  380. border: 1px solid #FFB30F;
  381. color: #000;
  382. background-color: #FFEFA7;
  383. min-height: 30px;
  384. }
  385. .confirmation-message {
  386. position: relative;
  387. margin-top: 10px;
  388. margin-bottom: 10px;
  389. border-width: 1px;
  390. border-style: solid;
  391. padding: 5px;
  392. border: 1px solid #1F8323;
  393. color: #1F8323;
  394. background-color: #CAF0C7;
  395. min-height: 30px;
  396. }
  397. .error-message {
  398. position: relative;
  399. margin-top: 10px;
  400. margin-bottom: 10px;
  401. border-width: 1px;
  402. border-style: solid;
  403. padding: 5px;
  404. border: 1px solid #FF0000;
  405. color: #000;
  406. background-color: #FFD1D1;
  407. min-height: 30px;
  408. }
  409. .confirmation-message .bottom-link, .error-message .bottom-link, .normal-message .bottom-link, .warning-message .bottom-link {
  410. position: absolute;
  411. bottom: 0.2em;
  412. right: 0.5em;
  413. }
  414. /* New training */
  415. .bottom-link {
  416. border: 2px outset;
  417. text-decoration: none;
  418. background-color:#E5EDF9;
  419. border-color: #D4E2F6;
  420. background-image:url(images/button_back.jpg);
  421. background-position:10px 50%;
  422. background-repeat:no-repeat;
  423. font-size:100%;
  424. margin-top:1px;
  425. padding:5px 20px;
  426. vertical-align:middle;
  427. padding-left:35px;
  428. display:block;
  429. }
  430. .bottom-link:active {
  431. border: 2px inset;
  432. }
  433. .bottom-link:link {
  434. border-style: solid;
  435. border-width : 1px 2px 2px 1px;
  436. text-decoration : none;
  437. border-color : #69f #00f #00f #69f;
  438. }
  439. .bottom-link:hover {
  440. border-color: #ccc;
  441. color: #111;
  442. }
  443. /* other styles */
  444. .clear {
  445. clear: both;
  446. line-height: 0px;
  447. height: 0;
  448. }
  449. /* actions */
  450. .actions_lp {
  451. background:#F8F8F8;
  452. height:29px;
  453. padding-left: -17px;
  454. margin: 5px 2px 1px 12px;
  455. vertical-align:middle;
  456. width: 90%;
  457. }
  458. .actions_lp img {
  459. vertical-align:middle;
  460. }
  461. .actions_lp a {
  462. margin-right: 10px;
  463. vertical-align:middle;
  464. }
  465. .actions_lp span {
  466. margin-right: 10px;
  467. vertical-align:middle;
  468. }
  469. .actions_lp form {
  470. margin-right: 10px;
  471. vertical-align:middle;
  472. }
  473. .actions {
  474. background:#efefef;
  475. border-bottom:1px dotted #999999;
  476. border-top:1px dotted #999999;
  477. /*height:35px;*/
  478. padding:2px;
  479. margin-bottom: 5px;
  480. vertical-align:middle;
  481. }
  482. .actions img {
  483. /*display:inline-block;*/
  484. border: none;
  485. text-decoration: none;
  486. background-color: #efefef;
  487. padding-right: 5px;
  488. vertical-align:middle;
  489. }
  490. .actions a {
  491. display:inline-block;
  492. margin-right: 10px;
  493. vertical-align:middle;
  494. }
  495. .actions span {
  496. margin-right: 10px;
  497. vertical-align:middle;
  498. }
  499. .actions form {
  500. margin-right: 10px;
  501. vertical-align:middle;
  502. }
  503. /* big actions */
  504. .actionsbig {
  505. background:#F8F8F8;
  506. border-bottom:1px solid #999999;
  507. border-top:1px solid #999999;
  508. background-color:#efefef;
  509. height:100%;
  510. padding:2px;
  511. margin-bottom: 5px;
  512. vertical-align:middle;
  513. float:left;
  514. width:100%;
  515. }
  516. .actionsbig a {
  517. float:left;
  518. padding-left:12px;
  519. padding-right:12px;
  520. text-align:center;
  521. }
  522. .actions img {
  523. vertical-align:middle;
  524. }
  525. .actions a {
  526. margin-right: 10px;
  527. vertical-align:middle;
  528. }
  529. .actions-title {
  530. background:#efefef;
  531. border-bottom:1px dotted #999999;
  532. border-top:1px dotted #999999;
  533. /*height:35px;*/
  534. padding:4px;
  535. margin-bottom: 5px;
  536. font-size:14px;
  537. font-weight:bolder;
  538. /*background:url(images/actions.jpg) repeat-x;*/
  539. vertical-align:middle;
  540. }
  541. .actions-message {
  542. white-space: nowrap;
  543. padding: 2px;
  544. background-color: #f0f0f0;
  545. border: 1px solid #bbb;
  546. }
  547. /* styles for the profile page */
  548. .profile_image {
  549. float: right;
  550. margin-right: 20px;
  551. }
  552. .profile_form {
  553. float: left;
  554. width: 75%;
  555. }
  556. /* course introduction */
  557. #courseintrocenter {
  558. position: relative;
  559. width: 80%;
  560. margin: 25px auto 10px;
  561. }
  562. #courseintro_iconscenter {
  563. position: relative;
  564. width: 80%;
  565. margin: 0px auto 10px;
  566. }
  567. #courseintroleft {
  568. position: relative;
  569. width: 80%;
  570. margin-bottom: 5px;
  571. }
  572. #courseintro_iconsleft {
  573. position: relative;
  574. width: 80%;
  575. }
  576. /* styles for the agenda */
  577. #agenda {
  578. width: 100%;
  579. margin: 0 auto;
  580. border: 1px solid #CCCCCC;
  581. border-collapse: collapse;
  582. }
  583. /* The cells with the name of the days of the weeks (mon->sun)*/
  584. .weekdays {
  585. background-color: #dcdcdc;
  586. text-align: center;
  587. font-weight: bold;
  588. border: 1px solid #CCCCCC;
  589. border-collapse: collapse;
  590. }
  591. /* The cells for the days (1->31) */
  592. .days_week {
  593. height: 40px;
  594. width: 12%;
  595. border: 1px solid #CCCCCC;
  596. border-collapse: collapse;
  597. background-color: #f9f9f9;
  598. }
  599. .days_weekend {
  600. height: 40px;
  601. width: 12%;
  602. border: 1px solid #CCCCCC;
  603. border-collapse: collapse;
  604. background-color: #eaeaea;
  605. }
  606. .days_today {
  607. height: 40px;
  608. width: 12%;
  609. border: 1px solid #CCCCCC;
  610. border-collapse: collapse;
  611. background-color: #FFCA8D;
  612. color: #CC3300;
  613. font-weight: bold;
  614. }
  615. .agenda_month_divider {
  616. background-color: #666;
  617. color: #fff;
  618. text-align: center;
  619. }
  620. /*The caption of the calendar (displays the month and the << and >> links*/
  621. #agenda_list .title {
  622. background-color: #680157;
  623. color: #fff;
  624. text-align: left;
  625. padding: 2px 10px;
  626. text-align: center;
  627. border: 1px solid #bbb;
  628. }
  629. #agenda_list .title a:link, #agenda_list #title a:visited {
  630. color: #fff;
  631. padding: 2px 10px;
  632. text-align: center;
  633. }
  634. #agenda_list .title a:hover {
  635. color: #B70297;
  636. padding: 2px 10px;
  637. text-align: center;
  638. }
  639. /* text in the cells: display of agenda items (visible)*/
  640. #agenda_list .data {
  641. background-color: #eee;
  642. text-align: left;
  643. padding: 2px 10px;
  644. font-weight: bold;
  645. border: 0px solid #dcdcdc;
  646. border-collapse: collapse;
  647. }
  648. #agenda_list .datanotbold {
  649. background-color: #eee;
  650. text-align: left;
  651. padding: 2px 10px;
  652. font-weight: normal;
  653. border: 0px solid #dcdcdc;
  654. border-collapse: collapse;
  655. }
  656. #agenda_list .text {
  657. background-color: #fff;
  658. text-align: left;
  659. padding: 2px 10px;
  660. font-weight: normal;
  661. border: 0px solid #dcdcdc;
  662. border-collapse: collapse;
  663. }
  664. /*text in the cells: display of agenda items (invisible)*/
  665. #agenda_list .data_hidden {
  666. background-color: #eee;
  667. text-align: left;
  668. padding: 2px 10px;
  669. font-weight: bold;
  670. border: 0px solid #dcdcdc;
  671. border-collapse: collapse;
  672. color: #999999;
  673. }
  674. #agenda_list .datanotbold_hidden {
  675. background-color: #eee;
  676. text-align: left;
  677. padding: 2px 10px;
  678. font-weight: normal;
  679. border: 0px solid #dcdcdc;
  680. border-collapse: collapse;
  681. color: #999999;
  682. }
  683. #agenda_list .text_hidden {
  684. background-color: #fff;
  685. text-align: left;
  686. padding: 2px 10px;
  687. font-weight: normal;
  688. border: 0px solid #dcdcdc;
  689. border-collapse: collapse;
  690. color: #999999;
  691. }
  692. /*text in the cells: display of agenda items (highlighted)*/
  693. #agenda_list .datanow {
  694. background-color: #FFCC00;
  695. text-align: left;
  696. padding: 2px 10px;
  697. font-weight: bold;
  698. border: 0px solid #dcdcdc;
  699. border-collapse: collapse;
  700. }
  701. #agenda_list .datanotboldnow {
  702. background-color: #FFCC00;
  703. text-align: left;
  704. padding: 2px 10px;
  705. font-weight: normal;
  706. border: 0px solid #dcdcdc;
  707. border-collapse: collapse;
  708. }
  709. #agenda_list .textnow {
  710. background-color: #fff;
  711. text-align: left;
  712. padding: 2px 10px;
  713. font-weight: normal;
  714. border: 0px solid #dcdcdc;
  715. border-collapse: collapse;
  716. }
  717. .personal_agenda {
  718. color: #008000;
  719. }
  720. .personal_agenda a:link, .personal_agenda a:visited {
  721. color: #008000;
  722. }
  723. a.personal_agenda:link, a.personal_agenda:visited {
  724. color: #008000;
  725. }
  726. .personal_agenda a:hover, .personal_agenda a:hover {
  727. color: #B70297;
  728. }
  729. a.personal_agenda:hover, a.personal_agenda:hover {
  730. color: #B70297;
  731. }
  732. /* Login form */
  733. #formLogin div {
  734. margin-bottom: 3px;
  735. }
  736. #formLogin div input[type=submit] {
  737. width: 109px;
  738. }
  739. /* normal table*/
  740. .normal_table {
  741. margin: 3px;
  742. border-collapse: collapse;
  743. width: 98%;
  744. padding: 5px;
  745. }
  746. /* Data table */
  747. .data_table {
  748. margin: 3px;
  749. border-collapse: collapse;
  750. width: 100%;
  751. padding: 5px;
  752. }
  753. .data_table th {
  754. font-weight: bold;
  755. padding-right: 20px;
  756. border: 1px solid #666;
  757. background-color: #999;
  758. color: #fff;
  759. }
  760. .data_table th a {
  761. color: #fff;
  762. text-decoration:none;
  763. }
  764. .data_table tr.row_odd {
  765. background-color: #fafafa;
  766. }
  767. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  768. background-color: #f0f0f0;
  769. }
  770. .data_table tr.row_even {
  771. background-color: #fff;
  772. }
  773. .data_table td {
  774. padding: 5px;
  775. vertical-align: top;
  776. border-bottom: 1px solid #b0b0b0;
  777. border-right: 1px dotted #e1e1e1;
  778. border-left: 1px dotted #e1e1e1;
  779. }
  780. /* sections in the page */
  781. .sectiontitle {
  782. background-color: #EFEFEF;
  783. border: 1px solid #cccccc;
  784. font-weight: bold;
  785. color: #666666;
  786. list-style-type: none;
  787. margin: 5px;
  788. padding: 5px;
  789. }
  790. .sectioncomment {
  791. color: #000000;
  792. margin: 5px;
  793. padding: 5px;
  794. }
  795. .sectionvalue {
  796. list-style-type: none;
  797. margin: 5px;
  798. padding: 5px;
  799. }
  800. /* invisible styles */
  801. a.invisible {
  802. color: #999999;
  803. }
  804. a.invisible:visited {
  805. color: #999999;
  806. }
  807. a.invisible:active {
  808. color: #999999;
  809. }
  810. a.invisible:hover {
  811. color: #999999;
  812. }
  813. /* Platform Administration */
  814. div.admin_section {
  815. width: 40%;
  816. float: left;
  817. padding: 5px;
  818. margin: 10px 20px;
  819. min-height:210px;
  820. }
  821. div.admin_section h4 {
  822. background-color: #EFEFEF;
  823. border: 1px solid #cccccc;
  824. font-weight: bold;
  825. color: #666666;
  826. list-style-type: none;
  827. margin: 5px;
  828. padding: 5px;
  829. }
  830. /* Report section */
  831. div.report_section {
  832. width: 40%;
  833. float: left;
  834. padding: 5px;
  835. margin: 10px 20px;
  836. }
  837. div.report_section h4 {
  838. background-color: #EFEFEF;
  839. border: 1px solid #cccccc;
  840. font-weight: bold;
  841. color: #666666;
  842. list-style-type: none;
  843. margin: 5px;
  844. padding: 5px;
  845. }
  846. /* course homepage */
  847. .courseadminview, .platformadminview {
  848. position: relative;
  849. width: 80%;
  850. margin: 25px auto 10px;
  851. padding: 10px;
  852. border: 1px solid #ccc;
  853. }
  854. .courseadminview img, .platformadminview img {
  855. display:inline-block;
  856. border: none;
  857. text-decoration: none;
  858. background-color: #fff;
  859. padding-right: 5px;
  860. vertical-align:middle;
  861. }
  862. .viewcaption {
  863. position: relative;
  864. top: -20px;
  865. font-weight: bold;
  866. color: #ccc;
  867. background-color: #fff;
  868. padding: 0 4px;
  869. }
  870. .tool-icon {
  871. margin-bottom: -3px;
  872. }
  873. /* learning path */
  874. table.lp_build {
  875. height:400px;
  876. width:100%;
  877. }
  878. table.lp_build td {
  879. vertical-align:top;
  880. }
  881. table.lp_build td.tree {
  882. border-right:1px solid #999999;
  883. width:240px;
  884. }
  885. table.lp_build td.workspace {
  886. padding: 0px;
  887. padding-left:5px;
  888. width:auto;
  889. }
  890. table.lp_overview {
  891. width:100%;
  892. }
  893. table.lp_overview td {
  894. border-bottom:1px solid #999999;
  895. border-top:1px solid #999999;
  896. height:20px;
  897. padding:3px;
  898. vertical-align:middle;
  899. width:auto;
  900. }
  901. table.lp_overview td.title {
  902. width:200px;
  903. }
  904. table.lp_overview td.actions {
  905. text-align:center;
  906. width:100px;
  907. }
  908. table.lp_overview td.move {
  909. text-align:center;
  910. width:50px;
  911. }
  912. table.lp_overview th {
  913. background:#FFFFFF;
  914. padding-left:3px;
  915. text-align:center;
  916. }
  917. table.lp_overview tr {
  918. background:#F8F8F8;
  919. }
  920. table.lp_overview tr:hover {
  921. background:#E5EDF9;
  922. }
  923. table.lp_overview img {
  924. margin-left:3px;
  925. }
  926. table.lp_prerequisites th {
  927. background:#F8F8F8;
  928. border-bottom:1px solid #999999;
  929. border-top:1px solid #999999;
  930. }
  931. .lp_mediaplayer {
  932. float: right;
  933. padding-top: 3px;
  934. margin-right: 5px;
  935. }
  936. div.lp_manipulate {
  937. background:#F8F8F8;
  938. border-bottom:1px dotted #999999;
  939. margin-bottom:0px;
  940. padding:3px 0 3px 10px;
  941. }
  942. div.lp_manipulate a {
  943. padding-right:10px;
  944. }
  945. div.lp_resource_header {
  946. background:#F0F0F0;
  947. border:1px solid #999999;
  948. font-weight:bold;
  949. padding:10px;
  950. width:350px;
  951. cursor:pointer;
  952. margin-top: -1px;
  953. }
  954. div.lp_resource_elements {
  955. background:#FAFAFA;
  956. border:1px solid #999999;
  957. display:none;
  958. padding:5px 10px;
  959. width:350px;
  960. margin-top: -1px;
  961. }
  962. .learnpath_chapter_form {
  963. width: 300px;
  964. }
  965. .learnpath_item_form {
  966. width: 300px;
  967. }
  968. #learnpath_preview_frame {
  969. margin-top: 5px;
  970. border:1px solid #CCCCCC;
  971. height:490px;
  972. width:95%;
  973. }
  974. /* exercices styles */
  975. .exercice_form {
  976. width: 300px;
  977. }
  978. #validationButton {
  979. text-decoration: none;
  980. margin: 5px;
  981. border:1px solid #999999;
  982. background:#F0F0F0;
  983. padding: 3px;
  984. padding-left:10px;
  985. padding-right:10px;
  986. font-weight:bold;
  987. color:#666;
  988. }
  989. .exercise_scenario_label {
  990. }
  991. .exercise_scenario_element {
  992. }
  993. span.checkbox {
  994. width: 19px;
  995. height: 25px;
  996. padding: 0 5px 0 0;
  997. background: url(images/checkbox.gif) no-repeat;
  998. display: block;
  999. clear: left;
  1000. float: left;
  1001. }
  1002. span.radio {
  1003. width: 19px;
  1004. height: 25px;
  1005. padding: 0 5px 0 0;
  1006. background: url(images/radio.gif) no-repeat;
  1007. display: block;
  1008. clear: left;
  1009. float: left;
  1010. }
  1011. /* forum styles */
  1012. .forum_header {
  1013. background: #f3f3f3;
  1014. font-weight: bold;
  1015. }
  1016. .forum_message_left {
  1017. width: 150px;
  1018. vertical-align: top;
  1019. /*border-bottom: 1px solid #666666;*/
  1020. border-right: 1px solid #aaa;
  1021. background-color: #F7F7F7;
  1022. }
  1023. .forum_message_post_title {
  1024. border-bottom: 1px solid #aaa;
  1025. font-weight: bold;
  1026. background-color: #F7F7F7;
  1027. height: 20px;
  1028. }
  1029. .forum-thread-header {
  1030. color: #000000;
  1031. background-color: #F7F7F7;
  1032. border-left: 1px solid #aaa;
  1033. border-right: 1px solid #aaa;
  1034. border-bottom: 1px solid #aaa;
  1035. border-top: 1px solid #aaa;
  1036. }
  1037. .forum-thread-body {
  1038. color: #000000;
  1039. background-color: #FFFFFF;
  1040. border-left: 1px solid #aaa;
  1041. border-right: 1px solid #aaa;
  1042. border-bottom: 1px solid #aaa;
  1043. border-top: 1px solid #aaa;
  1044. }
  1045. /* Survey styles */
  1046. #survey_title {
  1047. background-color:#dcdcdc;
  1048. color:#000;
  1049. padding:2px;
  1050. }
  1051. #survey_subtitle {
  1052. background-color:#dcdcdc;
  1053. color:#000;
  1054. padding:2px;
  1055. }
  1056. .survey_content {
  1057. background-color:#EFEFEF;
  1058. color:#264269;
  1059. padding:5px;
  1060. border: 1px solid #999;
  1061. }
  1062. .survey_question_wrapper {
  1063. border: 1px solid #999;
  1064. }
  1065. .survey_question {
  1066. /* 264269 4271b5 E5EDF9 */
  1067. background-color:#f0f0f0;
  1068. color:#999;
  1069. padding:5px;/*border: 1px solid #264269;*/
  1070. }
  1071. .survey_question_options {
  1072. /* 264269 4271b5 E5EDF9 */
  1073. background-color:#FFF;
  1074. color:#000;
  1075. padding:5px;/*border: 1px solid #264269;*/
  1076. }
  1077. /* Blog */
  1078. .blog_menu {
  1079. border-bottom: 1px dashed #dddddd;
  1080. border-right: 1px dashed #dddddd;
  1081. border-left: 1px dashed #dddddd;
  1082. padding: 10px;
  1083. }
  1084. .blogpost {
  1085. border: 1px solid #DDDDDD;
  1086. background-color: #ECECEC;
  1087. margin-bottom: 15px;
  1088. padding: 10px;
  1089. }
  1090. .blogpost_title {
  1091. display: block;
  1092. font-weight: bold;
  1093. padding-bottom: 5px;
  1094. }
  1095. .blogpost_date {
  1096. display: block;
  1097. font-weight: bold;
  1098. color: #333333;
  1099. padding-bottom: 10px;
  1100. }
  1101. .blogpost_info {
  1102. display: block;
  1103. color: #333333;
  1104. border-top: 1px solid #dddddd;
  1105. margin-top: 5px;
  1106. }
  1107. .blogpost_comment {
  1108. border-top: 1px dashed #dddddd;
  1109. border-right: 1px dashed #dddddd;
  1110. border-bottom: 1px dashed #dddddd;
  1111. border-left: 1px dashed #dddddd;
  1112. margin-bottom: 10px;
  1113. padding: 10px;
  1114. background-color: white;
  1115. }
  1116. .blogpost_comment_title {
  1117. display: block;
  1118. font-weight: bold;
  1119. color: #1657A9;
  1120. padding-bottom: 5px;
  1121. }
  1122. .blogpost_comment_date {
  1123. display: block;
  1124. font-size: 10px;
  1125. font-weight: bold;
  1126. color: #333333;
  1127. padding-bottom: 10px;
  1128. }
  1129. .blogpost_comment_info {
  1130. font-size: 10px;
  1131. display: block;
  1132. color: #333333;
  1133. border-top: 1px solid #dddddd;
  1134. margin-top: 10px;
  1135. }
  1136. .blogpost {
  1137. border: 1px solid #DDDDDD;
  1138. background-color: #ECECEC;
  1139. margin-bottom: 15px;
  1140. padding: 10px;
  1141. }
  1142. .comments {
  1143. border: 1px solid #dddddd;
  1144. margin-bottom: 10px;
  1145. margin-top: 10px;
  1146. padding: 10px;
  1147. background-color: #F4F4F4;
  1148. }
  1149. /* tabbed menu */
  1150. #tabbed_menu {
  1151. width: 100%;
  1152. height: 20px;
  1153. border-bottom-width: 1px;
  1154. border-bottom-style: solid;
  1155. border-bottom-color: #666666;
  1156. margin-bottom: 20px;
  1157. }
  1158. #tabbed_menu #tabbed_menu_tabs li {
  1159. margin: 0 10;
  1160. padding: 0;
  1161. display: inline;
  1162. list-style-type: none;
  1163. }
  1164. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  1165. float: left;
  1166. background: #f3f3f3;
  1167. font-weight: bold;
  1168. padding: 2px 10px 2px 10px;
  1169. margin-right: 4px;
  1170. border: 1px solid #cccccc;
  1171. border-bottom: 1px solid #666666;
  1172. text-decoration: none;
  1173. color: #666;
  1174. }
  1175. #tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
  1176. border: 1px solid #666666;
  1177. border-bottom: 1px solid #fff;
  1178. background: #fff;
  1179. color: #000;
  1180. }
  1181. #image_preview {
  1182. text-align:center;
  1183. padding-left: 17px;
  1184. }
  1185. .skip {
  1186. display: none;
  1187. }
  1188. /* Glossary tool */
  1189. .glossary-term {
  1190. margin: 1em;
  1191. background-color: #ffe99b;
  1192. padding: 0.5em 0.5em 1.8em 0;
  1193. -moz-border-radius: 0.5em;
  1194. }
  1195. .glossary-term-title {
  1196. margin: 2em 0 1em 0.5em;
  1197. font-weight: bold;
  1198. font-size: 120%;
  1199. }
  1200. .glossary-term-desc {
  1201. margin-left: 1em;
  1202. }
  1203. .glossary-term-action-links {
  1204. float: right;
  1205. }
  1206. .glossary-term-edit-form {
  1207. margin: 1em;
  1208. background-color: #FFE4C4;
  1209. padding: 0.5em 0.5em 2em 0;
  1210. -moz-border-radius: 0.5em;
  1211. }
  1212. .glossary-term-edit-desc {
  1213. font-weight: bold;
  1214. font-size: 120%;
  1215. }
  1216. .glossary-term-edit-title {
  1217. font-weight: bold;
  1218. font-size: 120%;
  1219. }
  1220. .glossary-add-form {
  1221. font-weight: bold;
  1222. font-size: 120%;
  1223. margin: 1em;
  1224. }
  1225. .glossary-orderby-link {
  1226. float:right;
  1227. margin: 1em;
  1228. }
  1229. .glossary-msg-error {
  1230. color: #FF0000;
  1231. display :none;
  1232. font-weight: normal;
  1233. font-size: 80%;
  1234. }
  1235. /*NAVIGATION MENU BAR*/
  1236. .menucaption {
  1237. font-size: 12px;
  1238. font-weight: bold;
  1239. padding-left: 12px;
  1240. }
  1241. .menusection {
  1242. width: auto;
  1243. margin: 24px 6px 0 6px;
  1244. padding-left: 10px;
  1245. border: 1px solid #4171B5;
  1246. }
  1247. .menusectioncaption {
  1248. position: relative;
  1249. top: -9px;
  1250. background-color: #E5EDF9;
  1251. font-size: 12px;
  1252. padding: 0 8px 0 4px;
  1253. }
  1254. .menulist {
  1255. list-style: none;
  1256. margin: 0 0 12px 0;
  1257. padding: 0;
  1258. }
  1259. #centerwrap {
  1260. float: left;
  1261. width: 100%;
  1262. margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
  1263. it's empty otherwise. The difference is made up by putting a
  1264. negative left margin on the left float:
  1265. Note IE/Mac doesn't like this method ~ it wants the 100% so it can
  1266. be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
  1267. */
  1268. }
  1269. #center {
  1270. margin: 0 190px 0 0;
  1271. padding: 10px 0 40px 0;
  1272. min-height: 300px;
  1273. }
  1274. #toolnav {
  1275. float: right;
  1276. width: 180px;
  1277. padding: 0;
  1278. margin: 0;
  1279. margin-left: -5%; /* the difference to make the left colum appear flush left */
  1280. }
  1281. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1282. * html #toolnav {
  1283. margin-right: 0px;
  1284. }
  1285. * html #center {
  1286. height: 1%;
  1287. margin-left: 0;
  1288. }
  1289. /* End hide from IE5/mac */
  1290. /* --- course navigation menu as a definition list --- */
  1291. #swap_menu_link {
  1292. float: left;
  1293. }
  1294. #toolnavbox {
  1295. margin: 0 0 0 10px;
  1296. padding: 0;
  1297. float: left;
  1298. border: 1px solid #4271b5;
  1299. }
  1300. #toolnavbox dl {
  1301. width: 160px;
  1302. margin: 0 auto;
  1303. padding: 0;
  1304. background: transparent;
  1305. font-size: 12px;
  1306. text-align: center;
  1307. }
  1308. #toolnavbox dt {
  1309. margin: 0;
  1310. padding: 0;
  1311. font-weight: bold;
  1312. font-size: 12px;
  1313. text-align: center;
  1314. color: #000;
  1315. border-bottom: 1px solid #fff;
  1316. background: transparent;
  1317. }
  1318. #toolnavbox dd {
  1319. margin: 0;
  1320. padding: 0;
  1321. color: #009;
  1322. text-align: left;
  1323. border-bottom:1px solid #fff;
  1324. background: #E5EDF9;
  1325. }
  1326. #toolnav img {
  1327. float: left;
  1328. width: 25px;
  1329. height: 25px;
  1330. margin: 0 4px 0 0;
  1331. }
  1332. #toolnavlist a, #toolnavlist a:link {
  1333. background: #D3D3D3;
  1334. color: #000;
  1335. padding: 5px 5px 5px 10px;
  1336. margin: 0;
  1337. text-decoration: none;
  1338. display: block;
  1339. }
  1340. #toolnavlist a:hover {
  1341. background: #fff;
  1342. color:#4171b5;
  1343. }
  1344. #toolnavlist a#here {
  1345. background: #fff;
  1346. color:#4171b5;
  1347. }
  1348. /* Notebook */
  1349. .notebook-add-form {
  1350. margin: 1em;
  1351. background-color: #c3d9ff;
  1352. padding: 1em 1em;
  1353. }
  1354. .notebook-add-desc-textarea {
  1355. background-color: #f2f5f8;
  1356. border-color: #ffe99b;
  1357. overflow: hidden;
  1358. }
  1359. .notebook-add-title-text {
  1360. background-color: #f2f5f8;
  1361. border-color: #ffe99b;
  1362. }
  1363. .notebook-edit-desc-textarea {
  1364. background-color: #e0ecff;
  1365. border-color: #ffe99b;
  1366. overflow: hidden;
  1367. }
  1368. .notebook-edit-title-text {
  1369. background-color: #e0ecff;
  1370. border-color: #ffe99b;
  1371. }
  1372. .notebook-msg-error {
  1373. color: #FF0000;
  1374. display :none;
  1375. background-color: #ffe99b;
  1376. width: 40%;
  1377. }
  1378. .notebook-list {
  1379. margin: 1em 1em 0em 1em;
  1380. background-color: #79b;
  1381. padding: 0.3em 0.3em;
  1382. -moz-border-radius: 0.5em;
  1383. }
  1384. .notebook-title-list {
  1385. color : #fff;
  1386. padding: 0.3em 0.3em;
  1387. font-weight: bold;
  1388. font-size: 120%;
  1389. }
  1390. .notebook-desc-list {
  1391. margin: 0em;
  1392. background-color: #f2f5f8;
  1393. padding: 0.5em 0.3em 2em 0.3em;
  1394. border: 1px solid #79b;
  1395. }
  1396. .notebook-term-action-links {
  1397. padding: 0.3em 0.3em;
  1398. width: 50%;
  1399. color : #fff;
  1400. }
  1401. .notebook-orderby-link {
  1402. text-align:right;
  1403. margin-right: 1em;
  1404. }
  1405. .notebook-search-title {
  1406. text-align:right;
  1407. margin: 1em;
  1408. }
  1409. .notebook-date-information {
  1410. color : #fff;
  1411. padding: 0.3em;
  1412. font-size: 120%;
  1413. font-weight: bold;
  1414. }
  1415. /* --- end of course navigation menu section --- */
  1416. /* Gradebook */
  1417. .resource-deleted {
  1418. color:#990000;
  1419. }
  1420. .gradebook-table-header {
  1421. border: 1px solid rgb(153, 153, 153);
  1422. background: rgb(240, 240, 240) none repeat scroll 0% 0%;
  1423. }
  1424. .gradebook-table-body {
  1425. border: 1px solid rgb(153, 153, 153);
  1426. background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  1427. }
  1428. /**********************************************
  1429. * MESSAGE TOOL *
  1430. **********************************************/
  1431. /* styles from the new_message.php file */
  1432. .message_view_table {
  1433. cellspacing:0;
  1434. cellpadding:0;
  1435. background-color:#dbeaf5;
  1436. border=0;
  1437. border-collapse: collapse;
  1438. width: 100%;
  1439. }
  1440. .message_view_table th {
  1441. padding-right: 12px;
  1442. border: 1px solid gray;
  1443. background-color: #f0f0f0;
  1444. }
  1445. .message-select-box {
  1446. float:left;
  1447. display:inline;
  1448. position:absolute;
  1449. margin-top:23px;
  1450. margin-left:20px;
  1451. }
  1452. /* styles from the my.profile.php file */
  1453. .message-content {
  1454. float:right;
  1455. margin:20px auto;
  1456. background:#F5E38E;
  1457. border:2px solid #EBCA4F;
  1458. padding:10px;
  1459. width:200px;
  1460. position:relative;
  1461. }
  1462. .message-content .message-delete {
  1463. position: absolute;
  1464. top: 10px;
  1465. right: 10px;
  1466. cursor: pointer;
  1467. }
  1468. .message-content-internal {
  1469. display:inline;
  1470. margin:20px auto;
  1471. background:#F5E38E;
  1472. border:2px solid #EBCA4F;
  1473. padding:10px;
  1474. width:100px;
  1475. position:relative;
  1476. margin-top:150px;
  1477. margin-right:-100px;
  1478. }
  1479. .message-title {
  1480. color:#ff0000;
  1481. font-size:15px;
  1482. }
  1483. .message-body {
  1484. font-size:11px;
  1485. padding: 0 0 11px;
  1486. color:#333;
  1487. }
  1488. .message-link {
  1489. color:#ff8400;
  1490. }
  1491. .message-view {
  1492. float:right;
  1493. margin:20px auto;
  1494. background:#F5E38E;
  1495. border:2px solid #EBCA4F;
  1496. padding:10px;
  1497. width:100px;
  1498. position:relative;
  1499. margin-top:115px;
  1500. margin-right:-100px;
  1501. }
  1502. .message-content-table {
  1503. background-color:white;
  1504. border:1px solid black;
  1505. position:absolute;
  1506. width:200px;
  1507. height:60px;
  1508. z-index:3;
  1509. visibility:hidden;
  1510. top:85px;
  1511. left:10px;
  1512. margin: 0px;
  1513. padding: 0px;
  1514. }
  1515. .message-top-title {
  1516. float:left;
  1517. margin-top:1px;
  1518. margin-bottom:1px;
  1519. background-color:#F2F2F2;
  1520. width:600px;
  1521. border-bottom:1px solid #CCCCCC;
  1522. margin:left:5px;
  1523. }
  1524. .message-bottom-title {
  1525. height:22px;
  1526. float:left;
  1527. margin-top:1px;
  1528. margin-bottom:1px;
  1529. background-color:#F2F2F2;
  1530. width:600px;
  1531. border-bottom:1px solid #CCCCCC;
  1532. }
  1533. .message-content-body-left {
  1534. float:left;
  1535. width:55%;
  1536. }
  1537. .message-content-body-right {
  1538. float:right;
  1539. text-align:left;
  1540. width:45%;
  1541. }
  1542. .message-body-title {
  1543. float:right;
  1544. margin-top:1px;
  1545. margin-bottom:5px;
  1546. border-bottom:1px solid #CCCCCC;
  1547. border-collapse:collapse;
  1548. }
  1549. .message-image-info {
  1550. float:left;
  1551. margin-top:10px;
  1552. margin-bottom:10px;
  1553. margin-left:10px;
  1554. text-align:left;
  1555. margin-right:20px;
  1556. }
  1557. .message-content-body-right dd {
  1558. color:#333399;
  1559. border-bottom:1px solid #CCCCCC;
  1560. height:20px;
  1561. text-decoration:none;
  1562. outline-style:none;
  1563. background:#ffffff;
  1564. }
  1565. .message-content-body-right:hover {
  1566. }
  1567. /**********************************************
  1568. * EXERCISE TOOL *
  1569. **********************************************/
  1570. .exercice_form {
  1571. width: 300px;
  1572. }
  1573. #validationButton {
  1574. text-decoration: none;
  1575. margin: 5px;
  1576. /*border:1px solid #999999;*/
  1577. /*background:#F0F0F0; */
  1578. padding: 3px;
  1579. padding-left:10px;
  1580. padding-right:10px;
  1581. font-weight:bold;
  1582. color:#666;
  1583. }
  1584. .rounded {
  1585. background:#ccc;
  1586. padding: 3px;
  1587. width: 200px;
  1588. margin-left:10px;
  1589. }
  1590. .rounded_inner {
  1591. background:#FFF;
  1592. padding-top: 10px;
  1593. padding-bottom: 10px;
  1594. }
  1595. .rounded_inner:hover {
  1596. color:#C802A5;
  1597. background:#F0F0F0;
  1598. }
  1599. .exercise_scenario_label {
  1600. }
  1601. .exercise_scenario_element {
  1602. }
  1603. span.checkbox {
  1604. width: 19px;
  1605. height: 25px;
  1606. padding: 0 5px 0 0;
  1607. background: url(images/checkbox.gif) no-repeat;
  1608. display: block;
  1609. clear: left;
  1610. float: left;
  1611. }
  1612. span.radio {
  1613. width: 19px;
  1614. height: 25px;
  1615. padding: 0 5px 0 0;
  1616. background: url(images/radio.gif) no-repeat;
  1617. display: block;
  1618. clear: left;
  1619. float: left;
  1620. }
  1621. #question_title {
  1622. }
  1623. #question_description {
  1624. padding-left:5px;
  1625. padding-top:10px;
  1626. }
  1627. #question_score {
  1628. padding-left:5px;
  1629. padding-top:10px;
  1630. padding-bottom:10px;
  1631. font-weight:bold;
  1632. }
  1633. #question_feedback {
  1634. background-color:#FCF7BA;
  1635. border:1px solid #CCCCCC;
  1636. color:#666666;
  1637. font-size:11px;
  1638. font-weight:bold;
  1639. list-style-type:none;
  1640. margin-top:5px;
  1641. padding:5px;
  1642. }
  1643. #exercise_close_link {
  1644. background: url(images/close.gif) no-repeat;
  1645. padding-left: 20px;
  1646. }
  1647. #exercise_close_link:hover {
  1648. background: url(images/close_highlight.gif) no-repeat;
  1649. padding-left: 20px;
  1650. }
  1651. /* Quizzes tool */
  1652. .quiz_export_link {
  1653. float: right;
  1654. }
  1655. /*SOCIAL TOOL*/
  1656. div.image-social-content {
  1657. float:left;
  1658. border:1px solid #B8C8DC;
  1659. margin:2px;
  1660. padding: 8px 4px 4px 4px;
  1661. background: #ffffff;
  1662. height:125px;
  1663. width:82px;
  1664. z-index:5;
  1665. cursor:pointer;
  1666. position:relative;
  1667. }
  1668. div.image-social-content span {
  1669. overflow:hidden;
  1670. display:block;
  1671. height:92px;
  1672. }
  1673. div.image-social-content img {
  1674. vertical-align:middle;
  1675. }
  1676. div.image-social-content center.friend {
  1677. overflow:hidden;
  1678. height:30px;
  1679. }
  1680. .image-social-content .image-delete {
  1681. position: absolute;
  1682. top: 1px;
  1683. right: 1px;
  1684. cursor: pointer;
  1685. }
  1686. .social-title {
  1687. color:#ffffff;
  1688. background:#4475B0;
  1689. border-bottom:1px dotted #4475B0;
  1690. border-top:1px dotted #4475B0;
  1691. padding:0px;
  1692. margin-bottom: 0px;
  1693. vertical-align:middle;
  1694. font-weight:bolder;
  1695. }
  1696. .social-subtitle {
  1697. background:#FFFFFF;
  1698. border-bottom:1px dotted #999999;
  1699. border-top:1px dotted #999999;
  1700. padding:0px;
  1701. margin-bottom: 0px;
  1702. vertical-align:middle;
  1703. }
  1704. .social-qualify {
  1705. border-bottom:1px solid #ece9d8;
  1706. border-left:1px solid #ece9d8;
  1707. background:#FFFFFF;
  1708. }
  1709. .social-qualify-display {
  1710. border-bottom:1px solid #ece9d8;
  1711. border-left:1px solid #ece9d8;
  1712. background:#FFFF66;
  1713. color:#000033;
  1714. font-weight:bold;
  1715. }
  1716. .social-info {
  1717. background:#B8C8DC;
  1718. color:#4475B0;
  1719. font-size:12px;
  1720. font-weight:bold;
  1721. }
  1722. .social-display-image {
  1723. float:right;
  1724. margin-top:-130px;
  1725. margin-right:5px;
  1726. }
  1727. .social-search-image {
  1728. color:#000033;
  1729. margin-top:2px;
  1730. border-bottom:1px solid #6B6262;
  1731. border-left:1px solid #6B6262;
  1732. border-right:1px solid #6B6262;
  1733. border-top:1px solid #6B6262;
  1734. width:250px;
  1735. }
  1736. .social-subtitle-search {
  1737. background:#ffffff;
  1738. border-top:1px #9DACBF solid;
  1739. border-bottom:1px #9DACBF solid;
  1740. }
  1741. .social-align-box {
  1742. text-align:left;
  1743. float:left;
  1744. }
  1745. .social-content-description {
  1746. background:#ECE9D8;
  1747. }
  1748. .social-content-body {
  1749. background:#ffffff;
  1750. }
  1751. .social-content-table {
  1752. border-top:1px #9DACBF solid;
  1753. border-left:1px #9DACBF solid;
  1754. border-right:1px #9DACBF solid;
  1755. border-bottom:1px #9DACBF solid;
  1756. }
  1757. .social-profile-info {
  1758. width:350px;
  1759. }
  1760. .social-profile-info dt {
  1761. text-align:left;
  1762. clear:left;
  1763. color:#808080;
  1764. float:left;
  1765. width:100px;
  1766. }
  1767. .social-profile-info dd {
  1768. padding:1px 0px 3px 0px;
  1769. float:left;
  1770. margin:0;
  1771. display : block;
  1772. padding-left:10px;
  1773. width:200px;
  1774. }
  1775. /* general layout of the profile page */
  1776. #social-profile-wrapper {
  1777. width: 100%;
  1778. text-align:left;
  1779. margin:0 auto;
  1780. float: left;
  1781. }
  1782. #social-profile-container {
  1783. /* width: 705px; */
  1784. }
  1785. #social-profile-left {
  1786. float:left;
  1787. width:21%;
  1788. }
  1789. #social-profile-content {
  1790. float:right;
  1791. width:46%;
  1792. margin-left: 2px;
  1793. }
  1794. #social-profile-right {
  1795. float:right;
  1796. width:32%;
  1797. margin-left: 2px;
  1798. }
  1799. .left-side {
  1800. min-width: 198px;
  1801. margin: 0px;
  1802. }
  1803. .social-profile-post {
  1804. width: 450px;
  1805. background : #EFEFEF;
  1806. }
  1807. .maincourse {
  1808. width: 100%;
  1809. margin-left:0px;
  1810. }
  1811. .social-profile-rounded {
  1812. background : #eee;
  1813. }
  1814. #social-profile-forum {
  1815. padding-left:0px;
  1816. }
  1817. #social-profile-thread {
  1818. padding-left:20px;
  1819. }
  1820. #social-post {
  1821. padding-left:30px;
  1822. }
  1823. .actions-profile {
  1824. font-size:14px;
  1825. background:#efefef;
  1826. border-bottom:1px dotted #999999;
  1827. border-top:1px dotted #999999;
  1828. /*height:35px;*/
  1829. padding:2px;
  1830. margin-bottom: 2px;
  1831. /*background:url(images/actions.jpg) repeat-x;*/
  1832. vertical-align:middle;
  1833. font-weight:700;
  1834. margin-right:2px;
  1835. }
  1836. .social-content-image {
  1837. margin-top:4px;
  1838. margin-right:5px;
  1839. background:#EFEFEF;
  1840. border-left:1px #999999 dotted;
  1841. border-top:1px #999999 dotted;
  1842. border-right:1px #999999 dotted;
  1843. border-bottom:1px #999999 dotted;
  1844. }
  1845. .social-background-content {
  1846. background:#EFEFEF;
  1847. }
  1848. .social-content-information {
  1849. margin-left:10px;
  1850. margin-right:10px;
  1851. }
  1852. .social-content-training {
  1853. margin-left:10px;
  1854. margin-right:10px;
  1855. }
  1856. .social-friend-container {
  1857. margin-left:4px;
  1858. margin-right:0px;
  1859. }
  1860. .social-content-competences {
  1861. margin-left:5px;
  1862. margin-right:5px;
  1863. }
  1864. .social-content-announcements {
  1865. margin-left:10px;
  1866. margin-right:10px;
  1867. }
  1868. .social-content-agenda {
  1869. margin-left:10px;
  1870. margin-right:10px;
  1871. }
  1872. .social-actions-message {
  1873. white-space: nowrap;
  1874. padding: 2px;
  1875. background-color: #ffffff;
  1876. border: 1px solid #bbb;
  1877. }
  1878. /*****************************************************
  1879. * BUTTONS *
  1880. *****************************************************/
  1881. /* BUTTONS */
  1882. button {
  1883. margin:5px 5px 3px 0px !important;
  1884. background-color: #DFDFDF;
  1885. border-width: 1px;
  1886. /* -moz-border-radius-topright : 5px;
  1887. -moz-border-radius-topleft : 5px;
  1888. -moz-border-radius-bottomright : 5px;
  1889. -moz-border-radius-bottomleft : 5px;
  1890. */
  1891. font-family: bold arial, verdana, helvetica, sans-serif;
  1892. font-size: 100%;
  1893. line-height :130%;
  1894. text-decoration: none;
  1895. color: black;
  1896. cursor: pointer;
  1897. padding:5px 15px 5px 15px;
  1898. vertical-align:middle;
  1899. }
  1900. button:hover {
  1901. background-color:#cbcbcb;
  1902. color:#545454;
  1903. border-style: inset;
  1904. }
  1905. /* button with image */
  1906. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back {
  1907. padding-left:30px;
  1908. background-position:10px;
  1909. background-repeat:no-repeat;
  1910. }
  1911. /* POSITIVE */
  1912. button.save, button.add, button.search, button.refresh, button.upload, button.login, button.plus, button.minus, button.next, button.back {
  1913. background-color:#E5EDF9;
  1914. border-color: #D4E2F6;
  1915. }
  1916. 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 {
  1917. border-color: #D4E2F6;
  1918. background-color:#D4E2F6;
  1919. }
  1920. /* NEGATIVE */
  1921. button.cancel {
  1922. background-color:#F8E8E6;
  1923. border-color: #FFE3DE;
  1924. }
  1925. button.cancel:hover {
  1926. border-color: #F4E1D0;
  1927. background-color: #FFE3DE;
  1928. }
  1929. /*including "save" image*/
  1930. button.save {
  1931. background-image:url(images/button_accept.gif);
  1932. }
  1933. /*including "add" image*/
  1934. button.add {
  1935. background-image:url(images/button_add.gif);
  1936. }
  1937. /*including "cancel" image*/
  1938. button.cancel {
  1939. background-image:url(images/button_delete.gif);
  1940. }
  1941. /*including "search" image*/
  1942. button.search {
  1943. background-image:url(images/button_search.gif);
  1944. }
  1945. /*including "login" image*/
  1946. button.login {
  1947. background-image:url(images/button_login.gif);
  1948. margin:2px 5px 3px 5px !important;
  1949. }
  1950. /*including "plus" image*/
  1951. button.plus {
  1952. background-image:url(images/button_plus.gif);
  1953. }
  1954. /*including "minus" image*/
  1955. button.minus {
  1956. background-image:url(images/button_minus.gif);
  1957. }
  1958. /*including "next" image*/
  1959. button.next {
  1960. background-image:url(images/button_next.gif);
  1961. }
  1962. /*including "back" image*/
  1963. button.back {
  1964. background-image:url(images/button_back.gif);
  1965. }
  1966. /*including "refresh" image*/
  1967. button.refresh {
  1968. background-image:url(images/button_refresh.gif);
  1969. }
  1970. /*including "upload" image*/
  1971. button.upload {
  1972. background-image:url(images/button_upload.gif);
  1973. }
  1974. .icon_image_content {
  1975. width:70px;
  1976. cursor:hand;
  1977. height:8em;
  1978. text-align: center;
  1979. padding-top: 3px;
  1980. padding-right: 5x;
  1981. padding-bottom: 3px;
  1982. padding-left: 5px;
  1983. }
  1984. .question_menu {
  1985. list-style:none;
  1986. float:left;
  1987. }
  1988. .question_menu li {
  1989. float:left;
  1990. margin:0px;
  1991. }
  1992. #exercise_admin {
  1993. margin: 0;
  1994. padding: 0;
  1995. border: 0;
  1996. }
  1997. div#friend-header {
  1998. float:left;
  1999. width:100%;
  2000. line-height: 2.1em;
  2001. }
  2002. div#friend-header a {
  2003. padding-right:6px;
  2004. }
  2005. div#friend-container {
  2006. float:left;
  2007. }
  2008. div.image_friend_network {
  2009. float:left;
  2010. border:1px solid #CCCCCC;
  2011. margin:2px;
  2012. padding:4px;
  2013. background: #EFEFEF;
  2014. height:125px;
  2015. width:82px;
  2016. z-index:5;
  2017. }
  2018. div.image_friend_network span {
  2019. overflow:hidden;
  2020. display:block;
  2021. height:92px;
  2022. margin: 0px 0px;
  2023. }
  2024. div.image_friend_network img {
  2025. vertical-align:middle;
  2026. }
  2027. div.image_friend_network center.friend {
  2028. overflow:hidden;
  2029. height:30px;
  2030. }
  2031. .friend_invitations {
  2032. float:left;
  2033. margin: 0 0 4px 12px;
  2034. }
  2035. /* button >> */
  2036. button.arrowr {
  2037. -moz-border-radius-topleft : 5px;
  2038. -moz-border-radius-bottomright : 5px;
  2039. -moz-border-radius-bottomleft : 5px;
  2040. -moz-border-radius-topright : 5px;
  2041. padding-left:20px;
  2042. padding-top:20px;
  2043. background-position:10px;
  2044. background-color:#E5EDF9;
  2045. border-color: #D4E2F6;
  2046. border-width: 1px;
  2047. display:block;
  2048. font-size: 100%;
  2049. line-height :130%;
  2050. vertical-align:middle;
  2051. }
  2052. /*including "arrowr" image*/
  2053. button.arrowr {
  2054. background-image:url(images/2rightarrow.gif);
  2055. background-repeat:no-repeat;
  2056. }
  2057. /* button << */
  2058. button.arrowl {
  2059. margin:0px;
  2060. -moz-border-radius-topleft : 5px;
  2061. -moz-border-radius-bottomright : 5px;
  2062. -moz-border-radius-bottomleft : 5px;
  2063. -moz-border-radius-topright : 5px;
  2064. padding-left:20px;
  2065. padding-top:20px;
  2066. background-position:10px;
  2067. background-color:#E5EDF9;
  2068. border-color: #D4E2F6;
  2069. border-width: 1px;
  2070. display:block;
  2071. font-size: 100%;
  2072. line-height :130%;
  2073. vertical-align:middle;
  2074. }
  2075. /*including "arrowl" image*/
  2076. button.arrowl {
  2077. background-image:url(images/2leftarrow.gif);
  2078. background-repeat:no-repeat;
  2079. }
  2080. .u-m-answer {
  2081. float:left;
  2082. width:100%;
  2083. }
  2084. .u-m-answer p {
  2085. margin:2px;
  2086. }
  2087. .refresh {
  2088. background-image:url(images/refresh.png);
  2089. background-repeat:no-repeat;
  2090. padding-left:20px;
  2091. padding-bottom:2px;
  2092. }
  2093. .portal {
  2094. background-image:url(images/portal.png);
  2095. background-repeat:no-repeat;
  2096. padding-left:28px;
  2097. padding-bottom:10px;
  2098. padding-top:8px;
  2099. }
  2100. .legal-terms {
  2101. height:150px;
  2102. overflow:auto;
  2103. background-color:#eee;
  2104. width:500px;
  2105. }