default.css 65 KB

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