default.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199
  1. /*
  2. ==============================================================================
  3. GLOBAL STYLES - REDEFINED HTML TAGS
  4. ==============================================================================
  5. */
  6. body {
  7. background-color: #fff;
  8. color: #000;
  9. font-family: arial, verdana, helvetica, sans-serif;
  10. font-size: 12px;
  11. margin: 0;
  12. padding: 0;
  13. }
  14. img {
  15. border: none;
  16. }
  17. p,
  18. blockquote,
  19. ol,
  20. ul,
  21. h4 {
  22. font-size: 12px;
  23. }
  24. h1 {
  25. font-size: 21px;
  26. }
  27. h2 {
  28. font-size: 18px;
  29. }
  30. h3 {
  31. font-size: 15px;
  32. margin-top:0px;
  33. padding-top:0px;
  34. }
  35. /* the following for regular <a> elements */
  36. a:link,
  37. a:visited,
  38. a:hover,
  39. a:active {
  40. font-weight : bold;
  41. text-decoration: none;
  42. }
  43. a:link,
  44. a:visited {
  45. color : #4171b5;
  46. }
  47. a:hover {
  48. color: red;
  49. }
  50. a:active {
  51. color : #f00;
  52. }
  53. select,
  54. textarea {
  55. border: 1px solid #000;
  56. color : #000;
  57. }
  58. select,
  59. input[type=checkbox],
  60. input[type=radio],
  61. input[type=button],
  62. input[type=submit] {
  63. cursor: pointer;
  64. font-size: 12px;
  65. }
  66. input[type=text] {
  67. font-size: 12px;
  68. }
  69. input.checkbox {
  70. border-width: 0;
  71. }
  72. input.link_alike,
  73. input.link_alike:hover {
  74. background-color: #FFF;
  75. border-width: 0px;
  76. color: #4171b5;
  77. font-weight: bold;
  78. margin: 0px;
  79. padding: 0px;
  80. text-align: left;
  81. }
  82. input.link_alike{
  83. color: #4171b5;
  84. }
  85. input.link_alike:hover {
  86. color: #FF0000;
  87. }
  88. /*
  89. ==============================================================================
  90. PAGE STRUCTURE
  91. ==============================================================================
  92. */
  93. #outerframe {
  94. background-color: #fff;
  95. border: 1px solid #fff;
  96. position: relative; /* do not remove, fixes a bug in IE */
  97. }
  98. /* Hides from IE5-mac \*/
  99. * html #outerframe {height: 1%;}
  100. /* End hide from IE5-mac */
  101. #main {
  102. background-color: #fff;
  103. margin: 0px auto;
  104. margin-top: 10px;
  105. min-height: 320px;
  106. padding: 0px 10px 10px 10px;
  107. position: relative; /* to avoid the IE peekabo bug*/
  108. width: 98%;
  109. }
  110. .maincontent { /* for content section in main index.php file */
  111. background-color: #fff;
  112. float: left;
  113. padding: 4px;
  114. width: 78%;
  115. }
  116. .clear {
  117. clear: both;
  118. height: 0;
  119. line-height: 0px;
  120. }
  121. #center {
  122. margin: 0 190px 0 0;
  123. min-height: 300px;
  124. padding: 10px 0 40px 0;
  125. }
  126. .invisible ,
  127. .invisible a:link,
  128. .invisible a:visited,
  129. a.invisible:link,
  130. a.invisible:visited {
  131. color: #999;
  132. }
  133. /* user_portal course status icon */
  134. .coursestatusicons{
  135. border: 0px solid #000;
  136. float: left;
  137. padding-right: 5px;
  138. width: auto;
  139. }
  140. /* user_portal course list */
  141. .courses {
  142. list-style-type: none;
  143. margin-bottom: 5px;
  144. }
  145. /*
  146. ==============================================================================
  147. HEADER STYLES
  148. ==============================================================================
  149. */
  150. #header {
  151. margin: 0;
  152. padding: 0;
  153. width: 100%;
  154. }
  155. /*
  156. ------------------------------------------------------------------------------
  157. HEADER 1: Title, portal, organisation, course title
  158. ------------------------------------------------------------------------------
  159. */
  160. #header1 {
  161. background-color: #264269;
  162. border-bottom: 1px solid white;
  163. color: #fff;
  164. font-size: 12px;
  165. padding: 4px;
  166. }
  167. #header1 a {
  168. color: #fff;
  169. text-decoration: none;
  170. }
  171. #header1 a:hover{
  172. background-color: #264269;
  173. text-decoration: underline;
  174. }
  175. #sitename {
  176. font-weight: bold;
  177. margin: 0;
  178. }
  179. #top_corner
  180. {
  181. }
  182. #institution {
  183. float: left;
  184. font-weight: bold;
  185. }
  186. #my_courses {
  187. float: right;
  188. font-weight: bold;
  189. }
  190. /*
  191. ------------------------------------------------------------------------------
  192. HEADER 2: Users online, help, student/teacher view
  193. ------------------------------------------------------------------------------
  194. */
  195. #header2 {
  196. background: #4271b5;
  197. border-bottom: 1px solid #666;
  198. color: #fff;
  199. font-size: 1.0em;
  200. font-weight: normal;
  201. padding: 0.2em 0.5em;
  202. padding-bottom: 0.2em;
  203. position: relative; /* to avoid the IE peekabo bug*/
  204. }
  205. #header2 a {
  206. color: #fff;
  207. font-weight:normal;
  208. text-decoration: none;
  209. }
  210. #header2 a:hover{
  211. text-decoration: underline;
  212. }
  213. /* Header2Right: online users, student/teacher view, help */
  214. #Header2Right ul{
  215. float: right;
  216. list-style-type: none;
  217. margin: 0;
  218. padding: 0;
  219. position: relative; /* to avoid the IE peekabo bug*/
  220. text-align: right;
  221. width: 70%;
  222. }
  223. #Header2Right ul li {
  224. display: inline;
  225. }
  226. #Header2Right ul li a {
  227. color:#fff;
  228. padding: 4px 6px 4px 4px;
  229. }
  230. /*
  231. ------------------------------------------------------------------------------
  232. HEADER 3: TABS OF THE HEADER
  233. ------------------------------------------------------------------------------
  234. */
  235. #header3 {
  236. background: #E5EDF9;
  237. border-bottom: 1px solid #4171b5;
  238. color: #006;
  239. font-size: 1.0em;
  240. height:auto;
  241. margin: 0px;
  242. margin-bottom: 1px;
  243. padding: 0em 0em 0.4em 0em;
  244. }
  245. #header3 a {
  246. color: #2754AF;
  247. display: block;
  248. font-weight: bold;
  249. padding: 3px 3px 2px 3px;
  250. text-decoration: none;
  251. }
  252. #header3 a:hover {
  253. color: #333;
  254. }
  255. #header3 ul {
  256. display: inline;
  257. list-style-type: none;
  258. margin: 0px;
  259. padding: 0px 20px 0px 0px;
  260. }
  261. #header3 li {
  262. border-right: solid 1px #73A2B6;
  263. color: #73A2B6;
  264. display: block;
  265. float: left;
  266. list-style: none;
  267. margin: 0px;
  268. padding: 0px;
  269. }
  270. #header3 li:hover {
  271. margin: 0px;
  272. padding: 0px;
  273. }
  274. #header3 #current {
  275. background-color: #fff;
  276. border-bottom: 1px solid #fff;
  277. }
  278. #header3 #current a {
  279. border-bottom: 0px solid #4171b5;
  280. color: #2754AF;
  281. }
  282. #header3 #current a:hover {
  283. color: #333;
  284. }
  285. #header3 .banner_links {
  286. margin: 0;
  287. }
  288. #header3 input {
  289. display: block;
  290. padding-left: 2px;
  291. padding-right: 2px;
  292. }
  293. #header3 input:hover {
  294. color: #333;
  295. }
  296. #header3 input.logout { /* makes an input appear like a link in this header */
  297. background-color: transparent;
  298. border: none;
  299. color: #2754AF;
  300. display: inline;
  301. font-size: 1.0em;
  302. font-weight:bold;
  303. margin: 0;
  304. padding: 0;
  305. padding-right: 2px;
  306. padding-top: 3px;
  307. }
  308. #header3 #logout {
  309. margin-top: 0px;
  310. }
  311. #logout{
  312. border-left: solid 1px #73A2B6;
  313. display: inline;
  314. float: right;
  315. font-size: 1.0em;
  316. text-align: right;
  317. width: auto;
  318. }
  319. /*
  320. ------------------------------------------------------------------------------
  321. HEADER 4: not used
  322. ------------------------------------------------------------------------------
  323. */
  324. #header4 {
  325. background-color: #fff;
  326. color: #009;
  327. margin-bottom: 2px;
  328. padding: 4px;
  329. float: left;
  330. clear:right;
  331. }
  332. #header4 a {
  333. color: #4171b5;
  334. }
  335. #header4 a:hover {
  336. color: #f00;
  337. text-decoration: none;
  338. }
  339. /* The tool shortcuts */
  340. #toolshortcuts {
  341. text-align: right;
  342. clear: right;
  343. }
  344. /*
  345. ==============================================================================
  346. FOOTER STYLES
  347. ==============================================================================
  348. */
  349. #footer {
  350. background-color: #E5EDF9;
  351. border-top: 1px solid #4171B5;
  352. font-size: 12px;
  353. padding: 8px;
  354. }
  355. #footer .copyright {
  356. float: right;
  357. }
  358. #myprofilefooter {
  359. clear:both;
  360. border-top:thin solid;
  361. padding-top:2px;
  362. }
  363. #bottom_corner
  364. {
  365. }
  366. /*
  367. ==============================================================================
  368. NAVIGATION MENU
  369. ==============================================================================
  370. */
  371. .menu {
  372. background-color: #E5EDF9;
  373. border: 1px solid #4171B5;
  374. float: right;
  375. padding: 0 0 6px 0;
  376. width: 20%;
  377. }
  378. .menucaption {
  379. font-size: 12px;
  380. font-weight: bold;
  381. padding-left: 12px;
  382. }
  383. .menusection {
  384. border: 1px solid #4171B5;
  385. margin: 24px 6px 0 6px;
  386. padding-left: 10px;
  387. width: auto;
  388. }
  389. .menusectioncaption {
  390. background-color: #E5EDF9;
  391. font-size: 12px;
  392. padding: 0 8px 0 4px;
  393. position: relative;
  394. top: -9px;
  395. }
  396. .menulist {
  397. list-style: none;
  398. margin: 0 0 12px 0;
  399. padding: 0;
  400. }
  401. #centerwrap {
  402. float: left;
  403. width: 100%;
  404. margin-right: -95%;
  405. /* this needs to be less than 100% for Moz/Mac which thinks
  406. it's empty otherwise. The difference is made up by putting a
  407. negative left margin on the left float:
  408. Note IE/Mac doesn't like this method ~ it wants the 100% so it can
  409. be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
  410. */
  411. }
  412. #center {
  413. margin: 0 190px 0 0;
  414. min-height: 300px;
  415. padding: 10px 0 40px 0;
  416. }
  417. #toolnav {
  418. float: right;
  419. margin: 0;
  420. margin-left: -5%; /* the difference to make the left colum appear flush left */
  421. padding: 0;
  422. width: 180px;
  423. }
  424. #toolnav img {
  425. float: left;
  426. width: 25px;
  427. height: 25px;
  428. margin: 0 4px 0 0;
  429. }
  430. /* Hide from IE5-mac. Only IE-win sees this. \*/
  431. * html #toolnav { margin-right: 0px;}
  432. * html #center { height: 1%; margin-left: 0; }
  433. /* End hide from IE5/mac */
  434. /*
  435. this lets the navigation menu appear to the left:
  436. #center {
  437. margin: 0 0 0 180px;
  438. min-height: 300px;
  439. padding: 10px 0 40px 0;
  440. }
  441. #toolnav {
  442. float: left;
  443. width: 180px;
  444. padding: 20px 0 0 0;
  445. margin-left: -5%;
  446. }
  447. */
  448. /*
  449. ------------------------------------------------------------------------------
  450. course navigation menu as a definition list
  451. ------------------------------------------------------------------------------
  452. */
  453. #swap_menu_link {
  454. float: left;
  455. }
  456. #toolnavbox {
  457. border: 1px solid #4271b5;
  458. float: left;
  459. margin: 0 0 0 10px;
  460. padding: 0;
  461. }
  462. #toolnavbox dl {
  463. background: transparent;
  464. font-size: 12px;
  465. margin: 0 auto;
  466. text-align: center;
  467. width: 160px;
  468. }
  469. #toolnavbox dt {
  470. background: transparent;
  471. border-bottom: 1px solid #fff;
  472. color: #000;
  473. font-size: 12px;
  474. font-weight: bold;
  475. margin: 0;
  476. text-align: center;
  477. }
  478. #toolnavbox dd {
  479. background: #E5EDF9;
  480. border-bottom:1px solid #fff;
  481. color: #009;
  482. margin: 0;
  483. text-align: left;
  484. }
  485. #toolnavlist a,
  486. #toolnavlist a:link {
  487. background: #E5EDF9;
  488. color: #4171b5;
  489. display: block;
  490. margin: 0;
  491. padding: 5px 5px 5px 10px;
  492. text-decoration: none;
  493. }
  494. #toolnavlist a:hover,
  495. #toolnavlist a#here {
  496. background: #fff;
  497. color:#4171b5;
  498. }
  499. /* --- end of course navigation menu section --- */
  500. /*
  501. ==============================================================================
  502. LOGIN AND LANGUAGE FORM
  503. ==============================================================================
  504. */
  505. #lang_form {
  506. font-size: 12px;
  507. margin: 2px 0 10px 0;
  508. padding: 2px;
  509. text-align: left;
  510. }
  511. #lang_form input,
  512. #lang_form select{
  513. font-size: 12px;
  514. }
  515. #formLogin label {
  516. font-size: 12px;
  517. margin: 4px 6px;
  518. }
  519. #formLogin input {
  520. font-size: 13px;
  521. margin: 4px 6px;
  522. }
  523. #login_fail {
  524. background-color: #fff;
  525. border: 1px solid #f00;
  526. color: #f00;
  527. font-size: 12px;
  528. margin: 0 6px 6px 6px;
  529. padding: 4px;
  530. }
  531. input.mainoption {
  532. font-weight : bold;
  533. }
  534. input.liteoption {
  535. font-weight : normal;
  536. }
  537. /*
  538. ==============================================================================
  539. COURSE HOMEPAGE
  540. ==============================================================================
  541. */
  542. /* various sections in course-home.php file */
  543. #toolremove {
  544. border: 2px solid #f00;
  545. color: #f00;
  546. font-weight: bold;
  547. margin: 10px auto;
  548. padding: 10px;
  549. width: 40%;
  550. }
  551. #courseintro {
  552. border-bottom: 1px solid #4171B5;
  553. clear: both;
  554. margin: 10px auto;
  555. padding: 10px;
  556. width: 80%;
  557. }
  558. #courseintro_icons {
  559. clear: both;
  560. margin: 10px auto;
  561. width: 80%;
  562. }
  563. .everybodyview {
  564. margin: 10px auto;
  565. padding: 10px;
  566. position: relative; /* to avoid the IE peekabo bug ?*/
  567. width: 80%;
  568. }
  569. .Authoringview,
  570. .courseadminview,
  571. .platformadminview {
  572. border: 1px solid #4171B5;
  573. margin: 25px auto 10px;
  574. padding: 10px;
  575. position: relative;
  576. width: 80%;
  577. }
  578. .viewcaption {
  579. background-color: #fff;
  580. color: #4171B5;
  581. font-size: 12px;
  582. font-weight: bold;
  583. padding: 0 4px;
  584. position: relative;
  585. top: -20px;
  586. }
  587. /*
  588. ==============================================================================
  589. AGENDA
  590. ==============================================================================
  591. */
  592. #agenda {
  593. width: 100%;
  594. margin: 0 auto;
  595. border: 1px solid #4171B5;
  596. border-collapse: collapse;
  597. }
  598. #agenda .title a {
  599. color: #fff;
  600. }
  601. #agenda .agendaitem {
  602. font-size: 12px;
  603. }
  604. .agenda_month_divider {
  605. background-color: #4171B5;
  606. color: #fff;
  607. font-size: 12px;
  608. font-weight: bold;
  609. text-align: center;
  610. }
  611. #agenda_select {
  612. border: 0px solid green;
  613. list-style: none;
  614. margin: 30px 0 0 0;
  615. padding: 0 0 0 10px;
  616. }
  617. /*
  618. ------------------------------------------------------------------------------
  619. styles for the agenda (day, week, month view)
  620. ------------------------------------------------------------------------------
  621. */
  622. #agenda_list {
  623. border: 1px solid #fff;
  624. border-collapse: collapse;
  625. margin: 0 auto;
  626. width: 100%;
  627. }
  628. /*The caption of the calendar (displays the month and the << and >> links*/
  629. #agenda_list .title{
  630. background-color: #4171B5;
  631. border: 1px solid #264269;
  632. color: #fff;
  633. font-size: 12px;
  634. font-weight: bold;
  635. padding: 2px 10px;
  636. text-align: center;
  637. }
  638. #agenda_list .title a{
  639. color: #fff;
  640. }
  641. /* The cells with the name of the days of the weeks (mon->sun)*/
  642. #agenda_list .weekdays {
  643. background-color: #D3DFF1;
  644. border: 1px solid #264269;
  645. border-collapse: collapse;
  646. font-weight: bold;
  647. text-align: center;
  648. }
  649. #agenda_list .days_week,
  650. #agenda_list .days_weekend,
  651. #agenda_list .days_today {
  652. border: 1px solid #264269;
  653. border-collapse: collapse;
  654. height: 40px;
  655. text-align: left;
  656. vertical-align: top;
  657. width: 12%;
  658. }
  659. /* The cells for the days (1->31) */
  660. #agenda_list .days_week {
  661. background-color: #f5f5f5;
  662. }
  663. #agenda_list .days_weekend {
  664. background-color: #e6e6e6;
  665. }
  666. #agenda_list .days_today {
  667. background-color: #FFCA8D;
  668. color: #CC3300;
  669. font-weight: bold;
  670. }
  671. #agenda_list .data,
  672. #agenda_list .datanotbold,
  673. #agenda_list .text,
  674. #agenda_list .data_hidden,
  675. #agenda_list .datanotbold_hidden,
  676. #agenda_list .text_hidden,
  677. #agenda_list .datanow,
  678. #agenda_list .datanotboldnow,
  679. #agenda_list .textnow {
  680. border: 0px solid #4171B5;
  681. border-collapse: collapse;
  682. padding: 2px 10px;
  683. text-align: left;
  684. }
  685. /* text in the cells: display of agenda items (visible)*/
  686. #agenda_list .data {
  687. background-color: #eee;
  688. font-weight: bold;
  689. }
  690. #agenda_list .datanotbold {
  691. background-color: #eee;
  692. font-weight: normal;
  693. }
  694. #agenda_list .text {
  695. background-color: #fff;
  696. font-weight: normal;
  697. }
  698. /*text in the cells: display of agenda items (invisible)*/
  699. #agenda_list .data_hidden {
  700. background-color: #eee;
  701. color: #999999;
  702. font-weight: bold;
  703. }
  704. #agenda_list .datanotbold_hidden {
  705. background-color: #eee;
  706. color: #999999;
  707. font-weight: normal;
  708. }
  709. #agenda_list .text_hidden {
  710. background-color: #fff;
  711. color: #999999;
  712. font-weight: normal;
  713. }
  714. /*text in the cells: display of agenda items (highlighted)*/
  715. #agenda_list .datanow {
  716. background-color: #FFCC00;
  717. font-weight: bold;
  718. }
  719. #agenda_list .datanotboldnow {
  720. background-color: #FFCC00;
  721. font-weight: normal;
  722. }
  723. #agenda_list .textnow {
  724. background-color: #fff;
  725. font-weight: normal;
  726. }
  727. /*
  728. ------------------------------------------------------------------------------
  729. styles for the mini agenda
  730. ------------------------------------------------------------------------------
  731. */
  732. #smallcalendar {
  733. border: 1px solid #fff;
  734. border-collapse: collapse;
  735. margin: 0 auto;
  736. width: 100%;
  737. }
  738. #smallcalendar .title {
  739. background-color: #4171B5;
  740. color: #fff;
  741. font-size: 11px;
  742. font-weight: bold;
  743. padding: 2px;
  744. text-align: center;
  745. }
  746. #smallcalendar .title a {
  747. color: #fff;
  748. }
  749. #smallcalendar .weekdays {
  750. background-color: #D3DFF1;
  751. border: 1px solid #fff;
  752. border-collapse: collapse;
  753. font-size: 11px;
  754. font-weight: bold;
  755. text-align: center;
  756. }
  757. #smallcalendar .days_week {
  758. background-color: #f5f5f5;
  759. border-collapse: collapse;
  760. font-size: 11px;
  761. text-align: center;
  762. }
  763. #smallcalendar .days_weekend {
  764. background-color: #e6e6e6;
  765. border: 1px solid #fff;
  766. border-collapse: collapse;
  767. font-size: 11px;
  768. text-align: center;
  769. }
  770. #smallcalendar .days_today {
  771. background-color: #FFCA8D;
  772. border: 1px solid #FA8500;
  773. border-collapse: collapse;
  774. font-size: 11px;
  775. text-align: center;
  776. width: 12%;
  777. }
  778. /*
  779. ------------------------------------------------------------------------------
  780. styles for the personal agenda
  781. ------------------------------------------------------------------------------
  782. */
  783. .personal_agenda,
  784. .personal_agenda a:link,
  785. .personal_agenda a:visited,
  786. a.personal_agenda:link,
  787. a.personal_agenda:visited{
  788. color: #008000;
  789. }
  790. .personal_agenda a:hover,
  791. a.personal_agenda:hover {
  792. color: #666666;
  793. }
  794. .ical_export { float: right; margin-top: 0.2em;}
  795. /*
  796. ==============================================================================
  797. DISPLAY MESSAGES
  798. ==============================================================================
  799. */
  800. /* Common message styles */
  801. .normal-message,
  802. .warning-message,
  803. .confirmation-message,
  804. .error-message {
  805. border-width: 1px;
  806. border-style: solid;
  807. left: 50%;
  808. margin: 10px auto;
  809. margin-left: -250px;
  810. min-height: 30px;
  811. padding: 5px;
  812. position: relative;
  813. right: 50%;
  814. width: 500px;
  815. }
  816. /* Specific message styles */
  817. .normal-message {
  818. background-color: #E5EDF9;
  819. border-color: #4171B5;
  820. color: #000;
  821. }
  822. .warning-message {
  823. background-color: #FFEFA7;
  824. border-color: #FFB30F;
  825. color: #000;
  826. }
  827. .confirmation-message {
  828. background-color: #CAF0C7;
  829. border-color: #1F8323;
  830. color: #000;
  831. }
  832. .error-message {
  833. background-color: #FFD1D1;
  834. border-color: #FF0000;
  835. color: #000;
  836. }
  837. .confirmation-message .bottom-link, .error-message .bottom-link, .normal-message .bottom-link, .warning-message .bottom-link
  838. {
  839. position: absolute;
  840. bottom: 0.2em;
  841. right: 0.5em;
  842. }
  843. #message {
  844. margin: 0 auto;
  845. text-align: center;
  846. }
  847. #message select {
  848. margin: 10px 0;
  849. width: 220px;
  850. }
  851. #message textarea {
  852. margin: 10px 0;
  853. }
  854. #message td {
  855. padding: 4px;
  856. }
  857. /*
  858. ==============================================================================
  859. DOCUMENT MODULE
  860. ==============================================================================
  861. */
  862. /* styles from the document.php file */
  863. .comment {
  864. margin-left: 30px;
  865. }
  866. /* styles from the upload.php file */
  867. dl.upload_option {
  868. margin: 1em 0;
  869. padding: 0;
  870. }
  871. .upload_option dt {
  872. font-weight:bold;
  873. margin:0;
  874. }
  875. .upload_option dd {
  876. margin:0;
  877. }
  878. .document_owner {text-align: right;}
  879. /*
  880. ==============================================================================
  881. DROPBOX MODULE
  882. ==============================================================================
  883. */
  884. /* styles from dropbox.php file */
  885. .dropbox_detail {
  886. font-size: small
  887. }
  888. .dropbox_date {
  889. font-style: italic
  890. }
  891. .dropbox_date {
  892. color: #737780;
  893. font-style: italic ;
  894. font-weight: normal;
  895. }
  896. .dropbox_listTitle {
  897. color: #000000;
  898. }
  899. .dropbox_feedback {
  900. font-size: x-small;
  901. height: 50px;
  902. overflow: auto
  903. width: 200px;
  904. }
  905. .dropbox_feedbacks {
  906. height: 250px;
  907. width: 100%;
  908. overflow: auto
  909. }
  910. /*
  911. ==============================================================================
  912. CHAT MODULE
  913. ==============================================================================
  914. */
  915. /* styles for chat / conference tools */
  916. #chat_entermessage {
  917. background-color: #D6E5FA;
  918. border-top: 1px solid #4171B5;
  919. padding: 5px; margin: 0;
  920. }
  921. /* the following for the greyed out elements */
  922. a.nobold:link,
  923. a.nobold:visited,
  924. a.nobold:active {
  925. font-weight: normal;
  926. color: #999;
  927. margin: 0 0 0 25px;
  928. }
  929. a.nobold:hover {
  930. font-weight: normal;
  931. color: #999;
  932. text-decoration: underline;
  933. margin: 0 0 0 25px;
  934. }
  935. .note {
  936. background-color: #FFF089;
  937. border: 1px solid #4171B5;
  938. color: #4171B5;
  939. font-size: 12px;
  940. font-family: verdana, arial, helvetica, sans-serif;
  941. line-height: 14px;
  942. margin: 6px;
  943. padding: 4px;}
  944. .alternativeBgLight {
  945. background-color: #f5f5f5;
  946. border: 1px solid #4171B5;
  947. border-collapse: collapse;
  948. }
  949. .alternativeBgDark {
  950. background-color: #ccf;
  951. border: 1px solid #4171B5;
  952. border-collapse: collapse;
  953. }
  954. .myagendatoday {
  955. background-color: #FFCA8D;
  956. border-collapse: collapse;
  957. color: #CC3300;
  958. font-family: verdana, arial, helvetica, sans-serif;
  959. font-weight: bold;
  960. }
  961. /*
  962. ==============================================================================
  963. FORM STYLES
  964. ==============================================================================
  965. */
  966. div.row {
  967. clear: both;
  968. padding-top: 8px;
  969. }
  970. div.row div.form_header {
  971. background-color: #E5EDF9;
  972. border: 1px solid #4271B5;
  973. padding: 2px;
  974. white-space: nowrap;
  975. }
  976. div.row div.label {
  977. float: left;
  978. text-align: right;
  979. width: 14%;
  980. }
  981. div.row div.formw {
  982. width: 83%;
  983. }
  984. [dir=ltr] div.row div.label,
  985. [dir=rtl] div.row div.formw {
  986. float: left;
  987. text-align: right;
  988. }
  989. [dir=rtl] div.row div.label,
  990. [dir=ltr] div.row div.formw {
  991. float: right;
  992. text-align: left;
  993. }
  994. span.form_required {
  995. color: #f00;
  996. }
  997. span.form_error {
  998. color: #f00;
  999. font-size: x-small;
  1000. margin: 2px;
  1001. }
  1002. /*
  1003. ==============================================================================
  1004. ACCORDION STYLES
  1005. ==============================================================================
  1006. */
  1007. .accordion_header {
  1008. background-color: #E5EDF9;
  1009. border: 1px solid gray;
  1010. cursor: pointer;
  1011. margin-top: 10px;
  1012. padding: 5px;
  1013. width: 300px;
  1014. }
  1015. .accordion_content {
  1016. background-color: #fafafa;
  1017. border: 1px solid gray;
  1018. display: none;
  1019. padding: 5px;
  1020. text-align: left;
  1021. width: 770px;
  1022. }
  1023. /*
  1024. ==============================================================================
  1025. DATA TABLE STYLES
  1026. ==============================================================================
  1027. */
  1028. .cell_header { /* header cell in data table in tools */
  1029. background-color: #EEEEFF;
  1030. font-weight:bold;
  1031. padding-left:5px;
  1032. text-align:left;
  1033. }
  1034. .data_table {
  1035. border-collapse: collapse;
  1036. margin-bottom: 5px;
  1037. margin-top: 5px;
  1038. padding: 5px;
  1039. width: 100%;
  1040. }
  1041. .data_table th {
  1042. background-color: #E5EDF9;
  1043. border: 1px solid gray;
  1044. padding: 3px;
  1045. }
  1046. .data_table tr.row_odd {
  1047. background-color: #fafafa;
  1048. }
  1049. .data_table tr.row_odd:hover,
  1050. .data_table tr.row_even:hover{
  1051. background-color: #f0f0f0;
  1052. }
  1053. .data_table tr.row_even {
  1054. background-color: #fff;
  1055. }
  1056. .data_table td {
  1057. border-bottom: 1px solid #b0b0b0;
  1058. border-left: 1px dotted #e1e1e1;
  1059. border-right: 1px dotted #e1e1e1;
  1060. padding: 5px;
  1061. vertical-align: top;
  1062. }
  1063. .data_table td.border {
  1064. border: 1px solid gray;
  1065. padding: 5px;
  1066. vertical-align: top;
  1067. }
  1068. .data_table td.none {
  1069. border-bottom: none;
  1070. border-left:none;
  1071. border-right:none;
  1072. padding: 5px;
  1073. vertical-align: top;
  1074. }
  1075. .data_table td.redText {
  1076. color:red;
  1077. }
  1078. .data_table td.borderRight {
  1079. border-bottom: none;
  1080. border-left:none;
  1081. border-right:1px solid gray;
  1082. }
  1083. .data_table td.borderLeft {
  1084. border-bottom: none;
  1085. border-left:1px solid gray;
  1086. border-right:none;
  1087. }
  1088. .data_table td.noLink {
  1089. color:grey;
  1090. }
  1091. .data_table tr.tableName {
  1092. border: 1px solid gray;
  1093. background-color: #e6e6ff;
  1094. padding: 5px;
  1095. text-align:left;
  1096. }
  1097. .data_table tr.total {
  1098. background-color: #ffffcc;
  1099. border: 1px solid gray;
  1100. padding: 5px;
  1101. text-align:left;
  1102. }
  1103. .data_table th.head {
  1104. background-color: #ffffcc;
  1105. border: 1px solid gray;
  1106. padding-right: 20px;
  1107. }
  1108. /*
  1109. ==============================================================================
  1110. admin page tool list definitions
  1111. ==============================================================================
  1112. */
  1113. .tool_list dt {
  1114. font-weight: bold;
  1115. }
  1116. .tool_list dd {
  1117. margin: 0;
  1118. padding: 4px 0 0 10px;
  1119. }
  1120. /*
  1121. ==============================================================================
  1122. divs for category list / platform news on home page
  1123. ==============================================================================
  1124. */
  1125. .home_cats {
  1126. background: #fff;
  1127. float: left;
  1128. margin: 0;
  1129. padding: 0px;
  1130. padding-top: 8px;
  1131. position: relative;
  1132. width: 45%;
  1133. }
  1134. .home_news {
  1135. background: #fff;
  1136. float: right;
  1137. margin: 0;
  1138. padding: 0px;
  1139. padding-top: 8px;
  1140. position: relative;
  1141. width: 45%;
  1142. }
  1143. label.left {
  1144. float: left;
  1145. width: 15em;
  1146. margin: 0 0 0.5em 0;
  1147. }
  1148. form br {
  1149. clear: both;
  1150. }
  1151. /* Fix for alignment problem in IE-Win browsers */
  1152. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1153. * html .label { margin-right: 10px; }
  1154. * html .data { height: 1%; margin-left: 0;}
  1155. /* End hide from IE5/mac */
  1156. .radio,
  1157. .checkbox {
  1158. background-color: transparent;
  1159. border: none;
  1160. margin: 0;
  1161. padding: 0;
  1162. }
  1163. .required {
  1164. color: #f00;
  1165. font-weight: bold;
  1166. }
  1167. /*
  1168. ==============================================================================
  1169. Admin section
  1170. ==============================================================================
  1171. */
  1172. div.admin_section {
  1173. float: left;
  1174. margin: 10px 20px;
  1175. padding: 5px;
  1176. width: 40%;
  1177. }
  1178. div.admin_section h4 {
  1179. border-bottom: 1px solid gray;
  1180. margin: 0;
  1181. width: 100%;
  1182. }
  1183. .user_course_category {
  1184. background-color: #efefef;
  1185. border: 1px solid #666;
  1186. color: #666;
  1187. font-weight: bold;
  1188. list-style-type: none;
  1189. margin: 5px;
  1190. padding: 5px;
  1191. }
  1192. /*
  1193. ==============================================================================
  1194. DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION
  1195. ==============================================================================
  1196. */
  1197. .settingtitle{
  1198. background-color: #EFEFEF;
  1199. border: 1px solid #cccccc;
  1200. color: #666666;
  1201. font-size: 11px;
  1202. font-weight: bold;
  1203. list-style-type: none;
  1204. margin: 5px;
  1205. padding: 5px;
  1206. }
  1207. .settingcomment{
  1208. color: #000000;
  1209. font-size: 11px;
  1210. margin: 5px;
  1211. padding: 5px;
  1212. }
  1213. .settingvalue{
  1214. list-style-type: none;
  1215. margin: 5px;
  1216. padding: 5px;
  1217. }
  1218. /*
  1219. ==============================================================================
  1220. ANNOUNCEMENTS
  1221. ==============================================================================
  1222. */
  1223. .announcements_datum {
  1224. color: #666666;
  1225. font-size: 12px;
  1226. font-style: italic;
  1227. }
  1228. /*
  1229. ==============================================================================
  1230. SYSTEM ANNOUNCEMENTS
  1231. ==============================================================================
  1232. */
  1233. div.system_announcements{
  1234. }
  1235. div.system_announcements h3{
  1236. }
  1237. div.system_announcement{
  1238. margin: 5px;
  1239. }
  1240. div.system_announcement_title{
  1241. }
  1242. div.system_announcement_content{
  1243. margin-left: 20px;
  1244. border-left: 1px solid gray;
  1245. padding-left: 5px;
  1246. }
  1247. /*
  1248. ==============================================================================
  1249. THE NEW FORUM
  1250. ==============================================================================
  1251. */
  1252. /*
  1253. ------------------------------------------------------------------------------
  1254. FORUM CATEGORY
  1255. ------------------------------------------------------------------------------
  1256. */
  1257. .forum_category {
  1258. background-color: #0066CC;
  1259. color: #fff;
  1260. }
  1261. .forum_category a {
  1262. color: #fff;
  1263. }
  1264. .forum_category_header {
  1265. background-color: #0066CC;
  1266. color: #fff;
  1267. }
  1268. tr.forum_category_header a {
  1269. color: #fff;
  1270. }
  1271. /*
  1272. ------------------------------------------------------------------------------
  1273. FORUM
  1274. ------------------------------------------------------------------------------
  1275. */
  1276. .forum_header {
  1277. background-color: #EFEFEF;
  1278. }
  1279. .forum_attach_comment {
  1280. color: #737780;
  1281. font-style: italic ;
  1282. font-weight: normal;
  1283. }
  1284. /*
  1285. ------------------------------------------------------------------------------
  1286. THREAD
  1287. ------------------------------------------------------------------------------
  1288. */
  1289. .forum_threadheader {
  1290. background-color: #F7F7F7;
  1291. color: #aaa;
  1292. }
  1293. tr.forum_threadheader td{
  1294. }
  1295. /*
  1296. ------------------------------------------------------------------------------
  1297. POST
  1298. ------------------------------------------------------------------------------
  1299. */
  1300. .quote{
  1301. background-color: #EFEFEF;
  1302. }
  1303. .forum_message_left {
  1304. background-color: #F7F7F7;
  1305. /*border-bottom: 1px solid #666666;*/
  1306. border-right: 1px solid #aaa;
  1307. vertical-align: top;
  1308. width: 150px;
  1309. }
  1310. .forum_message_left_2_be_approved {
  1311. background-color: #F7F7F7;
  1312. /*border-bottom: 1px solid #666666;*/
  1313. border-right: 1px solid #aaa;
  1314. color: #999;
  1315. vertical-align: top;
  1316. width: 150px;
  1317. }
  1318. .forum_message_post_title{
  1319. background-color: #F7F7F7;
  1320. /*border-bottom: 1px solid #666666;*/
  1321. font-weight: bold;
  1322. height: 20px;
  1323. }
  1324. .forum_message_post_title_2_be_approved{
  1325. background-color: #F7F7F7;
  1326. /*border-bottom: 1px solid #666666;*/
  1327. color: #999;
  1328. font-weight: bold;
  1329. height: 20px;
  1330. }
  1331. .forum_message_post_text{
  1332. /*border-bottom: 1px solid #666666;*/
  1333. margin-bottom: 10px;
  1334. vertical-align: top;
  1335. }
  1336. .forum_message_post_text_2_be_approved{
  1337. /*border-bottom: 1px solid #666666;*/
  1338. color: #999;
  1339. margin-bottom: 10px;
  1340. vertical-align: top;
  1341. }
  1342. .current{
  1343. font-weight: bold;
  1344. }
  1345. .structure{
  1346. background-color: #F7F7F7;
  1347. /*border-bottom: 1px solid #666666;*/
  1348. font-weight: bold;
  1349. height: 20px;
  1350. }
  1351. a.forum_group_link {
  1352. display:inline;
  1353. font-weight: lighter;
  1354. }
  1355. .forum_description {
  1356. color: #000;
  1357. font-weight: normal;
  1358. font-family:Arial,sans,sans-serif;
  1359. }
  1360. .forum_title{
  1361. color: #000;
  1362. font-size: 14px;
  1363. font-family:Arial,sans,sans-serif;
  1364. }
  1365. .forum_low_description{
  1366. color: #737780;
  1367. font-style: italic ;
  1368. font-weight: normal;
  1369. font-family:Arial,sans,sans-serif;
  1370. }
  1371. /*
  1372. ------------------------------------------------------------------------------
  1373. BLOG
  1374. ------------------------------------------------------------------------------
  1375. */
  1376. span.blog_title {
  1377. color: #1657A9;
  1378. font-size: 20px;
  1379. font-weight: bold;
  1380. }
  1381. span.blog_subttitle {
  1382. font-size: 12px;
  1383. }
  1384. td.blog_left {
  1385. border-right: 1px solid #dddddd;
  1386. margin-right: 5px;
  1387. padding-right: 5px;
  1388. }
  1389. td.blog_right {
  1390. padding-left: 10px;
  1391. }
  1392. td.blog_menu_title {
  1393. background-color: #dddddd;
  1394. color: #1657A9;
  1395. font-weight: bold;
  1396. font-size: 11px;
  1397. padding: 2px;
  1398. }
  1399. td.blog_menu {
  1400. border-bottom: 1px dashed #dddddd;
  1401. border-left: 1px dashed #dddddd;
  1402. border-right: 1px dashed #dddddd;
  1403. padding: 10px;
  1404. }
  1405. td.blog_menu ul {
  1406. margin: 0 0 0 15px;
  1407. padding: 0;
  1408. }
  1409. td.blog_menu ul li {
  1410. }
  1411. span.blogpost_title {
  1412. color: #1657A9;
  1413. display: block;
  1414. font-size: 18px;
  1415. font-weight: bold;
  1416. padding-bottom: 5px;
  1417. }
  1418. span.blogpost_date {
  1419. color: #333333;
  1420. display: block;
  1421. font-size: 12px;
  1422. font-weight: bold;
  1423. padding-bottom: 10px;
  1424. }
  1425. span.blogpost_info {
  1426. border-top: 1px solid #dddddd;
  1427. color: #333333;
  1428. display: block;
  1429. margin-top: 5px;
  1430. }
  1431. table.newBlog {
  1432. background-color: #f6f6f6;
  1433. border: 1px solid #dddddd;
  1434. margin-bottom: 10px;
  1435. margin-top: 10px;
  1436. padding: 10px;
  1437. }
  1438. table.newTask {
  1439. background-color: #f6f6f6;
  1440. border: 1px solid #dddddd;
  1441. margin-bottom: 10px;
  1442. margin-top: 10px;
  1443. padding: 10px;
  1444. }
  1445. table.new_comment {
  1446. background-color: #F4F4F4;
  1447. border: 1px solid #dddddd;
  1448. margin-bottom: 10px;
  1449. margin-top: 10px;
  1450. padding: 10px;
  1451. }
  1452. div.blogpost_comment {
  1453. background-color: white;
  1454. border: 1px dashed #dddddd;
  1455. margin-bottom: 10px;
  1456. padding: 10px;
  1457. }
  1458. span.blogpost_comment_title {
  1459. color: #1657A9;
  1460. display: block;
  1461. font-size: 14px;
  1462. font-weight: bold;
  1463. padding-bottom: 5px;
  1464. }
  1465. span.blogpost_comment_date {
  1466. color: #333333;
  1467. display: block;
  1468. font-size: 10px;
  1469. font-weight: bold;
  1470. padding-bottom: 10px;
  1471. }
  1472. span.blogpost_comment_info {
  1473. border-top: 1px solid #dddddd;
  1474. color: #333333;
  1475. display: block;
  1476. font-size: 10px;
  1477. margin-top: 10px;
  1478. }
  1479. div.blogpost {
  1480. background-color: #ECECEC;
  1481. border: 1px solid #DDDDDD;
  1482. margin-bottom: 15px;
  1483. padding: 10px;
  1484. }
  1485. div.comments {
  1486. background-color: #F4F4F4;
  1487. border: 1px solid #dddddd;
  1488. margin-bottom: 10px;
  1489. margin-top: 10px;
  1490. padding: 10px;
  1491. }
  1492. .link {
  1493. color : #1657A9;
  1494. cursor: pointer
  1495. font-weight : bold;
  1496. text-decoration: none;
  1497. }
  1498. .link:hover {
  1499. color: #abd9f1;
  1500. cursor: pointer
  1501. font-weight: bold;
  1502. text-decoration: none;
  1503. }
  1504. .attachment_comment {
  1505. color: #737780;
  1506. font-style: italic ;
  1507. font-weight: normal;
  1508. }
  1509. /*
  1510. ==============================================================================
  1511. INSTALLATION
  1512. ==============================================================================
  1513. */
  1514. #installation_steps {
  1515. background-color: #EFEFEF;
  1516. float:left;
  1517. }
  1518. .current_step{
  1519. font-weight: bold;
  1520. }
  1521. .RequirementHeading{
  1522. margin-right:10px;
  1523. }
  1524. .RequirementHeading h1{
  1525. border-bottom: 1px solid #0066CC;
  1526. color:#0066CC;
  1527. font-size:1.2em;
  1528. font-weight: bold;
  1529. }
  1530. .RequirementText{
  1531. color:#666;
  1532. float:right;
  1533. font-size:1.0em;
  1534. font-weight: normal;
  1535. width:200px;
  1536. }
  1537. .RequirementContent{
  1538. color:#000;
  1539. font-size:1.0em;
  1540. font-weight: normal;
  1541. }
  1542. .RequirementContent table{
  1543. border: 1px solid #ccc;
  1544. width: 400px;
  1545. }
  1546. .RequirementContent table th{
  1547. border-bottom: 1px solid #ccc;
  1548. text-align: left;
  1549. }
  1550. .requirements-item{
  1551. background-color:#f7f7f7;
  1552. padding-left:2px;
  1553. width: 50%;
  1554. }
  1555. .requirements-value{
  1556. }
  1557. /*
  1558. ==============================================================================
  1559. styles below here are not necessarily used in the current
  1560. release and the CVS files, they are from earlier versions,
  1561. and have been left untouched for anyone needing them in
  1562. their own platform ...
  1563. ==============================================================================
  1564. */
  1565. .topBanner a:link,
  1566. .topBanner a:active,
  1567. .topBanner a:visited {
  1568. color:white;
  1569. text-decoration:none;
  1570. }
  1571. .topBanner table {
  1572. text-decoration:none;
  1573. }
  1574. .topBanner a:hover {
  1575. text-decoration:underline;
  1576. }
  1577. .topBanner td {
  1578. border-top: solid White 1px;
  1579. }
  1580. .alternativeBgLight {
  1581. background-color: #f5f5f5;
  1582. }
  1583. .alternativeBgDark {
  1584. background-color: #e6e6e6
  1585. }
  1586. .forms {
  1587. letter-spacing: normal;
  1588. padding: 2px 5px;
  1589. text-align: justify;
  1590. text-indent: 3pt;
  1591. word-spacing: normal;
  1592. }
  1593. .formsTips {
  1594. text-align: justify;
  1595. text-indent: 15pt;
  1596. word-spacing: normal;
  1597. }
  1598. /*
  1599. input.forms {
  1600. letter-spacing: normal;
  1601. padding-top: 0px;
  1602. padding-right: 0px;
  1603. padding-bottom: 0px;
  1604. padding-left: 0px;
  1605. text-align: justify;
  1606. text-indent: 3pt;
  1607. word-spacing: normal;
  1608. }
  1609. */
  1610. .warn {
  1611. border: thin double Silver;
  1612. color: Red;
  1613. font-family: serif;
  1614. margin-left: 15px;
  1615. margin-right: 15px;
  1616. padding-left: 25px;
  1617. }
  1618. .small {
  1619. font-family: Verdana, Arial, Helvetica, sans-serif;
  1620. font-size: 11px
  1621. }
  1622. .xsmall {
  1623. font-family: Verdana, Arial, Helvetica, sans-serif;
  1624. font-size: 11px
  1625. }
  1626. .xxsmall {
  1627. font-family: Verdana, Arial, Helvetica, sans-serif;
  1628. font-size: 9px
  1629. }
  1630. /*
  1631. ------------------------------------------------------------------------------
  1632. TABBED INTERFACE
  1633. ------------------------------------------------------------------------------
  1634. */
  1635. #tabbed_menu {
  1636. border-bottom-width: 1px;
  1637. border-bottom-style: solid;
  1638. border-bottom-color: #666666;
  1639. height: 20px;
  1640. margin-bottom: 20px;
  1641. width: 100%;
  1642. }
  1643. #tabbed_menu #tabbed_menu_tabs li {
  1644. display: inline;
  1645. list-style-type: none;
  1646. margin: 0 10;
  1647. padding: 0;
  1648. }
  1649. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  1650. background: #f3f3f3;
  1651. border: 1px solid #cccccc;
  1652. border-bottom: 1px solid #666666;
  1653. color: #666;
  1654. float: left;
  1655. font-weight: bold;
  1656. margin-right: 4px;
  1657. padding: 2px 10px 2px 10px;
  1658. text-decoration: none;
  1659. }
  1660. #tabbed_menu #tabbed_menu_tabs a:link.active,
  1661. #tabbed_menu_tabs a:visited.active {
  1662. background: #fff;
  1663. border: 1px solid #666666;
  1664. border-bottom: 1px solid #fff;
  1665. color: #000;
  1666. }
  1667. /*
  1668. ------------------------------------------------------------------------------
  1669. FCKeditor
  1670. ------------------------------------------------------------------------------
  1671. */
  1672. #WCAG-editor {
  1673. border: 1px #4171B5 solid;
  1674. background-color: #E5EDF9;
  1675. width: 100%;
  1676. }
  1677. #WCAG-editor .title {
  1678. padding: 2px;
  1679. background-color: #4171B5;
  1680. text-align: center;
  1681. color: #ffffff;
  1682. font-weight: bold;
  1683. }
  1684. #WCAG-editor .body {
  1685. padding-top: 5px;
  1686. padding-left: 5px;
  1687. padding-right: 13px;
  1688. padding-bottom: 5px;
  1689. }
  1690. #WCAG-editor textarea {
  1691. width: 100%;
  1692. height: 180px;
  1693. border: 1px #7F9DB9 solid;
  1694. }
  1695. /* don't work on IE < 7 */
  1696. #WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
  1697. width: auto;
  1698. }
  1699. /* don't apply on IE < 7 */
  1700. #WCAG-editor input {
  1701. width: 100%;
  1702. }
  1703. /* only for IE < 7 */
  1704. #WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
  1705. width: auto;
  1706. }
  1707. #WCAG-content img {
  1708. float: left;
  1709. margin-right: 5px;
  1710. margin-bottom: 5px;
  1711. }
  1712. #WCAG-content p {
  1713. text-align: justify;
  1714. }
  1715. /* hack for IE < 7 */
  1716. #course_description input {
  1717. width: auto;
  1718. }
  1719. #course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
  1720. width: 100%;
  1721. }
  1722. .WCAG-form textarea {
  1723. width: 100%;
  1724. height: 180px;
  1725. }
  1726. .skip {
  1727. display: none;
  1728. }
  1729. /*
  1730. ------------------------------------------------------------------------------
  1731. OTHERS
  1732. ------------------------------------------------------------------------------
  1733. */
  1734. .input_titles{
  1735. width: 300px;
  1736. }
  1737. /*
  1738. ------------------------------------------------------------------------------
  1739. Survey
  1740. ------------------------------------------------------------------------------
  1741. */
  1742. #survey_title{
  1743. background-color:#264269;
  1744. color:#FFF;
  1745. padding:2px;
  1746. border: 1px solid #264269;
  1747. }
  1748. #survey_subtitle{
  1749. background-color:#264269;
  1750. color:#FFF;
  1751. padding:2px;
  1752. border: 1px solid #264269;
  1753. }
  1754. .survey_content{
  1755. background-color:#EFEFEF;
  1756. color:#264269;
  1757. padding:5px;
  1758. border: 1px solid #264269;
  1759. }
  1760. .survey_question_wrapper{
  1761. border: 1px solid #4271b5;
  1762. }
  1763. .survey_question{
  1764. /* 264269 4271b5 E5EDF9 */
  1765. background-color:#4271b5;
  1766. color:#FFFFFF;
  1767. padding:5px;
  1768. /*border: 1px solid #264269;*/
  1769. }
  1770. .survey_question_options{
  1771. /* 264269 4271b5 E5EDF9 */
  1772. background-color:#FFF;
  1773. color:#000;
  1774. padding:5px;
  1775. /*border: 1px solid #264269;*/
  1776. }
  1777. .survey_export_link { float: right; }
  1778. /*
  1779. ------------------------------------------------------------------------------^M
  1780. sessions
  1781. ------------------------------------------------------------------------------^M
  1782. */
  1783. #ajax_list_coachs {
  1784. position:absolute;
  1785. border:1px solid #4171B5;
  1786. margin:0px;
  1787. padding:0px;
  1788. margin-left:200px;
  1789. margin-top:-23px;
  1790. background-color:#FFFFFF;
  1791. height:auto;
  1792. overflow:auto;
  1793. }
  1794. #ajax_list_courses {
  1795. position:absolute;
  1796. border:1px solid #4171B5;
  1797. margin:0px;
  1798. padding:0px;
  1799. margin-left:200px;
  1800. background-color:#FFFFFF;
  1801. height:auto;
  1802. overflow:auto;
  1803. }
  1804. #ajax_list_users {
  1805. position:absolute;
  1806. border:1px solid #4171B5;
  1807. margin:0px;
  1808. padding:0px;
  1809. margin-left:200px;
  1810. background-color:#FFFFFF;
  1811. height:auto;
  1812. overflow:auto;
  1813. }
  1814. #chat_login_name {
  1815. color : #4171b5;
  1816. }
  1817. /* Quizzes tool */
  1818. .quiz_export_link { float: right; }
  1819. /*
  1820. ------------------------------------------------------------------------------
  1821. Learning path
  1822. ------------------------------------------------------------------------------
  1823. */
  1824. #show_audiorecorder_div{background:#F0F0F0; border:1px solid #999999; font-weight:bold; padding:2px; width:350px;}