default.css 58 KB

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