base.css 69 KB

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