default.css 54 KB

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