default.css 54 KB

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