default.css 69 KB

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