default.css 62 KB

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