base_chamilo.css 51 KB

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