default.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812
  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. }
  317. [dir=ltr] form div.row div.label, [dir=rtl] form div.row div.formw {
  318. float: left;
  319. text-align: right;
  320. }
  321. [dir=rtl] form div.row div.label, [dir=ltr] form div.row div.formw {
  322. float: right;
  323. text-align: left;
  324. }
  325. form span.form_required {
  326. color: #f00;
  327. }
  328. form span.form_error {
  329. color: #f00;
  330. font-size: x-small;
  331. margin: 2px;
  332. }
  333. /* feedback messages */
  334. .normal-message {
  335. position: relative;
  336. margin: 10px auto;
  337. margin-left: -250px;
  338. width: 500px;
  339. left: 50%;
  340. right: 50%;
  341. border-width: 1px;
  342. border-style: solid;
  343. padding: 5px;
  344. border: 1px solid #dcdcdc;
  345. color: #000;
  346. background-color: #E5EDF9;
  347. min-height: 30px;
  348. }
  349. .warning-message {
  350. position: relative;
  351. margin: 10px auto;
  352. margin-left: -250px;
  353. width: 500px;
  354. left: 50%;
  355. right: 50%;
  356. border-width: 1px;
  357. border-style: solid;
  358. padding: 5px;
  359. border: 1px solid #FFB30F;
  360. color: #000;
  361. background-color: #FFEFA7;
  362. min-height: 30px;
  363. }
  364. .confirmation-message {
  365. position: relative;
  366. margin: 10px auto;
  367. margin-left: -250px;
  368. width: 500px;
  369. left: 50%;
  370. right: 50%;
  371. border-width: 1px;
  372. border-style: solid;
  373. padding: 5px;
  374. border: 1px solid #1F8323;
  375. color: #000;
  376. background-color: #CAF0C7;
  377. min-height: 30px;
  378. }
  379. .error-message {
  380. position: relative;
  381. margin: 10px auto;
  382. margin-left: -250px;
  383. width: 500px;
  384. left: 50%;
  385. right: 50%;
  386. border-width: 1px;
  387. border-style: solid;
  388. padding: 5px;
  389. border: 1px solid #FF0000;
  390. color: #000;
  391. background-color: #FFD1D1;
  392. min-height: 30px;
  393. }
  394. /* other styles */
  395. .clear {
  396. clear: both;
  397. line-height: 0px;
  398. height: 0;
  399. }
  400. /* actions */
  401. .actions_lp {
  402. background:#F8F8F8;
  403. /*border-bottom:1px solid #999999; */
  404. /*border-top:1px solid #999999; */
  405. height:29px;
  406. padding-left: -17px;
  407. margin-bottom: 1px;
  408. background:url(images/actions.jpg) repeat-x;
  409. vertical-align:middle;
  410. width: 90%;
  411. margin-left:17px;
  412. }
  413. .actions_lp img {
  414. vertical-align:middle;
  415. }
  416. .actions_lp a {
  417. margin-right: 10px;
  418. vertical-align:middle;
  419. }
  420. .actions_lp span {
  421. margin-right: 10px;
  422. vertical-align:middle;
  423. }
  424. .actions_lp form {
  425. margin-right: 10px;
  426. vertical-align:middle;
  427. }
  428. .actions {
  429. background:#efefef;
  430. border-bottom:1px dotted #999999;
  431. border-top:1px dotted #999999;
  432. /*height:35px;*/
  433. padding:2px;
  434. margin-bottom: 5px;
  435. /*background:url(images/actions.jpg) repeat-x;*/
  436. vertical-align:middle;
  437. }
  438. .actions img {
  439. /*display:inline-block;*/
  440. border: none;
  441. text-decoration: none;
  442. background-color: #efefef;
  443. padding-right: 5px;
  444. vertical-align:middle;
  445. }
  446. .actions a {
  447. display:inline-block;
  448. margin-right: 10px;
  449. vertical-align:middle;
  450. }
  451. .actions span {
  452. margin-right: 10px;
  453. vertical-align:middle;
  454. }
  455. .actions form {
  456. margin-right: 10px;
  457. vertical-align:middle;
  458. }
  459. /* big actions */
  460. .actionsbig {
  461. background:#F8F8F8;
  462. border-bottom:1px solid #999999;
  463. border-top:1px solid #999999;
  464. background-color:#efefef;
  465. height:100%;
  466. padding:2px;
  467. margin-bottom: 5px;
  468. vertical-align:middle;
  469. float:left;
  470. width:100%;
  471. }
  472. .actionsbig a {
  473. float:left;
  474. padding-left:12px;
  475. padding-right:12px;
  476. text-align:center;
  477. }
  478. .actions img {
  479. vertical-align:middle;
  480. }
  481. .actions a {
  482. margin-right: 10px;
  483. vertical-align:middle;
  484. }
  485. /* styles for the profile page */
  486. .profile_image {
  487. float: right;
  488. margin-right: 20px;
  489. }
  490. .profile_form {
  491. float: left;
  492. width: 75%;
  493. }
  494. /* course introduction */
  495. #courseintrocenter {
  496. position: relative;
  497. width: 80%;
  498. margin: 25px auto 10px;
  499. }
  500. #courseintro_iconscenter {
  501. position: relative;
  502. width: 80%;
  503. margin: 0px auto 10px;
  504. }
  505. #courseintroleft {
  506. position: relative;
  507. width: 80%;
  508. margin-bottom: 5px;
  509. }
  510. #courseintro_iconsleft {
  511. position: relative;
  512. width: 80%;
  513. }
  514. /* styles for the agenda */
  515. #agenda {
  516. width: 100%;
  517. margin: 0 auto;
  518. border: 1px solid #CCCCCC;
  519. border-collapse: collapse;
  520. }
  521. /* The cells with the name of the days of the weeks (mon->sun)*/
  522. .weekdays {
  523. background-color: #dcdcdc;
  524. text-align: center;
  525. font-weight: bold;
  526. border: 1px solid #CCCCCC;
  527. border-collapse: collapse;
  528. }
  529. /* The cells for the days (1->31) */
  530. .days_week {
  531. height: 40px;
  532. width: 12%;
  533. border: 1px solid #CCCCCC;
  534. border-collapse: collapse;
  535. background-color: #f9f9f9;
  536. }
  537. .days_weekend {
  538. height: 40px;
  539. width: 12%;
  540. border: 1px solid #CCCCCC;
  541. border-collapse: collapse;
  542. background-color: #eaeaea;
  543. }
  544. .days_today {
  545. height: 40px;
  546. width: 12%;
  547. border: 1px solid #CCCCCC;
  548. border-collapse: collapse;
  549. background-color: #FFCA8D;
  550. color: #CC3300;
  551. font-weight: bold;
  552. }
  553. .agenda_month_divider {
  554. background-color: #666;
  555. color: #fff;
  556. text-align: center;
  557. }
  558. /*The caption of the calendar (displays the month and the << and >> links*/
  559. #agenda_list .title {
  560. background-color: #680157;
  561. color: #fff;
  562. text-align: left;
  563. padding: 2px 10px;
  564. text-align: center;
  565. border: 1px solid #bbb;
  566. }
  567. #agenda_list .title a:link, #agenda_list #title a:visited {
  568. color: #fff;
  569. padding: 2px 10px;
  570. text-align: center;
  571. }
  572. #agenda_list .title a:hover {
  573. color: #B70297;
  574. padding: 2px 10px;
  575. text-align: center;
  576. }
  577. /* text in the cells: display of agenda items (visible)*/
  578. #agenda_list .data {
  579. background-color: #eee;
  580. text-align: left;
  581. padding: 2px 10px;
  582. font-weight: bold;
  583. border: 0px solid #dcdcdc;
  584. border-collapse: collapse;
  585. }
  586. #agenda_list .datanotbold {
  587. background-color: #eee;
  588. text-align: left;
  589. padding: 2px 10px;
  590. font-weight: normal;
  591. border: 0px solid #dcdcdc;
  592. border-collapse: collapse;
  593. }
  594. #agenda_list .text {
  595. background-color: #fff;
  596. text-align: left;
  597. padding: 2px 10px;
  598. font-weight: normal;
  599. border: 0px solid #dcdcdc;
  600. border-collapse: collapse;
  601. }
  602. /*text in the cells: display of agenda items (invisible)*/
  603. #agenda_list .data_hidden {
  604. background-color: #eee;
  605. text-align: left;
  606. padding: 2px 10px;
  607. font-weight: bold;
  608. border: 0px solid #dcdcdc;
  609. border-collapse: collapse;
  610. color: #999999;
  611. }
  612. #agenda_list .datanotbold_hidden {
  613. background-color: #eee;
  614. text-align: left;
  615. padding: 2px 10px;
  616. font-weight: normal;
  617. border: 0px solid #dcdcdc;
  618. border-collapse: collapse;
  619. color: #999999;
  620. }
  621. #agenda_list .text_hidden {
  622. background-color: #fff;
  623. text-align: left;
  624. padding: 2px 10px;
  625. font-weight: normal;
  626. border: 0px solid #dcdcdc;
  627. border-collapse: collapse;
  628. color: #999999;
  629. }
  630. /*text in the cells: display of agenda items (highlighted)*/
  631. #agenda_list .datanow {
  632. background-color: #FFCC00;
  633. text-align: left;
  634. padding: 2px 10px;
  635. font-weight: bold;
  636. border: 0px solid #dcdcdc;
  637. border-collapse: collapse;
  638. }
  639. #agenda_list .datanotboldnow {
  640. background-color: #FFCC00;
  641. text-align: left;
  642. padding: 2px 10px;
  643. font-weight: normal;
  644. border: 0px solid #dcdcdc;
  645. border-collapse: collapse;
  646. }
  647. #agenda_list .textnow {
  648. background-color: #fff;
  649. text-align: left;
  650. padding: 2px 10px;
  651. font-weight: normal;
  652. border: 0px solid #dcdcdc;
  653. border-collapse: collapse;
  654. }
  655. .personal_agenda {
  656. color: #008000;
  657. }
  658. .personal_agenda a:link, .personal_agenda a:visited {
  659. color: #008000;
  660. }
  661. a.personal_agenda:link, a.personal_agenda:visited {
  662. color: #008000;
  663. }
  664. .personal_agenda a:hover, .personal_agenda a:hover {
  665. color: #B70297;
  666. }
  667. a.personal_agenda:hover, a.personal_agenda:hover {
  668. color: #B70297;
  669. }
  670. /* Login form */
  671. #formLogin div {
  672. margin-bottom: 3px;
  673. }
  674. #formLogin div input[type=submit] {
  675. width: 109px;
  676. }
  677. /* normal table*/
  678. .normal_table {
  679. margin: 3px;
  680. border-collapse: collapse;
  681. width: 98%;
  682. padding: 5px;
  683. }
  684. /* Data table */
  685. .data_table {
  686. margin: 3px;
  687. border-collapse: collapse;
  688. width: 100%;
  689. padding: 5px;
  690. }
  691. .data_table th {
  692. font-weight: bold;
  693. padding-right: 20px;
  694. border: 1px solid #666;
  695. background-color: #999;
  696. color: #fff;
  697. }
  698. .data_table th a {
  699. color: #fff;
  700. text-decoration:none;
  701. }
  702. .data_table tr.row_odd {
  703. background-color: #fafafa;
  704. }
  705. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  706. background-color: #f0f0f0;
  707. }
  708. .data_table tr.row_even {
  709. background-color: #fff;
  710. }
  711. .data_table td {
  712. padding: 5px;
  713. vertical-align: top;
  714. border-bottom: 1px solid #b0b0b0;
  715. border-right: 1px dotted #e1e1e1;
  716. border-left: 1px dotted #e1e1e1;
  717. }
  718. /* sections in the page */
  719. .sectiontitle {
  720. background-color: #EFEFEF;
  721. border: 1px solid #cccccc;
  722. font-weight: bold;
  723. color: #666666;
  724. list-style-type: none;
  725. margin: 5px;
  726. padding: 5px;
  727. }
  728. .sectioncomment {
  729. color: #000000;
  730. margin: 5px;
  731. padding: 5px;
  732. }
  733. .sectionvalue {
  734. list-style-type: none;
  735. margin: 5px;
  736. padding: 5px;
  737. }
  738. /* invisible styles */
  739. a.invisible {
  740. color: #999999;
  741. }
  742. a.invisible:visited {
  743. color: #999999;
  744. }
  745. a.invisible:active {
  746. color: #999999;
  747. }
  748. a.invisible:hover {
  749. color: #999999;
  750. }
  751. /* Platform Administration */
  752. div.admin_section {
  753. width: 40%;
  754. float: left;
  755. padding: 5px;
  756. margin: 10px 20px;
  757. }
  758. div.admin_section h4 {
  759. background-color: #EFEFEF;
  760. border: 1px solid #cccccc;
  761. font-weight: bold;
  762. color: #666666;
  763. list-style-type: none;
  764. margin: 5px;
  765. padding: 5px;
  766. }
  767. /* course homepage */
  768. .courseadminview, .platformadminview {
  769. position: relative;
  770. width: 80%;
  771. margin: 25px auto 10px;
  772. padding: 10px;
  773. border: 1px solid #ccc;
  774. }
  775. .courseadminview img, .platformadminview img {
  776. display:inline-block;
  777. border: none;
  778. text-decoration: none;
  779. background-color: #fff;
  780. padding-right: 5px;
  781. vertical-align:middle;
  782. }
  783. .viewcaption {
  784. position: relative;
  785. top: -20px;
  786. font-weight: bold;
  787. color: #ccc;
  788. background-color: #fff;
  789. padding: 0 4px;
  790. }
  791. /* learning path */
  792. table.lp_build {
  793. height:400px;
  794. width:100%;
  795. }
  796. table.lp_build td {
  797. vertical-align:top;
  798. }
  799. table.lp_build td.tree {
  800. border-right:1px solid #999999;
  801. width:240px;
  802. }
  803. table.lp_build td.workspace {
  804. padding: 0px;
  805. padding-left:5px;
  806. width:auto;
  807. }
  808. table.lp_overview {
  809. width:100%;
  810. }
  811. table.lp_overview td {
  812. border-bottom:1px solid #999999;
  813. border-top:1px solid #999999;
  814. height:20px;
  815. padding:3px;
  816. vertical-align:middle;
  817. width:auto;
  818. }
  819. table.lp_overview td.title {
  820. width:200px;
  821. }
  822. table.lp_overview td.actions {
  823. text-align:center;
  824. width:100px;
  825. }
  826. table.lp_overview td.move {
  827. text-align:center;
  828. width:50px;
  829. }
  830. table.lp_overview th {
  831. background:#FFFFFF;
  832. padding-left:3px;
  833. text-align:center;
  834. }
  835. table.lp_overview tr {
  836. background:#F8F8F8;
  837. }
  838. table.lp_overview tr:hover {
  839. background:#E5EDF9;
  840. }
  841. table.lp_overview img {
  842. margin-left:3px;
  843. }
  844. table.lp_prerequisites th {
  845. background:#F8F8F8;
  846. border-bottom:1px solid #999999;
  847. border-top:1px solid #999999;
  848. }
  849. .lp_mediaplayer {
  850. float: right;
  851. padding-top: 3px;
  852. margin-right: 5px;
  853. }
  854. div.lp_manipulate {
  855. background:#F8F8F8;
  856. border-bottom:1px dotted #999999;
  857. margin-bottom:0px;
  858. padding:3px 0 3px 10px;
  859. }
  860. div.lp_manipulate a {
  861. padding-right:10px;
  862. }
  863. div.lp_resource_header {
  864. background:#F0F0F0;
  865. border:1px solid #999999;
  866. font-weight:bold;
  867. padding:10px;
  868. width:350px;
  869. cursor:pointer;
  870. margin-top: -1px;
  871. }
  872. div.lp_resource_elements {
  873. background:#FAFAFA;
  874. border:1px solid #999999;
  875. display:none;
  876. padding:5px 10px;
  877. width:350px;
  878. margin-top: -1px;
  879. }
  880. .learnpath_chapter_form {
  881. width: 300px;
  882. }
  883. .learnpath_item_form {
  884. width: 300px;
  885. }
  886. #learnpath_preview_frame {
  887. margin-top: 5px;
  888. border:1px solid #CCCCCC;
  889. height:490px;
  890. width:95%;
  891. }
  892. /* exercices styles */
  893. .exercice_form {
  894. width: 300px;
  895. }
  896. #validationButton {
  897. text-decoration: none;
  898. margin: 5px;
  899. border:1px solid #999999;
  900. background:#F0F0F0;
  901. padding: 3px;
  902. padding-left:10px;
  903. padding-right:10px;
  904. font-weight:bold;
  905. color:#666;
  906. }
  907. .exercise_scenario_label {
  908. }
  909. .exercise_scenario_element {
  910. }
  911. span.checkbox {
  912. width: 19px;
  913. height: 25px;
  914. padding: 0 5px 0 0;
  915. background: url(images/checkbox.gif) no-repeat;
  916. display: block;
  917. clear: left;
  918. float: left;
  919. }
  920. span.radio {
  921. width: 19px;
  922. height: 25px;
  923. padding: 0 5px 0 0;
  924. background: url(images/radio.gif) no-repeat;
  925. display: block;
  926. clear: left;
  927. float: left;
  928. }
  929. /* forum styles */
  930. .forum_header {
  931. background: #f3f3f3;
  932. font-weight: bold;
  933. }
  934. .forum_message_left {
  935. width: 150px;
  936. vertical-align: top;
  937. /*border-bottom: 1px solid #666666;*/
  938. border-right: 1px solid #aaa;
  939. background-color: #F7F7F7;
  940. }
  941. .forum_message_post_title {
  942. border-bottom: 1px solid #aaa;
  943. font-weight: bold;
  944. background-color: #F7F7F7;
  945. height: 20px;
  946. }
  947. .forum-thread-header{
  948. color: #000000;
  949. background-color: #F7F7F7;
  950. border-left: 1px solid #aaa;
  951. border-right: 1px solid #aaa;
  952. border-bottom: 1px solid #aaa;
  953. border-top: 1px solid #aaa;
  954. }
  955. .forum-thread-body{
  956. color: #000000;
  957. background-color: #FFFFFF;
  958. border-left: 1px solid #aaa;
  959. border-right: 1px solid #aaa;
  960. border-bottom: 1px solid #aaa;
  961. border-top: 1px solid #aaa;
  962. }
  963. /* Survey styles */
  964. #survey_title {
  965. background-color:#dcdcdc;
  966. color:#000;
  967. padding:2px;
  968. }
  969. #survey_subtitle {
  970. background-color:#dcdcdc;
  971. color:#000;
  972. padding:2px;
  973. }
  974. .survey_content {
  975. background-color:#EFEFEF;
  976. color:#264269;
  977. padding:5px;
  978. border: 1px solid #999;
  979. }
  980. .survey_question_wrapper {
  981. border: 1px solid #999;
  982. }
  983. .survey_question {
  984. /* 264269 4271b5 E5EDF9 */
  985. background-color:#f0f0f0;
  986. color:#999;
  987. padding:5px;/*border: 1px solid #264269;*/
  988. }
  989. .survey_question_options {
  990. /* 264269 4271b5 E5EDF9 */
  991. background-color:#FFF;
  992. color:#000;
  993. padding:5px;/*border: 1px solid #264269;*/
  994. }
  995. /* Blog */
  996. .blog_menu {
  997. border-bottom: 1px dashed #dddddd;
  998. border-right: 1px dashed #dddddd;
  999. border-left: 1px dashed #dddddd;
  1000. padding: 10px;
  1001. }
  1002. .blogpost {
  1003. border: 1px solid #DDDDDD;
  1004. background-color: #ECECEC;
  1005. margin-bottom: 15px;
  1006. padding: 10px;
  1007. }
  1008. .blogpost_title {
  1009. display: block;
  1010. font-weight: bold;
  1011. padding-bottom: 5px;
  1012. }
  1013. .blogpost_date {
  1014. display: block;
  1015. font-weight: bold;
  1016. color: #333333;
  1017. padding-bottom: 10px;
  1018. }
  1019. .blogpost_info {
  1020. display: block;
  1021. color: #333333;
  1022. border-top: 1px solid #dddddd;
  1023. margin-top: 5px;
  1024. }
  1025. .blogpost_comment {
  1026. border-top: 1px dashed #dddddd;
  1027. border-right: 1px dashed #dddddd;
  1028. border-bottom: 1px dashed #dddddd;
  1029. border-left: 1px dashed #dddddd;
  1030. margin-bottom: 10px;
  1031. padding: 10px;
  1032. background-color: white;
  1033. }
  1034. .blogpost_comment_title {
  1035. display: block;
  1036. font-weight: bold;
  1037. color: #1657A9;
  1038. padding-bottom: 5px;
  1039. }
  1040. .blogpost_comment_date {
  1041. display: block;
  1042. font-size: 10px;
  1043. font-weight: bold;
  1044. color: #333333;
  1045. padding-bottom: 10px;
  1046. }
  1047. .blogpost_comment_info {
  1048. font-size: 10px;
  1049. display: block;
  1050. color: #333333;
  1051. border-top: 1px solid #dddddd;
  1052. margin-top: 10px;
  1053. }
  1054. .blogpost {
  1055. border: 1px solid #DDDDDD;
  1056. background-color: #ECECEC;
  1057. margin-bottom: 15px;
  1058. padding: 10px;
  1059. }
  1060. .comments {
  1061. border: 1px solid #dddddd;
  1062. margin-bottom: 10px;
  1063. margin-top: 10px;
  1064. padding: 10px;
  1065. background-color: #F4F4F4;
  1066. }
  1067. /* tabbed menu */
  1068. #tabbed_menu {
  1069. width: 100%;
  1070. height: 20px;
  1071. border-bottom-width: 1px;
  1072. border-bottom-style: solid;
  1073. border-bottom-color: #666666;
  1074. margin-bottom: 20px;
  1075. }
  1076. #tabbed_menu #tabbed_menu_tabs li {
  1077. margin: 0 10;
  1078. padding: 0;
  1079. display: inline;
  1080. list-style-type: none;
  1081. }
  1082. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  1083. float: left;
  1084. background: #f3f3f3;
  1085. font-weight: bold;
  1086. padding: 2px 10px 2px 10px;
  1087. margin-right: 4px;
  1088. border: 1px solid #cccccc;
  1089. border-bottom: 1px solid #666666;
  1090. text-decoration: none;
  1091. color: #666;
  1092. }
  1093. #tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
  1094. border: 1px solid #666666;
  1095. border-bottom: 1px solid #fff;
  1096. background: #fff;
  1097. color: #000;
  1098. }
  1099. #image_preview {
  1100. text-align:center;
  1101. padding-left: 17px;
  1102. }
  1103. .skip {
  1104. display: none;
  1105. }
  1106. /* Glossary tool */
  1107. .glossary-term {
  1108. margin: 1em;
  1109. background-color: #ffe99b;
  1110. padding: 0.5em 0.5em 1.8em 0;
  1111. -moz-border-radius: 0.5em;
  1112. }
  1113. .glossary-term-title {
  1114. margin: 2em 0 1em 0.5em;
  1115. font-weight: bold;
  1116. font-size: 120%;
  1117. }
  1118. .glossary-term-desc {
  1119. margin-left: 1em;
  1120. }
  1121. .glossary-term-action-links {
  1122. float: right;
  1123. }
  1124. .glossary-term-edit-form {
  1125. margin: 1em;
  1126. background-color: #FFE4C4;
  1127. padding: 0.5em 0.5em 2em 0;
  1128. -moz-border-radius: 0.5em;
  1129. }
  1130. .glossary-term-edit-desc {
  1131. font-weight: bold;
  1132. font-size: 120%;
  1133. }
  1134. .glossary-term-edit-title {
  1135. font-weight: bold;
  1136. font-size: 120%;
  1137. }
  1138. .glossary-add-form {
  1139. font-weight: bold;
  1140. font-size: 120%;
  1141. margin: 1em;
  1142. }
  1143. .glossary-orderby-link {
  1144. float:right;
  1145. margin: 1em;
  1146. }
  1147. .glossary-msg-error {
  1148. color: #FF0000;
  1149. display :none;
  1150. font-weight: normal;
  1151. font-size: 80%;
  1152. }
  1153. /*NAVIGATION MENU BAR*/
  1154. .menucaption {
  1155. font-size: 12px;
  1156. font-weight: bold;
  1157. padding-left: 12px;
  1158. }
  1159. .menusection {
  1160. width: auto;
  1161. margin: 24px 6px 0 6px;
  1162. padding-left: 10px;
  1163. border: 1px solid #4171B5;
  1164. }
  1165. .menusectioncaption {
  1166. position: relative;
  1167. top: -9px;
  1168. background-color: #E5EDF9;
  1169. font-size: 12px;
  1170. padding: 0 8px 0 4px;
  1171. }
  1172. .menulist {
  1173. list-style: none;
  1174. margin: 0 0 12px 0;
  1175. padding: 0;
  1176. }
  1177. #centerwrap {
  1178. float: left;
  1179. width: 100%;
  1180. margin-right: -95%;
  1181. /* this needs to be less than 100% for Moz/Mac which thinks
  1182. it's empty otherwise. The difference is made up by putting a
  1183. negative left margin on the left float:
  1184. Note IE/Mac doesn't like this method ~ it wants the 100% so it can
  1185. be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
  1186. */
  1187. }
  1188. #center { margin: 0 190px 0 0; padding: 10px 0 40px 0;
  1189. min-height: 300px; }
  1190. #toolnav { float: right; width: 180px; padding: 0; margin: 0;
  1191. margin-left: -5%; /* the difference to make the left colum appear flush left */
  1192. }
  1193. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1194. * html #toolnav { margin-right: 0px;}
  1195. * html #center { height: 1%; margin-left: 0; }
  1196. /* End hide from IE5/mac */
  1197. /* --- course navigation menu as a definition list --- */
  1198. #swap_menu_link {
  1199. float: left;
  1200. }
  1201. #toolnavbox {
  1202. margin: 0 0 0 10px;
  1203. padding: 0;
  1204. float: left;
  1205. border: 1px solid #4271b5;
  1206. }
  1207. #toolnavbox dl {
  1208. width: 160px;
  1209. margin: 0 auto;
  1210. padding: 0;
  1211. background: transparent;
  1212. font-size: 12px;
  1213. text-align: center;
  1214. }
  1215. #toolnavbox dt {
  1216. margin: 0;
  1217. padding: 0;
  1218. font-weight: bold;
  1219. font-size: 12px;
  1220. text-align: center;
  1221. color: #000;
  1222. border-bottom: 1px solid #fff;
  1223. background: transparent;
  1224. }
  1225. #toolnavbox dd {
  1226. margin: 0;
  1227. padding: 0;
  1228. color: #009;
  1229. text-align: left;
  1230. border-bottom:1px solid #fff;
  1231. background: #E5EDF9;
  1232. }
  1233. #toolnav img {
  1234. float: left;
  1235. width: 25px;
  1236. height: 25px;
  1237. margin: 0 4px 0 0;
  1238. }
  1239. #toolnavlist a, #toolnavlist a:link {
  1240. background: #D3D3D3;
  1241. color: #000;
  1242. padding: 5px 5px 5px 10px;
  1243. margin: 0;
  1244. text-decoration: none;
  1245. display: block;
  1246. }
  1247. #toolnavlist a:hover {
  1248. background: #fff;
  1249. color:#4171b5;
  1250. }
  1251. #toolnavlist a#here {
  1252. background: #fff;
  1253. color:#4171b5;
  1254. }
  1255. /* Notebook */
  1256. .notebook-add-form {
  1257. margin: 1em;
  1258. background-color: #c3d9ff;
  1259. padding: 1em 1em;
  1260. }
  1261. .notebook-add-desc-textarea {
  1262. background-color: #f2f5f8;
  1263. border-color: #ffe99b;
  1264. overflow: hidden;
  1265. }
  1266. .notebook-add-title-text {
  1267. background-color: #f2f5f8;
  1268. border-color: #ffe99b;
  1269. }
  1270. .notebook-edit-desc-textarea {
  1271. background-color: #e0ecff;
  1272. border-color: #ffe99b;
  1273. overflow: hidden;
  1274. }
  1275. .notebook-edit-title-text {
  1276. background-color: #e0ecff;
  1277. border-color: #ffe99b;
  1278. }
  1279. .notebook-msg-error {
  1280. color: #FF0000;
  1281. display :none;
  1282. background-color: #ffe99b;
  1283. width: 40%;
  1284. }
  1285. .notebook-list{
  1286. margin: 1em 1em 0em 1em;
  1287. background-color: #79b;
  1288. padding: 0.3em 0.3em;
  1289. -moz-border-radius: 0.5em;
  1290. }
  1291. .notebook-title-list{
  1292. color : #fff;
  1293. padding: 0.3em 0.3em;
  1294. font-weight: bold;
  1295. font-size: 120%;
  1296. }
  1297. .notebook-desc-list {
  1298. margin: 0em;
  1299. background-color: #f2f5f8;
  1300. padding: 0.5em 0.3em 2em 0.3em;
  1301. border: 1px solid #79b;
  1302. }
  1303. .notebook-term-action-links {
  1304. padding: 0.3em 0.3em;
  1305. width: 50%;
  1306. color : #fff;
  1307. }
  1308. .notebook-orderby-link {
  1309. text-align:right;
  1310. margin-right: 1em;
  1311. }
  1312. .notebook-search-title {
  1313. text-align:right;
  1314. margin: 1em;
  1315. }
  1316. .notebook-date-information {
  1317. color : #fff;
  1318. padding: 0.3em;
  1319. font-size: 120%;
  1320. font-weight: bold;
  1321. }
  1322. /* --- end of course navigation menu section --- */
  1323. /* Gradebook */
  1324. .resource-deleted {
  1325. color:#990000;
  1326. }
  1327. .gradebook-table-header {
  1328. border: 1px solid rgb(153, 153, 153);
  1329. background: rgb(240, 240, 240) none repeat scroll 0% 0%;
  1330. }
  1331. .gradebook-table-body {
  1332. border: 1px solid rgb(153, 153, 153);
  1333. background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  1334. }
  1335. /**********************************************
  1336. * MESSAGE TOOL *
  1337. **********************************************/
  1338. /* styles from the new_message.php file */
  1339. .message_view_table{
  1340. cellspacing:0;
  1341. cellpadding:0;
  1342. background-color:#dbeaf5;
  1343. border=0;
  1344. border-collapse: collapse;
  1345. width: 100%;
  1346. }
  1347. .message_view_table th{
  1348. padding-right: 12px;
  1349. border: 1px solid gray;
  1350. background-color: #f0f0f0;
  1351. }
  1352. .message-select-box{
  1353. float:left;
  1354. width:350px;
  1355. display:inline;
  1356. position:absolute;
  1357. margin-top:20px;
  1358. margin-left:32px;
  1359. }
  1360. /* styles from the my.profile.php file */
  1361. .message-content {
  1362. float:right;
  1363. margin:20px auto;
  1364. background:#F5E38E;
  1365. border:2px solid #EBCA4F;
  1366. padding:10px;
  1367. width:200px;
  1368. position:relative;
  1369. }
  1370. .message-content .message-delete {
  1371. position: absolute;
  1372. top: 10px;
  1373. right: 10px;
  1374. cursor: pointer;
  1375. }
  1376. .message-content-internal{
  1377. display:inline;
  1378. margin:20px auto;
  1379. background:#F5E38E;
  1380. border:2px solid #EBCA4F;
  1381. padding:10px;
  1382. width:100px;
  1383. position:relative;
  1384. margin-top:150px;
  1385. margin-right:-100px;
  1386. }
  1387. .message-title { color:#ff0000; font-size:15px; }
  1388. .message-body { font-size:11px; padding: 0 0 11px; color:#333; }
  1389. .message-link { color:#ff8400; }
  1390. .message-view {
  1391. float:right;
  1392. margin:20px auto;
  1393. background:#F5E38E;
  1394. border:2px solid #EBCA4F;
  1395. padding:10px;
  1396. width:100px;
  1397. position:relative;
  1398. margin-top:115px;
  1399. margin-right:-100px;
  1400. }
  1401. .message-content-table {
  1402. background-color:white;
  1403. border:1px solid black;
  1404. position:absolute;
  1405. width:200px;
  1406. height:60px;
  1407. z-index:3;
  1408. visibility:hidden;
  1409. top:85px;
  1410. left:10px;
  1411. margin: 0px;
  1412. padding: 0px;
  1413. }
  1414. .message-top-title {
  1415. float:left;
  1416. margin-top:1px;
  1417. margin-bottom:1px;
  1418. background-color:#F2F2F2;
  1419. width:600px;
  1420. border-bottom:1px solid #CCCCCC;
  1421. margin:left:5px;
  1422. }
  1423. .message-bottom-title {
  1424. height:22px;
  1425. float:left;
  1426. margin-top:1px;
  1427. margin-bottom:1px;
  1428. background-color:#F2F2F2;
  1429. width:600px;
  1430. border-bottom:1px solid #CCCCCC;
  1431. }
  1432. .message-content-body-left{
  1433. float:left;
  1434. width:55%;
  1435. }
  1436. .message-conten-body-right {
  1437. float:right;
  1438. text-align:left;
  1439. width:45%;
  1440. }
  1441. .message-body-title{
  1442. float:right;
  1443. margin-top:1px;
  1444. margin-bottom:5px;
  1445. border-bottom:1px solid #CCCCCC;
  1446. border-collapse:collapse;
  1447. }
  1448. .message-image-info {
  1449. width:35%;
  1450. float:left;
  1451. margin-top:10px;
  1452. margin-bottom:10px;
  1453. margin-left:10px;
  1454. text-align:left;
  1455. margin-right:20px;
  1456. }
  1457. .message-conten-body-right dd {
  1458. color:#333399;
  1459. border-bottom:1px solid #CCCCCC;
  1460. height:20px;
  1461. text-decoration:none;
  1462. outline-style:none;
  1463. background:#ffffff;
  1464. }
  1465. .message-conten-body-right:hover {
  1466. }
  1467. /**********************************************
  1468. * EXERCISE TOOL *
  1469. **********************************************/
  1470. .exercice_form {
  1471. width: 300px;
  1472. }
  1473. #validationButton{
  1474. text-decoration: none;
  1475. margin: 5px;
  1476. /*border:1px solid #999999;*/
  1477. /*background:#F0F0F0; */
  1478. padding: 3px;
  1479. padding-left:10px;
  1480. padding-right:10px;
  1481. font-weight:bold;
  1482. color:#666;
  1483. }
  1484. .rounded{
  1485. background:#ccc;
  1486. padding: 3px;
  1487. width: 200px;
  1488. margin-left:10px;
  1489. }
  1490. .rounded_inner{
  1491. background:#FFF;
  1492. padding-top: 10px;
  1493. padding-bottom: 10px;
  1494. }
  1495. .rounded_inner:hover{
  1496. color:#C802A5;
  1497. background:#F0F0F0;
  1498. }
  1499. .exercise_scenario_label{
  1500. }
  1501. .exercise_scenario_element{
  1502. }
  1503. span.checkbox {
  1504. width: 19px;
  1505. height: 25px;
  1506. padding: 0 5px 0 0;
  1507. background: url(images/checkbox.gif) no-repeat;
  1508. display: block;
  1509. clear: left;
  1510. float: left;
  1511. }
  1512. span.radio {
  1513. width: 19px;
  1514. height: 25px;
  1515. padding: 0 5px 0 0;
  1516. background: url(images/radio.gif) no-repeat;
  1517. display: block;
  1518. clear: left;
  1519. float: left;
  1520. }
  1521. #question_title{
  1522. }
  1523. #exercise_close_link{
  1524. background: url(images/close.gif) no-repeat;
  1525. padding-left: 20px;
  1526. }
  1527. #exercise_close_link:hover{
  1528. background: url(images/close_highlight.gif) no-repeat;
  1529. padding-left: 20px;
  1530. }
  1531. /*SOCIAL TOOL*/
  1532. .image-social-content {
  1533. cursor:pointer;
  1534. text-align:left;
  1535. margin:1px auto;
  1536. background:#ffffff;
  1537. border:1px solid #B8C8DC;
  1538. padding:5px;
  1539. width:100px;
  1540. position:relative;
  1541. margin-right:3px;
  1542. margin-left:4px;
  1543. margin-bottom:2px;
  1544. }
  1545. .image-social-content .image-delete {
  1546. position: absolute;
  1547. top: 1px;
  1548. right: 1px;
  1549. cursor: pointer;
  1550. }
  1551. .social-title{
  1552. color:#ffffff;
  1553. background:#4475B0;
  1554. border-bottom:1px dotted #4475B0;
  1555. border-top:1px dotted #4475B0;
  1556. padding:0px;
  1557. margin-bottom: 0px;
  1558. vertical-align:middle;
  1559. font-weight:bolder;
  1560. }
  1561. .social-subtitle{
  1562. background:#FFFFFF;
  1563. border-bottom:1px dotted #999999;
  1564. border-top:1px dotted #999999;
  1565. padding:0px;
  1566. margin-bottom: 0px;
  1567. vertical-align:middle;
  1568. }
  1569. .social-qualify{
  1570. border-bottom:1px solid #ece9d8;
  1571. border-left:1px solid #ece9d8;
  1572. background:#FFFFFF;
  1573. }
  1574. .social-qualify-display{
  1575. border-bottom:1px solid #ece9d8;
  1576. border-left:1px solid #ece9d8;
  1577. background:#FFFF66;
  1578. color:#000033;
  1579. font-weight:bold;
  1580. }
  1581. .social-info{
  1582. background:#B8C8DC;
  1583. color:#4475B0;
  1584. font-size:12px;
  1585. font-weight:bold;
  1586. }
  1587. .social-display-image{
  1588. float:right;
  1589. margin-top:-130px;
  1590. margin-right:5px;
  1591. }
  1592. .social-search-image{
  1593. color:#000033;
  1594. margin-top:2px;
  1595. border-bottom:1px solid #6B6262;
  1596. border-left:1px solid #6B6262;
  1597. border-right:1px solid #6B6262;
  1598. border-top:1px solid #6B6262;
  1599. width:250px;
  1600. }
  1601. .social-subtitle-search{
  1602. background:#ffffff;
  1603. border-top:1px #9DACBF solid;
  1604. border-bottom:1px #9DACBF solid;
  1605. }
  1606. .social-align-box {
  1607. text-align:left;
  1608. float:left;
  1609. }
  1610. .social-content-description {
  1611. background:#ECE9D8;
  1612. }
  1613. .social-content-body{
  1614. background:#ffffff;
  1615. }
  1616. .social-content-table{
  1617. border-top:1px #9DACBF solid;
  1618. border-left:1px #9DACBF solid;
  1619. border-right:1px #9DACBF solid;
  1620. border-bottom:1px #9DACBF solid;
  1621. }
  1622. .social-profile-info {
  1623. width:350px;
  1624. }
  1625. .social-profile-info dt {
  1626. text-align:left;
  1627. clear:left;
  1628. color:#808080;
  1629. float:left;
  1630. width:100px;
  1631. }
  1632. .social-profile-info dd {
  1633. padding:1px 0px 3px 0px;
  1634. float:left;
  1635. margin:0;
  1636. display : block;
  1637. padding-left:10px;
  1638. width:200px;
  1639. }
  1640. #social-profile-wrapper {
  1641. width: 990px;
  1642. text-align:left;
  1643. margin:0 auto;
  1644. }
  1645. #social-profile-container {
  1646. width: 700px;
  1647. }
  1648. #social-profile-left {
  1649. float:left;
  1650. width:220px;
  1651. }
  1652. .left-side {
  1653. min-width: 198px;
  1654. margin: 0px;
  1655. }
  1656. #social-profile-content {
  1657. float:right;
  1658. width:480px;
  1659. }
  1660. #social-profile-right {
  1661. float:right; width:290px
  1662. }
  1663. .social-profile-post {
  1664. width: 450px;
  1665. background : #EFEFEF;
  1666. }
  1667. .maincourse {
  1668. width: 100%; margin-left:0px;
  1669. }
  1670. .social-profile-rounded {
  1671. background : #eee;
  1672. }
  1673. #social-profile-forum {
  1674. padding-left:0px;
  1675. }
  1676. #social-profile-thread {
  1677. padding-left:20px;
  1678. }
  1679. #social-post{
  1680. padding-left:30px;
  1681. }
  1682. .actions-profile {
  1683. font-size:14px;
  1684. background:#efefef;
  1685. border-bottom:1px dotted #999999;
  1686. border-top:1px dotted #999999;
  1687. /*height:35px;*/
  1688. padding:2px;
  1689. margin-bottom: 2px;
  1690. /*background:url(images/actions.jpg) repeat-x;*/
  1691. vertical-align:middle;
  1692. font-weight:700;
  1693. margin-right:2px;
  1694. }
  1695. /*****************************************************
  1696. * BUTTONS *
  1697. *****************************************************/
  1698. /* BUTTONS */
  1699. button {
  1700. margin:0 5px 3px 3px !important;
  1701. background-color: #DFDFDF;
  1702. border-width: 1px;
  1703. /* -moz-border-radius-topright : 5px;
  1704. -moz-border-radius-topleft : 5px;
  1705. -moz-border-radius-bottomright : 5px;
  1706. -moz-border-radius-bottomleft : 5px;
  1707. */
  1708. font-family: bold arial,verdana,helvetica,sans-serif;
  1709. font-size: 100%;
  1710. line-height :130%;
  1711. text-decoration: none;
  1712. color: black;
  1713. cursor: pointer;
  1714. padding:5px 15px 5px 15px;
  1715. vertical-align:middle;
  1716. }
  1717. button:hover {
  1718. background-color:#cbcbcb;
  1719. color:#545454;
  1720. border-style: inset;
  1721. }
  1722. /* button with image */
  1723. button.add, button.save, button.cancel, button.search, button.login {
  1724. padding-left:30px;
  1725. background-position:10px;
  1726. background-repeat:no-repeat;
  1727. }
  1728. /* POSITIVE */
  1729. button.save, button.add, button.search, button.login {
  1730. background-color:#E5EDF9;
  1731. border-color: #D4E2F6;
  1732. }
  1733. button.save:hover, button.add:hover, button.search:hover, button.login:hover {
  1734. border-color: #D4E2F6;
  1735. background-color:#D4E2F6;
  1736. }
  1737. /* NEGATIVE */
  1738. button.cancel {
  1739. background-color:#F8E8E6;
  1740. border-color: #FFE3DE;
  1741. }
  1742. button.cancel:hover {
  1743. border-color: #F4E1D0;
  1744. background-color: #FFE3DE;
  1745. }
  1746. /*including "save" image*/
  1747. button.save {
  1748. background-image:url(images/button_accept.gif);
  1749. }
  1750. /*including "add" image*/
  1751. button.add {
  1752. background-image:url(images/button_add.gif);
  1753. }
  1754. /*including "cancel" image*/
  1755. button.cancel {
  1756. background-image:url(images/button_delete.gif);
  1757. }
  1758. /*including "search" image*/
  1759. button.search {
  1760. background-image:url(images/button_search.gif);
  1761. }
  1762. /*including "login" image*/
  1763. button.login {
  1764. background-image:url(images/button_login.gif);
  1765. }