default.css 52 KB

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