default.css 66 KB

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