default.css 60 KB

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