default.css 68 KB

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