default.css 59 KB

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