default.css 52 KB

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