default.css 51 KB

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