default.css 65 KB

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