default.css 40 KB

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