default.css 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625
  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;
  940. width:30%;
  941. }
  942. .message-content-body-right {
  943. float:right;
  944. text-align:left;
  945. width:60%;
  946. }
  947. .message-body-title {
  948. float:right;
  949. margin-top:1px;
  950. margin-bottom:5px;
  951. border-bottom:1px solid #CCCCCC;
  952. border-collapse:collapse;
  953. }
  954. .message-image-info {
  955. float:left;
  956. margin-top:10px;
  957. margin-bottom:10px;
  958. margin-left:10px;
  959. text-align:left;
  960. margin-right:20px;
  961. }
  962. .message-content-body-right dd {
  963. color:#333399;
  964. border-bottom:1px solid #CCCCCC;
  965. height:20px;
  966. text-decoration:none;
  967. outline-style:none;
  968. background:#ffffff;
  969. }
  970. .message-content-body-right:hover {
  971. }
  972. /**********************************************
  973. * DOCUMENT MODULE *
  974. **********************************************/
  975. /* styles from the document.php file */
  976. .comment {
  977. margin-left: 30px;
  978. }
  979. /* styles from the upload.php file */
  980. dl.upload_option {
  981. margin: 1em 0;
  982. padding: 0;
  983. }
  984. .upload_option dt {
  985. font-weight:bold;
  986. margin:0;
  987. }
  988. .upload_option dd {
  989. margin:0;
  990. }
  991. .document_owner {
  992. text-align: right;
  993. }
  994. /**********************************************
  995. * DROPBOX MODULE *
  996. **********************************************/
  997. /* styles from dropbox.php file */
  998. .dropbox_detail {
  999. font-size: small
  1000. }
  1001. .dropbox_date {
  1002. color: #737780;
  1003. font-style: italic;
  1004. font-weight: normal;
  1005. }
  1006. .dropbox_person {
  1007. font-weight: bold
  1008. }
  1009. .dropbox_listTitle {
  1010. color: #000000;
  1011. }
  1012. .dropbox_feedback {
  1013. font-size: x-small;
  1014. height: 50px;
  1015. width: 200px;
  1016. overflow: auto
  1017. }
  1018. .dropbox_feedbacks {
  1019. height: 250px;
  1020. width: 100%;
  1021. overflow: auto
  1022. }
  1023. /**********************************************
  1024. * CHAT MODULE *
  1025. **********************************************/
  1026. /* styles for chat / conference tools */
  1027. #chat_entermessage {
  1028. background-color: #D6E5FA;
  1029. border-top: 1px solid #4171B5;
  1030. padding: 5px;
  1031. margin: 0;
  1032. }
  1033. /* the following for the grayed out elements */
  1034. a.nobold:link, a.nobold:visited, a.nobold:active {
  1035. font-weight: normal;
  1036. color: #999;
  1037. margin: 0 0 0 25px;
  1038. }
  1039. a.nobold:hover {
  1040. font-weight: normal;
  1041. color: #999;
  1042. text-decoration: underline;
  1043. margin: 0 0 0 25px;
  1044. }
  1045. .note {
  1046. margin: 6px;
  1047. line-height: 14px;
  1048. background-color: #FFF089;
  1049. color: #4171B5;
  1050. border: 1px solid #4171B5;
  1051. padding: 4px;
  1052. }
  1053. .alternativeBgLight {
  1054. background-color: #f5f5f5;
  1055. border: 1px solid #4171B5;
  1056. border-collapse: collapse;
  1057. }
  1058. .alternativeBgDark {
  1059. background-color: #ccf;
  1060. border: 1px solid #4171B5;
  1061. border-collapse: collapse;
  1062. }
  1063. .myagendatoday {
  1064. background-color: #FFCA8D;
  1065. border-collapse: collapse;
  1066. color: #CC3300;
  1067. font-weight: bold;
  1068. }
  1069. /*****************************************************
  1070. * FORM STYLES *
  1071. *****************************************************/
  1072. div.row {
  1073. clear: both;
  1074. padding-top: 8px;
  1075. }
  1076. div.row div.form_header {
  1077. white-space: nowrap;
  1078. padding: 2px;
  1079. border: 1px solid #636363;
  1080. background-image: url(images/tab-repeat.png);
  1081. background-position:bottom;
  1082. color: #FFFFFF;
  1083. font-weight: bold;
  1084. }
  1085. div.row div.label {
  1086. float: left;
  1087. width: 18%;
  1088. text-align: right;
  1089. }
  1090. div.row div.formw {
  1091. width: 80%;
  1092. float:left;
  1093. }
  1094. [dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
  1095. float: left;
  1096. text-align: right;
  1097. }
  1098. [dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
  1099. float: right;
  1100. text-align: left;
  1101. }
  1102. span.form_required {
  1103. color: #f00;
  1104. }
  1105. span.form_error {
  1106. color: #f00;
  1107. font-size: x-small;
  1108. margin: 2px;
  1109. }
  1110. /*****************************************************
  1111. * DATA TABLE STYLES *
  1112. *****************************************************/
  1113. .cell_header {
  1114. background-color: #EEEEFF;
  1115. font-weight:bold;
  1116. text-align:left;
  1117. padding-left:5px;
  1118. } /* header cell in data table in tools */
  1119. .data_table {
  1120. border-collapse: collapse;
  1121. width: 100%;
  1122. padding: 5px;
  1123. margin-top: 5px;
  1124. margin-bottom: 5px;
  1125. }
  1126. .data_table th {
  1127. padding-right: 20px;
  1128. border: 1px solid #636363;
  1129. background-color: #f8b846;
  1130. color: #FFF;
  1131. }
  1132. .data_table th a {
  1133. color: #fff;
  1134. }
  1135. .data_table th a:hover {
  1136. color: #a8a7a7;
  1137. }
  1138. .data_table tr.row_odd {
  1139. background-color: #fafafa;
  1140. }
  1141. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  1142. background-color: #f0f0f0;
  1143. }
  1144. .data_table tr.row_even {
  1145. background-color: #fff;
  1146. }
  1147. .data_table td {
  1148. padding: 5px;
  1149. vertical-align: top;
  1150. border-bottom: 1px solid #b0b0b0;
  1151. border-right: 1px dotted #e1e1e1;
  1152. border-left: 1px dotted #e1e1e1;
  1153. }
  1154. .data_table td.border {
  1155. padding: 5px;
  1156. vertical-align: top;
  1157. border: 1px solid gray;
  1158. }
  1159. .data_table td.none {
  1160. padding: 5px;
  1161. vertical-align: top;
  1162. border-right:none;
  1163. border-bottom: none;
  1164. border-left:none;
  1165. }
  1166. .data_table td.redText {
  1167. color:red;
  1168. }
  1169. .data_table td.borderRight {
  1170. border-right:1px solid gray;
  1171. border-bottom: none;
  1172. border-left:none;
  1173. }
  1174. .data_table td.borderLeft {
  1175. border-left:1px solid gray;
  1176. border-bottom: none;
  1177. border-right:none;
  1178. }
  1179. .data_table td.noLink {
  1180. color: gray;
  1181. }
  1182. .data_table tr.tableName {
  1183. padding: 5px;
  1184. border: 1px solid gray;
  1185. background-color: #e6e6ff;
  1186. text-align:left;
  1187. }
  1188. .data_table tr.total {
  1189. padding: 5px;
  1190. border: 1px solid gray;
  1191. background-color: #ffffcc;
  1192. text-align:left;
  1193. }
  1194. .data_table th.head {
  1195. padding-right: 20px;
  1196. border: 1px solid gray;
  1197. background-color: #ffffcc;
  1198. }
  1199. /* admin page tool list definitions */
  1200. .tool_list dt {
  1201. font-weight: bold;
  1202. }
  1203. .tool_list dd {
  1204. margin: 0;
  1205. padding: 4px 0 0 10px;
  1206. }
  1207. /* divs for category list / platform news on home page */
  1208. .home_cats {
  1209. width: 45%;
  1210. float: left;
  1211. position: relative;
  1212. margin: 0;
  1213. padding: 0px;
  1214. padding-top: 8px;
  1215. background: #fff;
  1216. }
  1217. .home_news {
  1218. width: 45%;
  1219. float: right;
  1220. position: relative;
  1221. margin: 0;
  1222. padding: 0px;
  1223. padding-top: 8px;
  1224. background: #fff;
  1225. }
  1226. label.left {
  1227. float: left;
  1228. width: 15em;
  1229. margin: 0 0 0.5em 0;
  1230. }
  1231. form br {
  1232. clear: both;
  1233. }
  1234. /* Fix for alignment problem in IE-Win browsers */
  1235. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1236. * html .label {
  1237. margin-right: 10px;
  1238. }
  1239. * html .data {
  1240. height: 1%;
  1241. margin-left: 0;
  1242. }
  1243. /* End hide from IE5/mac */
  1244. .radio, .checkbox {
  1245. margin: 0;
  1246. padding: 0;
  1247. border: none;
  1248. background-color: transparent;
  1249. }
  1250. .required {
  1251. color: #f00;
  1252. font-weight: bold;
  1253. }
  1254. /* Admin section */
  1255. div.admin_section {
  1256. width: 40%;
  1257. float: left;
  1258. padding: 5px;
  1259. margin: 10px 20px;
  1260. min-height:200px;
  1261. }
  1262. div.admin_section h4 {
  1263. margin: 0;
  1264. border-bottom: 1px solid gray;
  1265. width: 100%;
  1266. }
  1267. /* Report section */
  1268. div.report_section {
  1269. width: 40%;
  1270. float: left;
  1271. padding: 5px;
  1272. margin: 10px 20px;
  1273. }
  1274. div.report_section h4 {
  1275. margin: 0;
  1276. border-bottom: 1px solid gray;
  1277. width: 100%;
  1278. }
  1279. .user_course_category {
  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. }
  1288. .sessions_list {
  1289. line-height: 20px;
  1290. margin-top: 20px;
  1291. }
  1292. .sessions_list_inactive {
  1293. line-height: 20px;
  1294. }
  1295. .session_box {
  1296. background-color: #efefef;
  1297. border: 1px solid #666;
  1298. font-weight: bold;
  1299. color: #666;
  1300. list-style-type: none;
  1301. margin: 5px 5px 5px 40px;
  1302. padding: 5px;
  1303. margin-bottom: 10px;
  1304. }
  1305. .session_box_title {
  1306. margin-bottom: 7px;
  1307. }
  1308. .session_box_coach {
  1309. }
  1310. .session_course_item {
  1311. /* padding: 0px; */
  1312. margin: 7px 0px;
  1313. }
  1314. .session_course_item .courses {
  1315. margin-bottom: 5px;
  1316. height:35px;
  1317. }
  1318. /***************************************************************
  1319. * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
  1320. ***************************************************************/
  1321. .sectiontitle {
  1322. background-color: #EFEFEF;
  1323. border: 1px solid #cccccc;
  1324. font-weight: bold;
  1325. color: #666666;
  1326. list-style-type: none;
  1327. padding: 5px;
  1328. font-size: 11px;
  1329. }
  1330. .sectioncomment {
  1331. color: #000000;
  1332. margin: 5px;
  1333. padding: 5px;
  1334. font-size: 11px;
  1335. }
  1336. .sectionvalue {
  1337. list-style-type: none;
  1338. margin: 5px;
  1339. padding: 5px;
  1340. }
  1341. /*****************************************************
  1342. * ANNOUNCEMENTS *
  1343. *****************************************************/
  1344. .announcements_datum {
  1345. font-style: italic;
  1346. color: #666666;
  1347. }
  1348. /*****************************************************
  1349. * SYSTEM ANNOUNCEMENTS *
  1350. *****************************************************/
  1351. div.system_announcements {
  1352. }
  1353. div.system_announcements h3 {
  1354. }
  1355. div.system_announcement {
  1356. margin: 5px;
  1357. }
  1358. div.system_announcement_title {
  1359. }
  1360. div.system_announcement_content {
  1361. margin-left: 20px;
  1362. border-left: 1px solid gray;
  1363. padding-left: 5px;
  1364. }
  1365. /*****************************************************
  1366. * THE NEW FORUM *
  1367. *****************************************************/
  1368. /* **** FORUM CATEGORY **** */
  1369. .forum_category {
  1370. background-color: #0066CC;
  1371. color: #fff;
  1372. }
  1373. .forum_category a {
  1374. color: #fff;
  1375. }
  1376. .forum_category_header {
  1377. background-color: #0066CC;
  1378. color: #fff;
  1379. }
  1380. tr.forum_category_header a {
  1381. color: #fff;
  1382. }
  1383. /* **** FORUM **** */
  1384. .forum_header {
  1385. background-color: #EFEFEF;
  1386. }
  1387. /* **** THREAD **** */
  1388. .forum_threadheader {
  1389. color: #aaa;
  1390. background-color: #F7F7F7;
  1391. }
  1392. tr.forum_threadheader td {
  1393. }
  1394. .forum-thread-header {
  1395. color: #000000;
  1396. background-color: #F7F7F7;
  1397. border-left: 1px solid #aaa;
  1398. border-right: 1px solid #aaa;
  1399. border-bottom: 1px solid #aaa;
  1400. border-top: 1px solid #aaa;
  1401. }
  1402. .forum-thread-body {
  1403. color: #000000;
  1404. background-color: #FFFFFF;
  1405. border-left: 1px solid #aaa;
  1406. border-right: 1px solid #aaa;
  1407. border-bottom: 1px solid #aaa;
  1408. border-top: 1px solid #aaa;
  1409. }
  1410. /* **** POST **** */
  1411. .quote {
  1412. background-color: #EFEFEF;
  1413. }
  1414. .forum_message_left {
  1415. width: 150px;
  1416. vertical-align: top;
  1417. border-right: 1px solid #aaa;
  1418. background-color: #F7F7F7;
  1419. }
  1420. .forum_message_left_2_be_approved {
  1421. width: 150px;
  1422. vertical-align: top;
  1423. border-right: 1px solid #aaa;
  1424. background-color: #F7F7F7;
  1425. color: #999;
  1426. }
  1427. .forum_message_post_title {
  1428. font-weight: bold;
  1429. background-color: #F7F7F7;
  1430. height: 20px;
  1431. }
  1432. .forum_message_post_title_2_be_approved {
  1433. color: #999;
  1434. font-weight: bold;
  1435. background-color: #F7F7F7;
  1436. height: 20px;
  1437. }
  1438. .forum_message_post_text {
  1439. margin-bottom: 10px;
  1440. vertical-align: top;
  1441. }
  1442. .forum_message_post_text_2_be_approved {
  1443. color: #999;
  1444. margin-bottom: 10px;
  1445. vertical-align: top;
  1446. }
  1447. .current {
  1448. font-weight: bold;
  1449. }
  1450. .structure {
  1451. font-weight: bold;
  1452. background-color: #F7F7F7;
  1453. height: 20px;
  1454. }
  1455. a.forum_group_link {
  1456. font-weight: lighter;
  1457. display:inline;
  1458. }
  1459. .forum_description {
  1460. color: #000;
  1461. font-weight: normal;
  1462. }
  1463. .forum_title {
  1464. color: #000;
  1465. font-size: 14px;
  1466. }
  1467. .forum_low_description {
  1468. color: #737780;
  1469. font-style: italic;
  1470. font-weight: normal;
  1471. }
  1472. .forum_attach_comment {
  1473. color: #737780;
  1474. font-style: italic;
  1475. font-weight: normal;
  1476. }
  1477. /* **** BLOG **** */
  1478. span.blog_title {
  1479. font-size: 18px;
  1480. font-weight: bold;
  1481. color: #1657A9;
  1482. }
  1483. span.blog_subttitle {
  1484. }
  1485. td.blog_left {
  1486. margin-right: 5px;
  1487. padding-right: 5px;
  1488. border-right: 1px solid #dddddd;
  1489. }
  1490. td.blog_right {
  1491. padding-left: 10px;
  1492. }
  1493. td.blog_menu_title {
  1494. background-color: #dddddd;
  1495. color: #1657A9;
  1496. font-weight: bold;
  1497. font-size: 11px;
  1498. padding: 2px;
  1499. }
  1500. td.blog_menu {
  1501. border-bottom: 1px dashed #dddddd;
  1502. border-right: 1px dashed #dddddd;
  1503. border-left: 1px dashed #dddddd;
  1504. padding: 10px;
  1505. }
  1506. td.blog_menu ul {
  1507. margin-top: 0;
  1508. margin-right: 0;
  1509. margin-bottom: 0;
  1510. margin-left: 15px;
  1511. padding: 0;
  1512. }
  1513. td.blog_menu ul li {
  1514. }
  1515. span.blogpost_title {
  1516. display: block;
  1517. font-size: 18px;
  1518. font-weight: bold;
  1519. color: #1657A9;
  1520. padding-bottom: 5px;
  1521. }
  1522. span.blogpost_date {
  1523. display: block;
  1524. font-weight: bold;
  1525. color: #333333;
  1526. padding-bottom: 10px;
  1527. }
  1528. span.blogpost_info {
  1529. display: block;
  1530. color: #333333;
  1531. border-top: 1px solid #dddddd;
  1532. margin-top: 5px;
  1533. }
  1534. table.newBlog {
  1535. border: 1px solid #dddddd;
  1536. margin-bottom: 10px;
  1537. margin-top: 10px;
  1538. padding: 10px;
  1539. background-color: #f6f6f6;
  1540. }
  1541. table.newTask {
  1542. border: 1px solid #dddddd;
  1543. margin-bottom: 10px;
  1544. margin-top: 10px;
  1545. padding: 10px;
  1546. background-color: #f6f6f6;
  1547. }
  1548. table.new_comment {
  1549. border: 1px solid #dddddd;
  1550. margin-bottom: 10px;
  1551. margin-top: 10px;
  1552. padding: 10px;
  1553. background-color: #F4F4F4;
  1554. }
  1555. div.blogpost_comment {
  1556. border-top: 1px dashed #dddddd;
  1557. border-right: 1px dashed #dddddd;
  1558. border-bottom: 1px dashed #dddddd;
  1559. border-left: 1px dashed #dddddd;
  1560. margin-bottom: 10px;
  1561. padding: 10px;
  1562. background-color: white;
  1563. }
  1564. span.blogpost_comment_title {
  1565. display: block;
  1566. font-size: 14px;
  1567. font-weight: bold;
  1568. color: #1657A9;
  1569. padding-bottom: 5px;
  1570. }
  1571. span.blogpost_comment_date {
  1572. display: block;
  1573. font-size: 10px;
  1574. font-weight: bold;
  1575. color: #333333;
  1576. padding-bottom: 10px;
  1577. }
  1578. span.blogpost_comment_info {
  1579. font-size: 10px;
  1580. display: block;
  1581. color: #333333;
  1582. border-top: 1px solid #dddddd;
  1583. margin-top: 10px;
  1584. }
  1585. div.blogpost {
  1586. border: 1px solid #DDDDDD;
  1587. background-color: #ECECEC;
  1588. margin-bottom: 15px;
  1589. padding: 10px;
  1590. }
  1591. div.comments {
  1592. border: 1px solid #dddddd;
  1593. margin-bottom: 10px;
  1594. margin-top: 10px;
  1595. padding: 10px;
  1596. background-color: #F4F4F4;
  1597. }
  1598. .attachment_comment {
  1599. color: #737780;
  1600. font-style: italic;
  1601. font-weight: normal;
  1602. }
  1603. .link {
  1604. text-decoration: none;
  1605. font-weight : bold;
  1606. color : #1657A9;
  1607. cursor: pointer
  1608. }
  1609. .link:hover {
  1610. text-decoration: none;
  1611. color: #abd9f1;
  1612. font-weight: bold;
  1613. cursor: pointer
  1614. }
  1615. /*****************************************************
  1616. * INSTALLATION *
  1617. *****************************************************/
  1618. #installation_steps {
  1619. float:left;
  1620. background-color: #EFEFEF;
  1621. }
  1622. .current_step {
  1623. font-weight: bold;
  1624. }
  1625. .RequirementHeading {
  1626. margin-right:10px;
  1627. }
  1628. .RequirementHeading h1 {
  1629. color:#0066CC;
  1630. font-size:1.2em;
  1631. font-weight: bold;
  1632. border-bottom: 1px solid #0066CC;
  1633. }
  1634. .RequirementText {
  1635. color:#666;
  1636. font-size:1.0em;
  1637. font-weight: normal;
  1638. float:right;
  1639. width:200px;
  1640. }
  1641. .RequirementContent {
  1642. color:#000;
  1643. font-size:1.0em;
  1644. font-weight: normal;
  1645. }
  1646. .RequirementContent table {
  1647. border: 1px solid #ccc;
  1648. width: 400px;
  1649. }
  1650. .RequirementContent table th {
  1651. border-bottom: 1px solid #ccc;
  1652. text-align: left;
  1653. }
  1654. .requirements-item {
  1655. width: 50%;
  1656. background-color:#f7f7f7;
  1657. padding-left:2px;
  1658. }
  1659. .requirements-value {
  1660. }
  1661. /************************************************************
  1662. styles below here are not necessarily used in the current
  1663. release and the CVS files, they are from earlier versions,
  1664. and have been left untouched for anyone needing them in
  1665. their own platform ...
  1666. *************************************************************/
  1667. .topBanner a:link, .topBanner a:active, .topBanner a:visited {
  1668. text-decoration:none;
  1669. color:white;
  1670. }
  1671. .topBanner table {
  1672. text-decoration:none;
  1673. }
  1674. .topBanner a:hover {
  1675. text-decoration:underline;
  1676. }
  1677. .topBanner td {
  1678. border-top: solid White 1px;
  1679. }
  1680. .alternativeBgLight {
  1681. background-color: #f5f5f5;
  1682. }
  1683. .alternativeBgDark {
  1684. background-color: #e6e6e6
  1685. }
  1686. .forms {
  1687. letter-spacing: normal;
  1688. text-align: justify;
  1689. text-indent: 3pt;
  1690. word-spacing: normal;
  1691. padding: 2px 5px;
  1692. }
  1693. .formsTips {
  1694. text-align: justify;
  1695. text-indent: 15pt;
  1696. word-spacing: normal;
  1697. }
  1698. .warn {
  1699. border: thin double Silver;
  1700. margin-left: 15px;
  1701. margin-right: 15px;
  1702. color: Red;
  1703. padding-left: 25px;
  1704. }
  1705. .small {
  1706. font-size: 11px
  1707. }
  1708. .xsmall {
  1709. font-size: 11px
  1710. }
  1711. .xxsmall {
  1712. font-size: 9px
  1713. }
  1714. /*
  1715. * TABBED INTERFACE
  1716. */
  1717. #tabbed_menu {
  1718. width: 100%;
  1719. height: 20px;
  1720. border-bottom-width: 1px;
  1721. border-bottom-style: solid;
  1722. border-bottom-color: #666666;
  1723. margin-bottom: 20px;
  1724. }
  1725. #tabbed_menu #tabbed_menu_tabs li {
  1726. margin: 0px 10px;
  1727. padding: 0px;
  1728. display: inline;
  1729. list-style-type: none;
  1730. }
  1731. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  1732. float: left;
  1733. background: #f3f3f3;
  1734. font-weight: bold;
  1735. padding: 2px 10px 2px 10px;
  1736. margin-right: 4px;
  1737. border: 1px solid #cccccc;
  1738. border-bottom: 1px solid #666666;
  1739. text-decoration: none;
  1740. color: #666;
  1741. }
  1742. #tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
  1743. border: 1px solid #666666;
  1744. border-bottom: 1px solid #fff;
  1745. background: #fff;
  1746. color: #000;
  1747. }
  1748. .skip {
  1749. display: none;
  1750. }
  1751. #WCAG-editor {
  1752. border: 1px #DCDCDC solid;
  1753. background-color: #F0F0F0;
  1754. width: 100%;
  1755. }
  1756. #WCAG-editor .title {
  1757. padding: 2px;
  1758. background-color: #DCDCDC;
  1759. text-align: center;
  1760. color: #000000;
  1761. font-weight: bold;
  1762. }
  1763. #WCAG-editor .body {
  1764. padding-top: 5px;
  1765. padding-left: 5px;
  1766. padding-right: 13px;
  1767. padding-bottom: 5px;
  1768. }
  1769. #WCAG-editor textarea {
  1770. margin-left: 0px;
  1771. margin-right: 0px;
  1772. width: 100%;
  1773. height: 180px;
  1774. border: 1px #DCDCDC solid;
  1775. }
  1776. #WCAG-editor input {
  1777. width: 100%;
  1778. }
  1779. /* don't work on IE 6 */
  1780. #WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
  1781. width: auto;
  1782. }
  1783. /* only for IE6 */
  1784. #WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
  1785. width: auto;
  1786. }
  1787. #WCAG-content img {
  1788. float: left;
  1789. margin-right: 5px;
  1790. margin-bottom: 5px;
  1791. }
  1792. #WCAG-content p {
  1793. text-align: justify;
  1794. }
  1795. /* hack for IE < 7 */
  1796. #course_description input {
  1797. width: auto;
  1798. }
  1799. #course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
  1800. width: 100%;
  1801. }
  1802. .WCAG-form textarea {
  1803. width: 100%;
  1804. height: 180px;
  1805. }
  1806. /*
  1807. ------------------------------------------------------------------------------
  1808. OTHERS
  1809. ------------------------------------------------------------------------------
  1810. */
  1811. .input_titles {
  1812. width: 300px;
  1813. }
  1814. /*
  1815. ------------------------------------------------------------------------------
  1816. Survey
  1817. ------------------------------------------------------------------------------
  1818. */
  1819. #survey_title {
  1820. background-color:#264269;
  1821. color:#FFF;
  1822. padding:2px;
  1823. border: 1px solid #264269;
  1824. }
  1825. #survey_subtitle {
  1826. background-color:#264269;
  1827. color:#FFF;
  1828. padding:2px;
  1829. border: 1px solid #264269;
  1830. }
  1831. .survey_content {
  1832. background-color:#EFEFEF;
  1833. color:#264269;
  1834. padding:5px;
  1835. border: 1px solid #264269;
  1836. }
  1837. .survey_question_wrapper {
  1838. border: 1px solid #4271b5;
  1839. }
  1840. .survey_question {
  1841. background-color:#4271b5;
  1842. color:#FFFFFF;
  1843. padding:5px;
  1844. }
  1845. .survey_question_options {
  1846. background-color:#FFF;
  1847. color:#000;
  1848. padding:5px;
  1849. }
  1850. .survey_export_link {
  1851. float: right;
  1852. }
  1853. /*
  1854. ------------------------------------------------------------------------------^M
  1855. sessions
  1856. ------------------------------------------------------------------------------^M
  1857. */
  1858. #ajax_list_coachs {
  1859. position:absolute;
  1860. border:1px solid #4171B5;
  1861. margin:0px;
  1862. padding:0px;
  1863. margin-left:200px;
  1864. margin-top:-23px;
  1865. background-color:#FFFFFF;
  1866. height:auto;
  1867. overflow:auto;
  1868. }
  1869. #ajax_list_courses {
  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. #ajax_list_users {
  1880. position:absolute;
  1881. border:1px solid #4171B5;
  1882. margin:0px;
  1883. padding:0px;
  1884. margin-left:200px;
  1885. background-color:#FFFFFF;
  1886. height:auto;
  1887. overflow:auto;
  1888. }
  1889. #chat_login_name {
  1890. color : #4171b5;
  1891. }
  1892. /* Quizzes tool */
  1893. .quiz_export_link {
  1894. float: right;
  1895. }
  1896. /*Exercice timer*/
  1897. #square{
  1898. padding:5px;
  1899. background-color:#EEEEEE;
  1900. border:1px solid #CCCCCC;
  1901. margin-right : 24px;
  1902. width : 155px;margin-bottom:5px;
  1903. }
  1904. #wrapper-clock{
  1905. width:100%;
  1906. margin:0;
  1907. }
  1908. .count_down{
  1909. padding: 3px;
  1910. font-family:Georgia, "Times New Roman", Times, serif;
  1911. font-size:22px;
  1912. font-weight:bold;
  1913. color:#222;
  1914. }
  1915. .count_down sup{
  1916. font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
  1917. font-size:12px;
  1918. color:#555;
  1919. padding:0px 10px 0 0;
  1920. font-weight:normal;
  1921. }
  1922. /*
  1923. ------------------------------------------------------------------------------
  1924. Learning path
  1925. ------------------------------------------------------------------------------
  1926. */
  1927. #show_audiorecorder_div {
  1928. background:#F0F0F0;
  1929. border:1px solid #999999;
  1930. font-weight:bold;
  1931. padding:2px;
  1932. width:350px;
  1933. }
  1934. /* Glossary tool */
  1935. .glossary-term {
  1936. margin: 1em;
  1937. background-color: #ffe99b;
  1938. padding: 0.5em 0.5em 1.8em 0;
  1939. -moz-border-radius: 0.5em;
  1940. }
  1941. .glossary-term-title {
  1942. margin: 2em 0 1em 0.5em;
  1943. font-weight: bold;
  1944. font-size: 120%;
  1945. }
  1946. .glossary-term-desc {
  1947. margin-left: 1em;
  1948. }
  1949. .glossary-term-action-links {
  1950. float: right;
  1951. }
  1952. .glossary-term-edit-form {
  1953. margin: 1em;
  1954. background-color: #FFE4C4;
  1955. padding: 0.5em 0.5em 2em 0;
  1956. -moz-border-radius: 0.5em;
  1957. }
  1958. .glossary-term-edit-desc {
  1959. font-weight: bold;
  1960. font-size: 120%;
  1961. }
  1962. .glossary-term-edit-title {
  1963. font-weight: bold;
  1964. font-size: 120%;
  1965. }
  1966. .glossary-add-form {
  1967. font-weight: bold;
  1968. font-size: 120%;
  1969. margin: 1em;
  1970. }
  1971. .glossary-orderby-link {
  1972. float:right;
  1973. margin: 1em;
  1974. }
  1975. .glossary-msg-error {
  1976. color: #FF0000;
  1977. display :none;
  1978. font-weight: normal;
  1979. font-size: 80%;
  1980. }
  1981. /* Notebook */
  1982. .notebook-add-form {
  1983. margin: 1em;
  1984. background-color: #c3d9ff;
  1985. padding: 1em 1em;
  1986. }
  1987. .notebook-add-desc-textarea {
  1988. background-color: #f2f5f8;
  1989. border-color: #ffe99b;
  1990. overflow: hidden;
  1991. }
  1992. .notebook-add-title-text {
  1993. background-color: #f2f5f8;
  1994. border-color: #ffe99b;
  1995. }
  1996. .notebook-edit-desc-textarea {
  1997. background-color: #e0ecff;
  1998. border-color: #ffe99b;
  1999. overflow: hidden;
  2000. }
  2001. .notebook-edit-title-text {
  2002. background-color: #e0ecff;
  2003. border-color: #ffe99b;
  2004. }
  2005. .notebook-msg-error {
  2006. color: #FF0000;
  2007. display :none;
  2008. background-color: #ffe99b;
  2009. width: 40%;
  2010. }
  2011. .notebook-list {
  2012. margin: 1em 1em 0em 1em;
  2013. background-color: #79b;
  2014. padding: 0.3em 0.3em;
  2015. -moz-border-radius: 0.5em;
  2016. }
  2017. .notebook-title-list {
  2018. color : #fff;
  2019. padding: 0.3em 0.3em;
  2020. font-weight: bold;
  2021. font-size: 120%;
  2022. }
  2023. .notebook-desc-list {
  2024. margin: 0em;
  2025. background-color: #f2f5f8;
  2026. padding: 0.5em 0.3em 2em 0.3em;
  2027. border: 1px solid #79b;
  2028. }
  2029. .notebook-term-action-links {
  2030. padding: 0.3em 0.3em;
  2031. width: 50%;
  2032. color : #fff;
  2033. }
  2034. .notebook-orderby-link {
  2035. text-align:right;
  2036. margin-right: 1em;
  2037. }
  2038. .notebook-search-title {
  2039. text-align:right;
  2040. margin: 1em;
  2041. }
  2042. .notebook-date-information {
  2043. color : #fff;
  2044. padding: 0.3em;
  2045. font-size: 120%;
  2046. font-weight: bold;
  2047. }
  2048. /* Gradebook */
  2049. .resource-deleted {
  2050. color:#990000;
  2051. }
  2052. .gradebook-table-header {
  2053. border: 1px solid rgb(153, 153, 153);
  2054. background: rgb(240, 240, 240) none repeat scroll 0% 0%;
  2055. }
  2056. .gradebook-table-body {
  2057. border: 1px solid rgb(153, 153, 153);
  2058. background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  2059. }
  2060. /* actions */
  2061. .actions_lp {
  2062. background:#F8F8F8;
  2063. height:29px;
  2064. padding-left: -17px;
  2065. margin: 5px 2px 1px 12px;
  2066. vertical-align:middle;
  2067. width: 90%;
  2068. }
  2069. .actions_lp img {
  2070. vertical-align:middle;
  2071. }
  2072. .actions_lp a {
  2073. margin-right: 10px;
  2074. vertical-align:middle;
  2075. }
  2076. .actions_lp span {
  2077. margin-right: 10px;
  2078. vertical-align:middle;
  2079. }
  2080. .actions_lp form {
  2081. margin-right: 10px;
  2082. vertical-align:middle;
  2083. }
  2084. .actions {
  2085. background:#efefef;
  2086. border-bottom:1px dotted #f8b846;
  2087. border-top:1px dotted #f8b846;
  2088. padding:2px;
  2089. margin-bottom: 5px;
  2090. vertical-align:middle;
  2091. }
  2092. .actions img {
  2093. /*display:inline-block;*/
  2094. border: none;
  2095. text-decoration: none;
  2096. background-color: #efefef;
  2097. padding-right: 5px;
  2098. vertical-align:middle;
  2099. }
  2100. .actions a {
  2101. display:inline-block;
  2102. margin-right: 10px;
  2103. vertical-align:middle;
  2104. }
  2105. .actions span {
  2106. margin-right: 10px;
  2107. vertical-align:middle;
  2108. }
  2109. .actions form {
  2110. margin-right: 10px;
  2111. vertical-align:middle;
  2112. }
  2113. /* big actions */
  2114. .actionsbig {
  2115. background:#F8F8F8;
  2116. border-bottom:1px solid #999999;
  2117. border-top:1px solid #999999;
  2118. background-color:#efefef;
  2119. height:100%;
  2120. padding:2px;
  2121. margin-bottom: 5px;
  2122. vertical-align:middle;
  2123. float:left;
  2124. width:100%;
  2125. }
  2126. .actionsbig a {
  2127. float:left;
  2128. padding-left:12px;
  2129. padding-right:12px;
  2130. text-align:center;
  2131. }
  2132. .actions img {
  2133. vertical-align:middle;
  2134. }
  2135. .actions a {
  2136. margin-right: 10px;
  2137. vertical-align:middle;
  2138. }
  2139. .actions-title {
  2140. background:#efefef;
  2141. border-bottom:1px dotted #999999;
  2142. border-top:1px dotted #999999;
  2143. padding:4px;
  2144. margin-bottom: 5px;
  2145. font-size:14px;
  2146. font-weight:bolder;
  2147. vertical-align:middle;
  2148. }
  2149. /**********************************************
  2150. * MESSAGE TOOL *
  2151. **********************************************/
  2152. .message_view_table {
  2153. cellspacing:0;
  2154. cellpadding:0;
  2155. background-color:#dbeaf5;
  2156. border=0;
  2157. border-collapse: collapse;
  2158. width: 100%;
  2159. }
  2160. .message_view_table th {
  2161. padding-right: 12px;
  2162. border: 1px solid gray;
  2163. background-color: #f0f0f0;
  2164. }
  2165. .message-select-box {
  2166. float:left;
  2167. display:inline;
  2168. position:absolute;
  2169. margin-top:23px;
  2170. margin-left:20px;
  2171. }
  2172. /* styles from the my.profile.php file */
  2173. .message-content {
  2174. float:right;
  2175. margin:20px auto;
  2176. background:#F5E38E;
  2177. border:2px solid #EBCA4F;
  2178. padding:10px;
  2179. width:200px;
  2180. position:relative;
  2181. }
  2182. .message-content .message-delete {
  2183. position: absolute;
  2184. top: 10px;
  2185. right: 10px;
  2186. cursor: pointer;
  2187. }
  2188. .message-content-internal {
  2189. display:inline;
  2190. margin:20px auto;
  2191. background:#F5E38E;
  2192. border:2px solid #EBCA4F;
  2193. padding:10px;
  2194. width:100px;
  2195. position:relative;
  2196. margin-top:150px;
  2197. margin-right:-100px;
  2198. }
  2199. .message-title {
  2200. color:#ff0000;
  2201. font-size:15px;
  2202. }
  2203. .message-body {
  2204. font-size:11px;
  2205. padding: 0 0 11px;
  2206. color:#333;
  2207. }
  2208. .message-link {
  2209. color:#ff8400;
  2210. }
  2211. .message-view {
  2212. float:right;
  2213. margin:20px auto;
  2214. background:#F5E38E;
  2215. border:2px solid #EBCA4F;
  2216. padding:10px;
  2217. width:100px;
  2218. position:relative;
  2219. margin-top:115px;
  2220. margin-right:-100px;
  2221. }
  2222. .message-content-table {
  2223. background-color:white;
  2224. border:1px solid black;
  2225. position:absolute;
  2226. width:200px;
  2227. height:60px;
  2228. z-index:3;
  2229. visibility:hidden;
  2230. top:85px;
  2231. left:10px;
  2232. margin: 0px;
  2233. padding: 0px;
  2234. }
  2235. /*SOCIAL TOOL*/
  2236. div.image-social-content {
  2237. float:left;
  2238. border:1px solid #B8C8DC;
  2239. margin:2px;
  2240. padding: 8px 4px 4px 4px;
  2241. background: #ffffff;
  2242. height:125px;
  2243. width:82px;
  2244. z-index:5;
  2245. cursor:pointer;
  2246. position:relative;
  2247. }
  2248. div.image-social-content span {
  2249. overflow:hidden;
  2250. display:block;
  2251. height:92px;
  2252. }
  2253. div.image-social-content img {
  2254. vertical-align:middle;
  2255. }
  2256. div.image-social-content center.friend {
  2257. overflow:hidden;
  2258. height:30px;
  2259. }
  2260. .image-social-content .image-delete {
  2261. position: absolute;
  2262. top: 1px;
  2263. right: 1px;
  2264. cursor: pointer;
  2265. }
  2266. .social-info {
  2267. background:#B8C8DC;
  2268. color:#4475B0;
  2269. font-size:12px;
  2270. font-weight:bold;
  2271. }
  2272. .social-display-image {
  2273. float:right;
  2274. margin-top:-130px;
  2275. margin-right:5px;
  2276. }
  2277. .social-search-image {
  2278. color:#000033;
  2279. margin-top:2px;
  2280. border-bottom:1px solid #6B6262;
  2281. border-left:1px solid #6B6262;
  2282. border-right:1px solid #6B6262;
  2283. border-top:1px solid #6B6262;
  2284. width:250px;
  2285. }
  2286. .social-subtitle-search {
  2287. background:#ffffff;
  2288. border-top:1px #9DACBF solid;
  2289. border-bottom:1px #9DACBF solid;
  2290. }
  2291. .social-align-box {
  2292. text-align:left;
  2293. float:left;
  2294. }
  2295. .social-content-description {
  2296. background:#ECE9D8;
  2297. }
  2298. .social-content-body {
  2299. background:#ffffff;
  2300. }
  2301. .social-content-table {
  2302. border-top:1px #9DACBF solid;
  2303. border-left:1px #9DACBF solid;
  2304. border-right:1px #9DACBF solid;
  2305. border-bottom:1px #9DACBF solid;
  2306. }
  2307. .social-profile-info dt {
  2308. text-align:left;
  2309. clear:left;
  2310. color:#808080;
  2311. float:left;
  2312. width:100px;
  2313. }
  2314. .social-profile-info dd {
  2315. padding:1px 0px 3px 0px;
  2316. float:left;
  2317. margin:0;
  2318. display : block;
  2319. padding-left:10px;
  2320. width:200px;
  2321. }
  2322. /* general layout of the profile page */
  2323. #social-profile-wrapper {
  2324. width: 100%;
  2325. text-align:left;
  2326. margin:0 auto;
  2327. float: left;
  2328. }
  2329. #social-profile-container {
  2330. /* width: 705px; */
  2331. }
  2332. #social-profile-left {
  2333. float:left;
  2334. width:22%;
  2335. }
  2336. #social-profile-content {
  2337. float:right;
  2338. width:47%;
  2339. margin-left: 4px;
  2340. }
  2341. #social-profile-right {
  2342. float:right;
  2343. width:30%;
  2344. margin-left: 4px;
  2345. }
  2346. /*****************************************************
  2347. * BUTTONS *
  2348. *****************************************************/
  2349. /* BUTTONS */
  2350. button,input[type="submit"] {
  2351. margin:5px 5px 3px 0px !important;
  2352. background-color: #a8a7a7;
  2353. border-width: 1px;
  2354. -moz-border-radius-topright : 5px;
  2355. -moz-border-radius-topleft : 5px;
  2356. -moz-border-radius-bottomright : 5px;
  2357. -moz-border-radius-bottomleft : 5px;
  2358. font-size: 100%;
  2359. text-decoration: none;
  2360. color: black;
  2361. cursor: pointer;
  2362. padding:5px 15px 5px 15px;
  2363. vertical-align:middle;
  2364. }
  2365. button:hover input[type="submit"]:hover {
  2366. background-color:#a8a7a7;
  2367. color:#545454;
  2368. border-style: inset;
  2369. }
  2370. /* button with image */
  2371. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
  2372. padding-left:30px;
  2373. background-position:10px;
  2374. background-repeat:no-repeat;
  2375. }
  2376. /* POSITIVE */
  2377. button.save, button.add, button.search, button.refresh, button.upload, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
  2378. background-color:#E5EDF9;
  2379. border-color: #D4E2F6;
  2380. }
  2381. 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, input[type="submit"].submit_next:hover {
  2382. border-color: #D4E2F6;
  2383. background-color:#D4E2F6;
  2384. }
  2385. /* NEGATIVE */
  2386. button.cancel {
  2387. background-color:#F8E8E6;
  2388. border-color: #FFE3DE;
  2389. }
  2390. button.cancel:hover {
  2391. border-color: #F4E1D0;
  2392. background-color: #FFE3DE;
  2393. }
  2394. /*including "save" image*/
  2395. button.save {
  2396. background-image:url(images/button_accept.gif);
  2397. }
  2398. /*including "add" image*/
  2399. button.add {
  2400. background-image:url(images/button_add.gif);
  2401. }
  2402. /*including "cancel" image*/
  2403. button.cancel {
  2404. background-image:url(images/button_delete.gif);
  2405. }
  2406. /*including "search" image*/
  2407. button.search {
  2408. background-image:url(images/button_search.gif);
  2409. }
  2410. /*including "login" image*/
  2411. button.login {
  2412. background-image:url(images/button_login.gif);
  2413. margin:2px 5px 3px 5px !important;
  2414. }
  2415. /*including "plus" image*/
  2416. button.plus {
  2417. background-image:url(images/button_plus.gif);
  2418. }
  2419. /*including "minus" image*/
  2420. button.minus {
  2421. background-image:url(images/button_minus.gif);
  2422. }
  2423. /*including "next" image*/
  2424. button.next,input[type="submit"].submit_next {
  2425. background-image:url(images/button_next.gif);
  2426. }
  2427. /*including "back" image*/
  2428. button.back {
  2429. background-image:url(images/button_back.gif);
  2430. }
  2431. /*including "refresh" image*/
  2432. button.refresh {
  2433. background-image:url(images/button_refresh.gif);
  2434. }
  2435. /*including "upload" image*/
  2436. button.upload {
  2437. background-image:url(images/button_upload.gif);
  2438. }
  2439. .icon_image_content {
  2440. width:70px;
  2441. height:5em;
  2442. text-align: center;
  2443. padding-top: 3px;
  2444. padding-right: 5x;
  2445. padding-bottom: 3px;
  2446. padding-left: 5px;
  2447. }
  2448. .question_menu {
  2449. list-style:none;
  2450. float:left;
  2451. }
  2452. .question_menu li {
  2453. float:left;
  2454. margin:0px;
  2455. }
  2456. #exercise_admin {
  2457. margin: 0;
  2458. padding: 0;
  2459. border: 0;
  2460. }
  2461. div#friend-header {
  2462. float:left;
  2463. width:100%;
  2464. line-height: 2.1em;
  2465. }
  2466. div#friend-header a {
  2467. padding-right:6px;
  2468. }
  2469. div#friend-container {
  2470. float:left;
  2471. }
  2472. div.image_friend_network {
  2473. float:left;
  2474. border:1px solid #CCCCCC;
  2475. margin:2px;
  2476. padding:4px;
  2477. background: #EFEFEF;
  2478. height:125px;
  2479. width:81px;
  2480. z-index:5;
  2481. }
  2482. div.image_friend_network span {
  2483. overflow:hidden;
  2484. display:block;
  2485. height:92px;
  2486. margin: 0px 0px;
  2487. }
  2488. div.image_friend_network img {
  2489. vertical-align:middle;
  2490. }
  2491. div.image_friend_network center.friend {
  2492. overflow:hidden;
  2493. height:30px;
  2494. }
  2495. .friend_invitations {
  2496. float:left;
  2497. margin: 0 0 4px 12px;
  2498. }
  2499. /* button >> */
  2500. button.arrowr {
  2501. -moz-border-radius-topleft : 5px;
  2502. -moz-border-radius-bottomright : 5px;
  2503. -moz-border-radius-bottomleft : 5px;
  2504. -moz-border-radius-topright : 5px;
  2505. padding-left:20px;
  2506. padding-top:20px;
  2507. background-position:10px;
  2508. background-color:#E5EDF9;
  2509. border-color: #D4E2F6;
  2510. border-width: 1px;
  2511. display:block;
  2512. font-size: 100%;
  2513. line-height :130%;
  2514. vertical-align:middle;
  2515. }
  2516. /*including "arrowr" image*/
  2517. button.arrowr {
  2518. background-image:url(images/2rightarrow.gif);
  2519. background-repeat:no-repeat;
  2520. }
  2521. /* button << */
  2522. button.arrowl {
  2523. margin:0px;
  2524. -moz-border-radius-topleft : 5px;
  2525. -moz-border-radius-bottomright : 5px;
  2526. -moz-border-radius-bottomleft : 5px;
  2527. -moz-border-radius-topright : 5px;
  2528. padding-left:20px;
  2529. padding-top:20px;
  2530. background-position:10px;
  2531. background-color:#E5EDF9;
  2532. border-color: #D4E2F6;
  2533. border-width: 1px;
  2534. display:block;
  2535. font-size: 100%;
  2536. line-height :130%;
  2537. vertical-align:middle;
  2538. }
  2539. /*including "arrowl" image*/
  2540. button.arrowl {
  2541. background-image:url(images/2leftarrow.gif);
  2542. background-repeat:no-repeat;
  2543. }
  2544. /* input >> */
  2545. input.arrowr {
  2546. -moz-border-radius-topleft : 5px;
  2547. -moz-border-radius-bottomright : 5px;
  2548. -moz-border-radius-bottomleft : 5px;
  2549. -moz-border-radius-topright : 5px;
  2550. padding-left:25px;
  2551. padding-top:20px;
  2552. background-position:10px;
  2553. background-color:#E5EDF9;
  2554. border-color: #D4E2F6;
  2555. border-width: 1px;
  2556. display:block;
  2557. font-size: 100%;
  2558. line-height :130%;
  2559. vertical-align:middle;
  2560. background-image:url(images/2rightarrow.gif);
  2561. background-repeat:no-repeat;
  2562. }
  2563. /* input << */
  2564. input.arrowl {
  2565. margin:0px;
  2566. -moz-border-radius-topleft : 5px;
  2567. -moz-border-radius-bottomright : 5px;
  2568. -moz-border-radius-bottomleft : 5px;
  2569. -moz-border-radius-topright : 5px;
  2570. padding-right:25px;
  2571. padding-top:20px;
  2572. background-position:10px;
  2573. background-color:#E5EDF9;
  2574. border-color: #D4E2F6;
  2575. border-width: 1px;
  2576. display:block;
  2577. font-size: 100%;
  2578. line-height :130%;
  2579. vertical-align:middle;
  2580. background-image:url(images/2leftarrow.gif);
  2581. background-repeat:no-repeat;
  2582. }
  2583. .u-m-answer {
  2584. float:left;
  2585. width:100%;
  2586. }
  2587. .u-m-answer p {
  2588. margin:2px;
  2589. }
  2590. .refresh {
  2591. background-image:url(images/refresh.png);
  2592. background-repeat:no-repeat;
  2593. padding-left:20px;
  2594. padding-bottom:2px;
  2595. }
  2596. .portal {
  2597. background-image:url(images/portal.png);
  2598. background-repeat:no-repeat;
  2599. padding-left:28px;
  2600. padding-bottom:10px;
  2601. padding-top:8px;
  2602. }
  2603. .legal-terms {
  2604. height:150px;
  2605. overflow:auto;
  2606. background-color:#eee;
  2607. width:500px;
  2608. }