base_chamilo.css 54 KB

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