default.css 51 KB

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