default.css 70 KB

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