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