default.css 70 KB

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