default.css 69 KB

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