base_chamilo.css 53 KB

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