123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339 |
- /*****************************************************
- * MAIN - COSMIC CAMPUS *
- *****************************************************/
- html {
- height: 100%;
- }
- /* Redefining html styles */
- body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- background-color: #fff;
- margin: 0;
- padding: 0;
- height: 100%; /* stick */
- }
- #wrapper{
- min-height: 100%;
- height: auto !important;
- height: 100%;
- margin: 0 auto -7em;
- }
- .row {
- width:100%;
- }
- div.row div.label {
- width: 0%;
- }
- div.row div.formw {
- width: 100%;
- }
- input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
- }
- img {
- border: none;
- }
- a {
- font-weight: bold;
- text-decoration: none;
- color:#333;
- }
- a:link {
- color: #333;
- }
- a:visited {
- color: #333;
- }
- a:hover {
- color: #f3840d;
- }
- a:active {
- }
- input, input[type=file], select, textarea {
- border: 1px solid #000;
- padding:1px 2px;
- }
- input[type=button], input[type=submit] {
- border: 1px solid #000;
- background:#F0F0F0;
- padding-left:10px;
- padding-right:10px;
- font-weight:bold;
- color:#000;
- }
- /* header 1 styles */
- #header1 {
- padding: 4px;
- background-color: #7171b7;
- color: #666;
- height: 50px;
- background-image: url(images/header.jpg);
- background-repeat: no-repeat;
- }
- #header1 a {
- color: #fff;
- text-decoration: none;
- }
- #header1 a:hover {
- text-decoration: underline;
- }
- #institution {
- float: left;
- font-weight: bold;
- }
- #my_courses {
- float: right;
- font-weight: bold;
- }
- /* header 2 styles */
- #header2 {
- min-height:10px;
- padding: 0.2em 0.5em;
- padding-bottom: 0.2em;
- background: #A7A7E5;
- color: #666;
- }
- #header2 a {
- color: #666;
- }
- #header2 a:hover {
- text-decoration: underline;
- }
- #Header2Right ul {
- float: right;
- width: 70%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
- }
- #Header2Right ul li {
- display: inline;
- color:#ffffff;
- }
- #Header2Right ul li a {
- color:#f1d40d;
- }
- /* header 3 styles */
- #header3 {
- padding: 0.8em 0.5em 0.4em 0.5em;
- background: #fff;
- color: #006;
- border-bottom: 1px solid #aeaeae;
- height:25px;
- margin-bottom: 1px;
- background-image: url(images/fondoHeader3.jpg);
- }
- #header3 a {
- padding: 10px 0px 20px 0px;
- display: block;
- width:150px;
- height:25px;
- background: url(images/tab.png) no-repeat;
- color: #fff;
- text-align:center;
- }
- #header3 a:hover {
- color: #fff;
- background: url(images/tabHover.png) no-repeat;
- }
- #header3 ul {
- padding-right: 75px;
- padding-left: 10px;
- padding-bottom: 0px;
- margin: 0px;
- list-style-type: none;
- display: inline;
- width:50px;
- height:50px;
- }
- #header3 li {
- padding-right: 0px;
- padding-left: 9px;
- float: left;
- padding-bottom: 0px;
- padding-top: 0px;
- margin: 0px;/*border-bottom: 1px solid #dcdcdc;*/
- }
- #header3 li:hover {
- padding-right: 0px;
- padding-left: 9px;
- padding-bottom: 0px;
- MARGIN: 0px;
- padding-top: 0px
- }
- #header3 #current {
- }
- #header3 #current a {
- color: #666;
- background:url(images/tabCurrent.png) no-repeat;
- }
- #header3 #logout {
- margin-top: 0px;
- display: inline;
- float: right;
- width: auto;
- }
- /* header 4 styles */
- #header4 {
- background-color: transparent;
- color: #009;
- padding: 2px;
- margin-bottom: 1px;
- margin-top: 0px;
- margin-left: 18px;
- position:relative;
- float: left;
- clear:left;
- }
- #header4 a {
- color: #7171b7;
- background:transparent;
- }
- #header4 a:hover {
- text-decoration: none;
- color: #f3840d;
- }
- /* The tool shortcuts */
- #toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- padding: 10px;
- width: 98.7%;
- }
- a.breadcrumb {
- height: 21px;
- }
- a.breadcrumb0 {
- background:url(images/home.gif) no-repeat;
- padding-left: 22px;
- }
- /* footer styles */
- #footer {
- background-color: #7171b7;
- background-image: url(images/footer.jpg);
- background-repeat: no-repeat;
- font-size: 12px;
- color:#ffffff;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
- padding-bottom:10px;
- }
- .push {
- height: 7em; /* Very important */
- }
- #footer .copyright {
- float: right;
- padding-top:55px;
- margin-right:10px;
- background-color: #7171b7;
- background-image: url(images/footer.jpg);
- background-repeat: no-repeat;
- }
- .footer_emails{
- float: left;
- margin-right:5%;
- background-color: #7171b7;
- background-image: url(images/footer.jpg);
- background-repeat: no-repeat;
- padding-top:55px;
- }
- #footer #platformmanager {
- float: left;
- margin-left:10px;
- }
- #footer #coursemanager {
- float: left;
- margin-left: 10px;
- }
- #footerright {
- margin-top: 10px;
- float: right;
- margin-right:20px;
- }
- #footerleft {
- padding-top: 10px;
- }
- #footer a {
- color:#f1d40d;
- }
- /* main styles */
- #main {
- padding: 0px 10px 10px 10px;
- position: relative;
- min-height: 320px;
- }
- /* my courses styles */
- .maincontent {
- float: left;
- width: 65%;
- padding: 0 20px 0 20px;
- background-color: transparent;
- min-height: 333px;
- margin-top:0;
- border-top: 10px #999999;
- }
- .coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
- }
- .courseslist {
- margin-left: -25px;
- }
- /* user_portal course list */
- .courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
- }
- /* user_portal session list */
- .session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
- }
- .session_course_item {
- /* padding: 0px; */
- margin: 0px;
- }
- .courses a {
- }
- .user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 0px;
- padding: 5px;
- }
- .menu {
- float: right;
- width: 200px;
- min-height: 150px;
- background-color: #F0F0F0;
- border: 1px solid #bbb;
- padding: 60px 10px 10px 10px;
- background: #f0f0f0 url(images/fondoNav.jpg) no-repeat top center;
- }
- .menu #lang_form select {
- margin: 1em 31px;
- }
- .menu form {
- color: #000915;
- font-weight: bold;
- margin-bottom: .8em;
- text-align: center;
- }
- .menucaption {
- font-weight: bold;
- padding-left: 12px;
- }
- .menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- /* border: 1px solid #bbb; */
- }
- .menusectioncaption {
- position: relative;
- top: -9px;
- background-color:#F0F0F0;
- padding: 0 8px 0 4px;
- }
- .menulist {
- list-style: none;
- padding: 0;
- }
- .note {
- width: auto;
- margin: 24px 6px 0 6px;
- padding: 3px;
- border: 2px outset;
- border-color:#bbb;
- }
- /* form styles */
- .form {
- }
- form div.row {
- clear: both;
- padding-top: 5px;
- }
- .form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
- font-weight: bold;
- }
- form div.row div.label {
- float: left;
- width: 18%;
- text-align: right;
- }
- form div.row div.formw {
- width: 80%;
- float:left;
- }
- [dir=ltr] form div.row div.label, [dir=rtl] form div.row div.formw {
- float: left;
- text-align: right;
- }
- [dir=rtl] form div.row div.label, [dir=ltr] form div.row div.formw {
- float: right;
- text-align: left;
- }
- form span.form_required {
- color: #f00;
- }
- form span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
- }
- /* feedback messages */
- .normal-message {
- position: relative;
- margin-top: 10px;
- margin-bottom: 10px;
- border-width: 1px;
- border-style: solid;
- padding: 6px;
- border: 1px solid #dcdcdc;
- color: #00407F;
- background-color: #E5EDF9;
- min-height: 30px;
- }
- .warning-message {
- position: relative;
- margin-top: 10px;
- margin-bottom: 10px;
- border-width: 1px;
- border-style: solid;
- padding: 6px;
- border: 1px solid #FFB30F;
- color: #000;
- background-color: #FFEFA7;
- min-height: 30px;
- }
- .confirmation-message {
- position: relative;
- margin-top: 10px;
- margin-bottom: 10px;
- border-width: 1px;
- border-style: solid;
- padding: 6px;
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #CAF0C7;
- min-height: 30px;
- }
- .error-message {
- position: relative;
- margin-top: 10px;
- margin-bottom: 10px;
- border-width: 1px;
- border-style: solid;
- padding: 6px;
- border: 1px solid #FF0000;
- color: #000;
- background-color: #FFD1D1;
- min-height: 30px;
- }
- .confirmation-message .bottom-link, .error-message .bottom-link, .normal-message .bottom-link, .warning-message .bottom-link {
- position: absolute;
- bottom: 0.2em;
- right: 0.5em;
- }
- /* New training */
- .bottom-link {
- border: 2px outset;
- text-decoration: none;
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- background-image:url(images/button_back.jpg);
- background-position:10px 50%;
- background-repeat:no-repeat;
- font-size:100%;
- margin-top:1px;
- padding:5px 20px;
- vertical-align:middle;
- padding-left:35px;
- display:block;
- }
- .bottom-link:active {
- border: 2px inset;
- }
- .bottom-link:link {
- border-style: solid;
- border-width : 1px 2px 2px 1px;
- text-decoration : none;
- border-color : #69f #00f #00f #69f;
- }
- .bottom-link:hover {
- border-color: #ccc;
- color: #111;
- }
- /* other styles */
- .clear {
- clear: both;
- line-height: 0px;
- height: 0;
- }
- /* actions */
- .actions_lp {
- background:#F8F8F8;
- height:29px;
- padding-left: -17px;
- margin: 5px 2px 1px 12px;
- vertical-align:middle;
- width: 90%;
- }
- .actions_lp img {
- vertical-align:middle;
- }
- .actions_lp a {
- margin-right: 10px;
- vertical-align:middle;
- }
- .actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
- }
- .actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
- }
- .actions {
- background-color:#A7A7E5;
- border-bottom:1px solid #7171b7;
- border-top:1px solid #7171b7;
- /*height:35px;*/
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- width: 99.8%
- }
- .actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- padding-right: 5px;
- vertical-align:middle;
- }
- .actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
- }
- .actions span {
- margin-right: 10px;
- vertical-align:middle;
- }
- .actions form {
- margin-right: 10px;
- vertical-align:middle;
- }
- /* big actions */
- .actionsbig {
- background-color:#A7A7E5;
- border-bottom:1px solid #7171b7;
- border-top:1px solid #7171b7;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
- }
- .content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
- }
- .actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
- }
- .actions img {
- vertical-align:middle;
- }
- .actions a {
- margin-right: 10px;
- vertical-align:middle;
- }
- .actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- /*background:url(images/actions.jpg) repeat-x;*/
- vertical-align:middle;
- }
- .actions-message {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
- }
- /* styles for the profile page */
- .profile_image {
- float: right;
- margin-right: 20px;
- }
- .profile_form {
- float: left;
- width: 75%;
- }
- /* course introduction */
- #courseintrocenter {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- border-bottom: 1px solid #dcdcdc;
- }
- #courseintro_iconscenter {
- position: relative;
- width: 80%;
- margin: 0px auto 10px;
- }
- #courseintroleft {
- position: relative;
- width: 80%;
- margin-bottom: 5px;
- border-bottom: 1px solid #dcdcdc;
- }
- #courseintro_iconsleft {
- position: relative;
- width: 80%;
- }
- /* styles for the agenda */
- #agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #CCCCCC;
- border-collapse: collapse;
- }
- /* The cells with the name of the days of the weeks (mon->sun)*/
- .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #CCCCCC;
- border-collapse: collapse;
- }
- /* The cells for the days (1->31) */
- .days_week {
- height: 30px;
- width: 12%;
- border: 1px solid #CCCCCC;
- border-collapse: collapse;
- background-color: #f9f9f9;
- }
- .days_weekend {
- height: 30px;
- width: 12%;
- border: 1px solid #CCCCCC;
- border-collapse: collapse;
- background-color: #eaeaea;
- }
- .days_today {
- height: 30px;
- width: 12%;
- border-collapse: collapse;
- background-color: #A7A7E5;
- color: #fff;
- font-weight: bold;
- }
- .agenda_month_divider {
- background-color: #dcdcdc;
- color: #fff;
- text-align: center;
- }
- /*The caption of the calendar (displays the month and the << and >> links*/
- #agenda_list .title {
- background-color: #dcdcdc;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
- }
- #agenda_list .title a:link, #agenda_list #title a:visited {
- color: #fff;
- padding: 2px 10px;
- text-align: center;
- }
- #agenda_list .title a:hover {
- color: #B70297;
- padding: 2px 10px;
- text-align: center;
- }
- #agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
- }
- #agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
- }
- #agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
- }
- #agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
- }
- /* text in the cells: display of agenda items (visible)*/
- #agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- }
- #agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- }
- #agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- }
- /*text in the cells: display of agenda items (invisible)*/
- #agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
- }
- #agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
- }
- #agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
- }
- /*text in the cells: display of agenda items (highlighted)*/
- #agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- }
- #agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- }
- #agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- }
- .personal_agenda {
- color: #008000;
- }
- .personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
- }
- a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
- }
- .personal_agenda a:hover, .personal_agenda a:hover {
- color: #B70297;
- }
- a.personal_agenda:hover, a.personal_agenda:hover {
- color: #B70297;
- }
- /* Login form */
- #formLogin div {
- margin-bottom: 3px;
- }
- #formLogin div input[type=submit] {
- width: 109px;
- }
- /* normal table*/
- .normal_table {
- margin: 3px;
- border-collapse: collapse;
- width: 98%;
- padding: 5px;
- }
- /* Data table */
- .data_table {
- margin: 3px;
- border-collapse: collapse;
- width: 99.8%;
- padding: 5px;
- }
- .data_table th {
- text-transform: capitalize;
- border: 1px solid gray;
- background-color: #f0f0f0;
- }
- .data_table th a {
- text-decoration:none;
- }
- .data_table th a:hover {
- }
- .data_table tr.row_odd {
- background: #fafafa;
- }
- .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
- }
- .data_table tr.row_even {
- background-color: #fff;
- }
- .data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 2px solid #fff;
- border-right: 2px solid #fff;
- border-left: 2px solid #fff;
- }
- /* sections in the page */
- .sectiontitle {
- background: url('images/headertables.jpg') repeat-x top center;
- background-color: #ffb963;
- border: 1px solid #EE4C03;
- font-weight: bold;
- color: #EE4C03;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- }
- .sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- }
- .sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- }
- /* invisible styles */
- a.invisible {
- color: #999999;
- }
- a.invisible:visited {
- color: #999999;
- }
- a.invisible:active {
- color: #999999;
- }
- a.invisible:hover {
- color: #999999;
- }
- /* Platform Administration */
- div.admin_section {
- width: 40%;
- float: left;
- margin: 10px 20px;
- border: 1px solid #EE4C03;
- min-height:210px;
- }
- div.admin_section h4 {
- background-color: #FDDEAA;
- font-weight: bold;
- list-style-type: none;
- margin: 0px;
- padding: 5px;
- }
- /* Report section */
- div.report_section {
- width: 40%;
- float: left;
- margin: 10px 20px;
- border: 1px solid #EE4C03;
- }
- div.report_section h4 {
- background-color: #FDDEAA;
- font-weight: bold;
- list-style-type: none;
- margin: 0px;
- padding: 5px;
- }
- /* course homepage */
- .courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #EE4C03;
- }
- .courseadminview img, .platformadminview img {
- display:inline-block;
- border: none;
- text-decoration: none;
- background-color: #fff;
- padding-right: 5px;
- vertical-align:middle;
- }
- .viewcaption {
- position: relative;
- top: -20px;
- font-weight: bold;
- background-color: #fff;
- padding: 0 4px;
- }
- .tool-icon {
- margin-bottom: -3px;
- }
- /* learning path */
- table.lp_build {
- height:400px;
- width:100%;
- }
- table.lp_build td {
- vertical-align:top;
- }
- table.lp_build td.tree {
- border-right:1px solid #999999;
- width:240px;
- }
- table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
- }
- table.lp_overview {
- width:100%;
- }
- table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
- }
- table.lp_overview td.title {
- width:200px;
- }
- table.lp_overview td.actions {
- text-align:center;
- width:100px;
- }
- table.lp_overview td.move {
- text-align:center;
- width:50px;
- }
- table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
- }
- table.lp_overview tr {
- background:#F8F8F8;
- }
- table.lp_overview tr:hover {
- background:#E5EDF9;
- }
- table.lp_overview img {
- margin-left:3px;
- }
- table.lp_prerequisites th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- }
- .lp_mediaplayer {
- float: right;
- padding-top: 3px;
- margin-right: 5px;
- }
- div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
- }
- div.lp_manipulate a {
- padding-right:10px;
- }
- div.lp_resource_header {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
- cursor:pointer;
- margin-top: -1px;
- }
- div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- display:none;
- padding:5px 10px;
- width:350px;
- margin-top: -1px;
- }
- .learnpath_chapter_form {
- width: 300px;
- }
- .learnpath_item_form {
- width: 300px;
- }
- #learnpath_preview_frame {
- margin-top: 5px;
- border:1px solid #CCCCCC;
- height:490px;
- width:95%;
- }
- /* exercices styles */
- .exercice_form {
- width: 300px;
- }
- #validationButton {
- text-decoration: none;
- margin: 5px;
- border:1px solid #999999;
- background:#F0F0F0;
- padding: 3px;
- padding-left:10px;
- padding-right:10px;
- font-weight:bold;
- color:#666;
- }
- .exercise_scenario_label {
- }
- .exercise_scenario_element {
- }
- span.checkbox {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/checkbox.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
- }
- span.radio {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/radio.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
- }
- /* forum styles */
- .forum_header {
- background: transparent url('images/line.jpg') repeat-x bottom center;
- font-weight: bold;
- }
- .forum_threadheader {
- background: transparent url('images/line.jpg') repeat-x bottom center;
- font-weight: bold;
- }
- .forum_message_left {
- width: 150px;
- vertical-align: top;
- /*border-bottom: 1px solid #666666;*/
- border-right: 1px solid #EE4C03;
- background: url('images/bglogin.jpg') repeat-y top center;
- background-color: #ebc41f;
- }
- .forum_message_post_title {
- border-bottom: 1px solid #EE4C03;
- font-weight: bold;
- background-color: #FDDEAA;
- height: 20px;
- color: #EE4C03;
- }
- .forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
- }
- .forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
- }
- /* Survey styles */
- #survey_title {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
- }
- #survey_subtitle {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
- }
- .survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #999;
- }
- .survey_question_wrapper {
- border: 1px solid #999;
- }
- .survey_question {
- /* 264269 4271b5 E5EDF9 */
- background-color:#f0f0f0;
- color:#999;
- padding:5px;/*border: 1px solid #264269;*/
- }
- .survey_question_options {
- /* 264269 4271b5 E5EDF9 */
- background-color:#FFF;
- color:#000;
- padding:5px;/*border: 1px solid #264269;*/
- }
- /* Blog */
- .blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
- }
- .blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
- }
- .blogpost_title {
- display: block;
- font-weight: bold;
- padding-bottom: 5px;
- }
- .blogpost_date {
- display: block;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
- }
- .blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
- }
- .blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- }
- .blogpost_comment_title {
- display: block;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
- }
- .blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
- }
- .blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
- }
- .blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
- }
- .comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- }
- /* tabbed menu */
- #tabbed_menu {
- border: 1px solid #EE8003;
- background: transparent url('images/dropbox.jpg') no-repeat top left;
- width: 300px;
- margin: 0 0 1em 0;
- }
- #tabbed_menu_tabs {
- width: 90%;
- margin: 15px .2em 0 .2em;
- padding: 0;
- list-style-type: none;
- }
- #tabbed_menu_tabs li {
- padding: 0;
- margin: 0 .8em;
- }
- /* system announcements */
- div.system_announcements {
- }
- div.system_announcements h3 {
- }
- div.system_announcement {
- margin: 5px;
- min-height:20px;
- }
- div.system_announcement_title {
- }
- div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
- }
- #image_preview {
- text-align:center;
- padding-left: 17px;
- }
- .skip {
- display: none;
- }
- /* Specific forms: profile,add course,advanced search,advanced course search,etc.. */
- #add_course, #profile, #advanced_course_search, #advanced_search, #category, #course_user_import, #export_users, #update_course, #user_add, #user_import {
- border: 1px solid #EE4C03;
- background: transparent url("images/headerform.jpg") no-repeat top left;
- width: 550px;
- position: relative;
- padding: 60px 0 1em 0;
- }
- #advanced_search, #category, #course_user_import {
- background: transparent url("images/headerform2.jpg") no-repeat top left;
- }
- #export_users, #update_course, #user_add, #user_import {
- background: transparent url("images/headerform3.jpg") no-repeat top left;
- }
- /* Glossary tool */
- .glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
- }
- .glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
- }
- .glossary-term-desc {
- margin-left: 1em;
- }
- .glossary-term-action-links {
- float: right;
- }
- .glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
- }
- .glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
- }
- .glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
- }
- .glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
- }
- .glossary-orderby-link {
- float:right;
- margin: 1em;
- }
- .glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
- }
- /*SESSIONS*/
- .sessions_list {
- line-height: 20px;
- margin-top: 20px;
- }
- .sessions_list_inactive {
- line-height: 20px;
- }
- .sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- }
- .sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
- }
- .session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
- }
- .session_box_coach {
- }
- .session_course_item {
- /* padding: 0px; */
- margin: 0px;
- margin-bottom:20px;
- }
- .session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
- }
- /* Notebook */
- .notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
- }
- .notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
- }
- .notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- }
- .notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
- }
- .notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
- }
- .notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
- }
- .notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
- }
- .notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
- }
- .notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
- }
- .notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
- }
- .notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
- }
- .notebook-search-title {
- text-align:right;
- margin: 1em;
- }
- .notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
- }
- /*NAVIGATION MENU BAR*/
- .menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
- }
- .menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
- }
- .menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
- }
- #centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
- }
- #center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
- }
- #toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
- }
- /* Hide from IE5-mac. Only IE-win sees this. \*/
- * html #toolnav {
- margin-right: 0px;
- }
- * html #center {
- height: 1%;
- margin-left: 0;
- }
- /* End hide from IE5/mac */
- /* --- course navigation menu as a definition list --- */
- #swap_menu_link {
- float: left;
- }
- #toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
- }
- #toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
- }
- #toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
- }
- #toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
- }
- #toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
- }
- #toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
- }
- #toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
- }
- #toolnavlist a#here {
- background: #fff;
- color:#4171b5;
- }
- /* --- end of course navigation menu section --- */
- /**********************************************
- * EXERCISE TOOL *
- **********************************************/
- .exercice_form {
- width: 300px;
- }
- #validationButton {
- text-decoration: none;
- margin: 5px;
- /*border:1px solid #999999;*/
- /*background:#F0F0F0; */
- padding: 3px;
- padding-left:10px;
- padding-right:10px;
- font-weight:bold;
- color:#666;
- }
- .rounded {
- border: 3px solid #CCCCCC;
- padding: 3px;
- width: 200px;
- /*margin-left:10px;*/
- }
- .rounded_inner {
- background:#FFF;
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .rounded_inner:hover {
- color:#C802A5;
- background:#F0F0F0;
- }
- .exercise_scenario_label {
- }
- .exercise_scenario_element {
- }
- span.checkbox {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/checkbox.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
- }
- span.radio {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/radio.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
- }
- #question_title {
- }
- #question_description {
- padding-left:5px;
- padding-top:10px;
- }
- #question_score {
- padding-left:5px;
- padding-top:10px;
- padding-bottom:10px;
- font-weight:bold;
- }
- #question_feedback {
- background-color:#FCF7BA;
- border:1px solid #CCCCCC;
- color:#666666;
- font-size:11px;
- font-weight:bold;
- list-style-type:none;
- margin-top:5px;
- padding:5px;
- }
- #exercise_close_link {
- background: url(images/close.gif) no-repeat;
- padding-left: 20px;
- }
- #exercise_close_link:hover {
- background: url(images/close_highlight.gif) no-repeat;
- padding-left: 20px;
- }
- /* Quizzes tool */
- .quiz_export_link {
- float: right;
- }
- /*Exercice timer*/
- #square{
- padding:5px;
- background-color:#EEEEEE;
- border:1px solid #CCCCCC;
- margin-right : 24px;
- width : 155px;
- margin-bottom:20px;
- }
- #wrapper-clock{
- width:100%;
- margin:0;
- }
- .count_down{
- padding: 3px;
- font-size:22px;
- font-weight:bold;
- color:#222;
- }
- /*****************************************************
- * BUTTONS *
- *****************************************************/
- /* BUTTONS */
- button,input[type="submit"] {
- margin:5px 5px 3px 0px !important;
- background-color: #DFDFDF;
- border-width: 1px;
- /* -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- */
- font-family: bold arial, verdana, helvetica, sans-serif;
- font-size: 100%;
- line-height :130%;
- text-decoration: none;
- color: black;
- cursor: pointer;
- padding:5px 15px 5px 15px;
- vertical-align:middle;
- }
- button:hover input[type="submit"]:hover{
- background-color:#cbcbcb;
- color:#545454;
- border-style: inset;
- }
- /* button with image */
- button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
- }
- /* POSITIVE */
- button.save, button.add, button.search, button.refresh, button.upload, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- }
- button.save:hover, button.refresh:hover, button.upload:hover, button.add:hover, button.search:hover, button.login:hover, button.plus:hover, button.minus:hover, button.next:hover, button.back:hover, input[type="submit"].submit_next:hover {
- border-color: #D4E2F6;
- background-color:#D4E2F6;
- }
- /* NEGATIVE */
- button.cancel {
- background-color:#F8E8E6;
- border-color: #FFE3DE;
- }
- button.cancel:hover {
- border-color: #F4E1D0;
- background-color: #FFE3DE;
- }
- /*including "save" image*/
- button.save {
- background-image:url(images/button_accept.gif);
- }
- /*including "add" image*/
- button.add {
- background-image:url(images/button_add.gif);
- }
- /*including "cancel" image*/
- button.cancel {
- background-image:url(images/button_delete.gif);
- }
- /*including "search" image*/
- button.search {
- background-image:url(images/button_search.gif);
- }
- /*including "login" image*/
- button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
- }
- /*including "plus" image*/
- button.plus {
- background-image:url(images/button_plus.gif);
- }
- /*including "minus" image*/
- button.minus {
- background-image:url(images/button_minus.gif);
- }
- /*including "next" image*/
- button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
- }
- /*including "back" image*/
- button.back {
- background-image:url(images/button_back.gif);
- }
- /*including "refresh" image*/
- button.refresh {
- background-image:url(images/button_refresh.gif);
- }
- /*including "upload" image*/
- button.upload {
- background-image:url(images/button_upload.gif);
- }
- /*including "back" image*/
- button.back {
- background-image:url(images/button_back.gif);
- }
- .icon_image_content {
- width:80px;
- cursor:hand;
- height:8em;
- text-align: center;
- padding-top: 3px;
- padding-right: 5x;
- padding-bottom: 3px;
- padding-left: 5px;
- }
- .question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
- }
- .question_menu li {
- float:left;
- margin:0px;
- }
- #exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
- }
- div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
- }
- div#friend-header a {
- padding-right:6px;
- }
- div#friend-container {
- float:left;
- }
- div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:82px;
- z-index:5;
- }
- div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
- }
- div.image_friend_network img {
- vertical-align:middle;
- }
- div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
- }
- .friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
- }
- /* button >> */
- button.arrowr {
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
- padding-left:20px;
- padding-top:20px;
- background-position:10px;
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- border-width: 1px;
- display:block;
- font-size: 100%;
- line-height :130%;
- vertical-align:middle;
- }
- /*including "arrowr" image*/
- button.arrowr {
- background-image:url(images/2rightarrow.gif);
- background-repeat:no-repeat;
- }
- /* button << */
- button.arrowl {
- margin:0px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
- padding-left:20px;
- padding-top:20px;
- background-position:10px;
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- border-width: 1px;
- display:block;
- font-size: 100%;
- line-height :130%;
- vertical-align:middle;
- }
- /*including "arrowl" image*/
- button.arrowl {
- background-image:url(images/2leftarrow.gif);
- background-repeat:no-repeat;
- }
- /* input >> */
- input.arrowr {
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
- padding-left:25px;
- padding-top:20px;
- background-position:10px;
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- border-width: 1px;
- display:block;
- font-size: 100%;
- line-height :130%;
- vertical-align:middle;
- background-image:url(images/2rightarrow.gif);
- background-repeat:no-repeat;
- }
- /* input << */
- input.arrowl {
- margin:0px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
- padding-right:25px;
- padding-top:20px;
- background-position:10px;
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- border-width: 1px;
- display:block;
- font-size: 100%;
- line-height :130%;
- vertical-align:middle;
- background-image:url(images/2leftarrow.gif);
- background-repeat:no-repeat;
- }
- .u-m-answer {
- width:100%;
- }
- .u-m-answer p {
- margin:2px;
- }
- .refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
- }
- .portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
- }
- .legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
- }
- /* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
- * {
- outline :none;
- }
- /*
- input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
- }
- input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
- }
- .independent_course_item a {
- font-size:135%;
- }
- .session_course_item a {
- font-size:120%;
- }
- */
- #maincontent .courseslist li {
- margin-bottom:8px;
- }
- /*
- a.read {
- font-weight:normal;
- }
- .actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- }
- .actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
- }*/
- /* GROUP TOOL */
- #group_description {
- margin: 10px 0px 10px 0px;
- }
- #group_privacy {
- margin: 10px 0px 10px 0px;
- }
- #group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
- margin: 20px 0px 20px 0px;
- }
- #group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
- }
- #group_permissions ul li {
- margin: 10px 0px 10px 5px;
- }
- /* Groups boxes */
- .groups_grid_container {
- width:100%;
- }
- .groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
- }
- .groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
- .groups_grid_element_2 { width:150px; float:left;}
- /*POPULAR GROUP*/
- .popular_grid_item {
- float:left;
- width:350px;
- height:165px;
- margin-top:20px;
- }
-
- .popular_grid_element_1 {
- width:330px;
- height:165px;
- padding-left:10px;
- padding-right:10px;
- background-image:url(../../img/boxmygroupscontent.jpg);
- background-repeat:repeat-y;
- overflow:hidden;
- }
- /*NEWEST GROUP*/
- .newest_grid_item {
- float:left;
- width:350px;
- height:165px;
- margin-top:20px;
- }
-
- .newest_grid_element_1 {
- width:330px;
- height:165px;
- padding-left:10px;
- padding-right:10px;
- background-image:url(../../img/boxmygroupscontent.jpg);
- background-repeat:repeat-y;
- overflow:hidden;
- }
- /*MY GROUPS*/
- .mygroups_grid_item {
- float:left;
- width:350px;
- height:165px;
- margin-top:20px;
- }
-
- .mygroups_grid_element_1 {
- width:330px;
- height:165px;
- padding-left:10px;
- padding-right:10px;
- background-image:url(../../img/boxmygroupscontent.jpg);
- background-repeat:repeat-y;
- overflow:hidden;
- }
- .box_description_group_title {
- float:right;width:80%;
- }
- .box_description_group_content {
- float:right;
- width:80%;
- height:45px;
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
- }
- .box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
- }
- /*PROFILE*/
- .profile_grid_container { width:100%;}
- .profile_grid_item {
- border:1px dotted #CCCCCC;
- float:left;
- height:90px;
- margin:5px;
- padding:5px;
- width:270px;
- }
- .profile_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .profile_grid_element_1 { width:170px; float:left; text-align:left; margin-bottom:1px; }
- /* pagination grid sortable */
- .sub_header {width:100%}
- .grid_selectbox {float:left;width:35%}
- .grid_title {float:left;width:30%;text-align:center}
- .grid_nav {float:left;width:35%;text-align:right}
- /* Groups boxes */
- .group_invitation_grid_container { width:100%;}
- .group_invitation_grid_item {
- border:1px dotted #CCCCCC;
- float:left;
- height:85px;
- margin:8px;
- padding:5px;
- width:300px;
- }
- .group_invitation_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .group_invitation_grid_element_1 { width:100px; float:left; text-align:left;margin-bottom:5px;}
- .group_invitation_grid_element_2 { width:150px; float:left;}
- /* home group boxes */
- .home_group_grid_container {
- margin-bottom:60px;
- }
- .home_group_grid_element_1 {
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#686868;
- font-weight:bold;
- margin:2px;
- padding:2px;
- }
- .home_group_grid_element_2 {
- float:right;
- width:80%;
- height:45px;
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
- }
- /*INVITATION IN PROFILE*/
- .invitation_profile_grid_container { width:100%;}
- .invitation_profile_grid_item {
- border:1px dotted #CCCCCC;
- float:left;
- height:110px;
- margin:5px;
- padding:5px;
- width:100px;
- }
- .invitation_profile_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .invitation_profile_grid_element_0 img {width:50px;height:50px;border:3px solid #E6E6E6;}
- .invitation_profile_grid_element_2 { width:100px; float:left; text-align:center;}
- .invitation_profile_grid_element_3 { width:100px; float:left; text-align:center;}
- /* User boxes */
- .search_users_grid_container { width:100%;}
- .search_users_grid_item { width:400px; height: 90px; border:1px dotted #ccc; float:left; padding:5px; margin:8px;}
- .search_users_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .search_users_grid_element_1 { width:100px; float:left; text-align:center;margin-bottom:5px;}
- .search_users_grid_element_2 { width:150px; float:left;}
- .search_users_grid_selectbox { width:50%; float:left;}
- .search_users_grid_title { width:30%; float:left;}
- .search_users_grid_nav { float:right;}
- /*WAITING USER*/
- .waiting_user_grid_container { width:100%;}
- .waiting_user_grid_item { width:500px; height: 120px; border:1px dotted #ccc; float:left; padding:5px; margin:5px;}
- .waiting_user_grid_element_0 { width:100px; height: 90px; float:left; text-align:center; margin-bottom:5px; padding-top:15px;}
- .waiting_user_grid_element_1 { width:400px; float:left; text-align:left; margin-bottom:5px}
- .waiting_user_grid_element_2 { width:400px; float:left; text-align:justify;margin-bottom:5px}
- .waiting_user_grid_element_5 { width:100%; text-align:left;}
- .waiting_user_grid_element_6 { width:100%; text-align:left;}
- /*LIST MEMBERS*/
- .list_members_grid_container { width:100%;}
- .list_members_grid_item { width:105px; height: 150px; border:1px dotted #ccc; float:left; padding:5px; margin:8px;}
- .list_members_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .list_members_grid_element_0 img {width:50px;height:50px;border:3px solid #E6E6E6;}
- .list_members_grid_element_2 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .list_members_grid_element_3 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .list_members_grid_element_5 { width:100%; text-align:center;}
- /*SEARCH USER*/
- .search_user_grid_container { width:100%;}
- .search_user_grid_item { width:100px; height:100px; border:1px dotted #ccc; float:left; padding:5px; margin:5px; overflow:hidden;}
- .search_user_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
- .search_user_grid_element_0 img {width:50px;height:50px;border:2px solid #E6E6E6;}
- .search_user_grid_element_1 { width:100%; text-align:center;}
- .search_user_grid_element_2 { width:100%; text-align:center;}
- .search_user_grid_element_3 { width:100%; text-align:center;}
- /*SEARCH GROUP*/
- .search_group_grid_item {
- float:left;
- width:350px;
- height:165px;
- margin-top:20px;
- }
- .search_group_grid_container {
- margin-top:0px;
- }
-
- .search_group_grid_element_1 {
- width:330px;
- height:165px;
- padding-left:10px;
- padding-right:10px;
- background-image:url(../../img/boxmygroupscontent.jpg);
- background-repeat:repeat-y;
- overflow:hidden;
- }
- #menu-wrapper {
- width:200px;
- float: right;
- }
- #menu {
- /* -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
- margin-top:20px;
- margin-right:10px;
- margin-bottom:40px;
-
- padding-left:10px;
- padding-right:10px;
- padding-top:5px;
- padding-bottom:30px;
-
- width:240px; */
- float: right;
- min-height: 150px;
-
- }
- /* INVITATIONS */
-
- .invitation_confirm {
- border-top:1px solid #D8DFEA;
- }
- .invitation_image {
- width:110px;
- }
- /**********************************************
- * MESSAGE TOOL *
- **********************************************/
-
- #inbox-wrapper {
- width:100%;
- }
- #inbox {
- height:auto;
- margin-left:auto;
- margin-right:auto;
- overflow:hidden;
- }
- #outbox {
- height:auto;
- margin-left:auto;
- margin-right:auto;
- overflow:hidden;
- }
- #inbox-menu {
- width:150px;
- float:left;
- margin-right:10px;
- }
- #inbox-menu ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0px;
- }
- #inbox-menu ul li {
- padding:2px 0px;
- }
- #message-reply-link {
- float:right;
- }
- .message-item {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#F5F5F5 none repeat scroll 0 0;
- margin:0 0 5px;
- padding:10px;
- }
- .message-topic {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#E6EEFB none repeat scroll 0 0;
- margin:0 0 5px;
- padding:10px;
- }
- .message-group-title-topic {
- font-size:180%;
- margin:5px 0px 5px 0px;
- }
- .message-group-title {
- font-size:120%;
- }
- .message-group-author {
- margin:5px 0px 5px 0px;
- }
- .message-group-content {
- line-height:150%;
- margin: 5px 0px 8px 0px;
- }
- .message-group-date {
- color:#666;
- width:100%;
- text-align:right;
- }
- .view-message-content {
- line-height:150%;
- font-size:110%;
- }
- .message_view_table {
- cellspacing:0;
- cellpadding:0;
- background-color:#dbeaf5;
- border=0;
- border-collapse: collapse;
- width: 100%;
- }
- .message_view_table th {
- padding-right: 12px;
- border: 1px solid gray;
- background-color: #f0f0f0;
- }
- .message-select-box {
- float:left;
- display:inline;
- position:absolute;
- margin-top:23px;
- margin-left:20px;
- }
- /* styles from the my.profile.php file */
- .message-content {
- float:left;
- }
- .message-content .message-delete {
- position: absolute;
- top: 10px;
- right: 10px;
- cursor: pointer;
- }
- .message-content-internal {
- display:inline;
- margin:20px auto;
- background:#F5E38E;
- border:2px solid #EBCA4F;
- padding:10px;
- width:100px;
- position:relative;
- margin-top:150px;
- margin-right:-100px;
- }
- .message-title {
- /* color:#ff0000; */
- font-size:12px;
- }
- .message-body {
- font-size:11px;
- padding: 0 0 11px;
- color:#333;
- }
- .message-link {
- color:#ff8400;
- }
- .message-view {
- float:right;
- margin:20px auto;
- background:#F5E38E;
- border:2px solid #EBCA4F;
- padding:10px;
- width:100px;
- position:relative;
- margin-top:115px;
- margin-right:-100px;
- }
- .message-content-table {
- background-color:white;
- border:1px solid black;
- position:absolute;
- width:200px;
- height:60px;
- z-index:3;
- visibility:hidden;
- top:85px;
- left:10px;
- margin: 0px;
- padding: 0px;
- }
- #message {
- margin: 0 auto;
- text-align: center;
- }
- #message select {
- margin: 10px 0;
- width: 220px;
- }
- #message textarea {
- margin: 10px 0;
- }
- #message td {
- padding: 4px;
- }
- .message-top-title {
- float:left;
- margin-top:1px;
- margin-bottom:1px;
- background-color:#F2F2F2;
- width:600px;
- border-bottom:1px solid #CCCCCC;
- margin:left:5px;
- }
- .message-bottom-title {
- height:22px;
- float:left;
- margin-top:1px;
- margin-bottom:1px;
- background-color:#F2F2F2;
- width:600px;
- border-bottom:1px solid #CCCCCC;
- }
- .message-content-body-left {
- float:left;
- width:30%;
- }
- .message-content-body-right {
- float:right;
- text-align:left;
- width:60%;
- }
- .message-body-title {
- float:right;
- margin-top:1px;
- margin-bottom:5px;
- border-bottom:1px solid #CCCCCC;
- border-collapse:collapse;
- }
- .message-image-info {
- float:left;
- margin-top:10px;
- margin-bottom:10px;
- margin-left:10px;
- text-align:left;
- margin-right:20px;
- }
- .message-content-body-right dd {
- color:#333399;
- border-bottom:1px solid #CCCCCC;
- height:20px;
- text-decoration:none;
- outline-style:none;
- background:#ffffff;
- }
- .message-content-body-right:hover {
- }
- /*SOCIAL TOOL*/
- .social-plugin-item {
- float:left;
- width:50%;
- background-color:#ccc;
- margin: 0px;
- }
- #social-plugins {
- float:left;
- background-color:#f00;
- width:100%;
- margin: 0px;
- padding:2px;
- }
- div.image-social-content {
- float:left;
- border:1px dotted #ccc;
- margin:2px;
- padding: 8px 4px 4px 4px;
- background: #ffffff;
- height:105px;
- width:82px;
- z-index:5;
- cursor:pointer;
- position:relative;
- overflow:hidden;
- }
- div.image-social-content span {
- overflow:hidden;
- display:block;
- height:75px;
- }
- div.image-social-content img {
- vertical-align:middle;
- }
- div.image-social-content center.friend {
- overflow:hidden;
- height:30px;
- }
- .image-social-content .image-delete {
- position: absolute;
- top: 1px;
- right: 1px;
- cursor: pointer;
- }
- .social-info {
- background:#B8C8DC;
- color:#4475B0;
- font-size:12px;
- font-weight:bold;
- }
- .social-display-image {
- float:right;
- margin-top:-130px;
- margin-right:5px;
- }
- .social-search-image {
- color:#000033;
- margin-top:2px;
- width:200px;
- }
- .social-subtitle-search {
- background:#ffffff;
- border-top:1px #9DACBF solid;
- border-bottom:1px #9DACBF solid;
- }
- .social-align-box {
- text-align:left;
- float:left;
- }
- .social-header {
- margin-bottom:8px;
- }
- #social-content {
- width:100%;
- height:auto;
- overflow:hidden;
- margin-left:auto;
- margin-right:auto;
- }
- #social-content-right {
- height:auto;
- overflow:hidden;
- width:79%;
- }
- .social-content-image {
- margin-bottom:10px;
- margin-top:2px;
- }
- #social-content-left {
- float:left;
- height:auto;
- min-height:300px;
- width:175px;
- margin-right:10px;
- overflow:hidden;
- }
- .social-content-description {
- background:#ECE9D8;
- }
- .social-content-body {
- background:#ffffff;
- }
- .social-content-table {
- border-top:1px #9DACBF solid;
- border-left:1px #9DACBF solid;
- border-right:1px #9DACBF solid;
- border-bottom:1px #9DACBF solid;
- }
- .social-profile-info dt {
- text-align:left;
- clear:left;
- float:left;
- width:80px;
- }
- .social-profile-info dd {
- padding:1px 0px 3px 0px;
- float:left;
- margin:0;
- display : block;
- padding-left:10px;
- width:200px;
- }
- /* general layout of the profile page */
- #social-profile-wrapper {
- width: 100%;
- text-align:left;
- margin:0 auto;
- float: left;
- }
- #social-profile-container {
- /* width: 705px; */
- }
- #social-profile-left {
- float:left;
- width:22%;
- }
- #social-profile-content {
- float:right;
- width:47%;
- margin-left: 4px;
- }
- #social-profile-right {
- float:right;
- width:30%;
- margin-left: 4px;
- }
- /* SOCIAL MENU VERTICAL */
- .social-menu {
- width:100%;
- height:auto;
- }
- .social-menu ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0px;
- }
- .social-menu li {
- margin-bottom:4px;
- padding-bottom:12px;
- background-image:url(../../img/line-social.jpg);
- background-position:bottom;
- background-repeat:repeat-x;
- }
- .social-menu li img {
- float:left;
- }
- .social-menu-sub-level a img {
- float:left;
- }
- .social-menu ul li a {
- padding:2px 0px;
- }
- .social-menu-sub-level {
- margin-left:20px;
- }
- .social-menu-title{
- width:100%;
- float:left;
- height:auto;
- background-color:#32578b;
- margin-bottom:10px;
- padding-top:4px;
- padding-bottom:4px;
- }
- .social-menu-text1 {
- color:#fff;
- font-size:12px;
- font-weight:bold;
- }
- .social-menu-text2 {
- color:#000;
- font-weight:normal;
- font-size:12px;
- }
- .social-menu-text3 {
- color:#94cdf9;
- font-weight:normal;
- font-size:12px;
- font-weight:bold;
- }
- .social-menu-text4 {
- font-family:Verdana, Geneva, sans-serif;
- color:#000;
- font-weight:normal;
- font-size:13px;
- vertical-align:bottom;
- }
- .social-menu-text-active {
- font-family:Verdana, Geneva, sans-serif;
- color:#000;
- font-weight:bold;
- font-size:12px;
- vertical-align:bottom;
- }
- .social-menu-title-right {
- width:84%;
- float:right;
- height:20px;
- background-color:#32578b;
- margin-bottom:10px;
- }
- /* BOX SHARED PROFILE */
- .social-friend-container {
- width:100%;
- overflow:hidden;
- }
- .shared_profile_mygroups_grid_container {
- width:100%;
- overflow:hidden;
- }
- .shared_profile_mygroups_grid_item {
- width:42%;
- float:left;
- height:140px;
- margin:20px;
- }
- .social-menu-group-member {
- float:left;
- height:120px;
- margin:5px;
- overflow:hidden;
- padding:2px;
- width:76px;
- }
-
- /* styles from the my.profile.php file */
- #social_widget {
- /* border:1px dotted #ccc; */
- float:left;
- padding:1px;
- padding-bottom:10px;
- margin-bottom:10px;
- margin-left:0px;
- margin-right:0px;
- /* width:215px; */
- }
- #social_widget_image {
- float:left;
- /*width:190px;*/
- margin-bottom:5px;
- padding:2px;
- }
- /* SOCIAL BOX */
- .social-box-main1 {
- width:100%;
- height:auto;
- overflow:hidden;
- }
- .social-box-left {
- width:345px;
- float:left;
- height:auto;
- margin:0px;
- }
- .social-box-right {
- width:300px;
- float:left;
- height:auto;
- margin-left:10px;
- overflow:hidden;
- }
- .social-box-container1 {
- width:350px;
- height:auto;
- margin-top:10px;
- }
- .social-box-content1 {
- width:330px;
- height:auto;
- padding-left:15px;
- padding-right:10px;
- background-image:url(../../img/boxmygroupscontent.jpg);
- background-repeat:repeat-y;
- overflow:hidden;
- }
- .social-box-main2 {
- height:auto;
- overflow:hidden;
- width:700px;
- }
- .social-box-container2 {
- width:700px;
- height:auto;
- overflow:hidden;
- margin-bottom:20px;
- }
- .social-box-content2 {
- width:660px;
- background-image:url(../../img/content-post-group2.jpg);
- background-repeat:repeat-y;
- padding-left:20px;
- padding-right:20px;
- }
- .social-box-container3 {
- width:110px;
- margin-left:60px;
- }
- .social-box-content3 {
- width:560px;
- height:auto;
- padding-left:20px;
- padding-right:20px;
- background-image:url(../../img/content-post-reply02.jpg);
- background-repeat:repeat-y;
- }
- .box_shared_profile_group_title {
- border-bottom:1pt dotted #000;
- padding:5px;
- vertical-align:middle;
- font-size:12pt;
- font-weight:bold;
- margin-bottom:5px
- }
- .box_shared_profile_group_description {
- height:100px;
- margin-left:65px;
- }
- .box_shared_profile_group_image {
- height:80px;
- width:60px;
- float:left;
- }
- .box_shared_profile_group_actions {
- text-align:right;
- }
- .social-groups-text1 {
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#669;
- }
- .social-groups-text2 {
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#686868;
- font-weight:bold;
- }
- .social-groups-text3 {
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#000;
- font-weight:bold;
- text-transform:capitalize;
- margin-top:5px;
- }
- .social-groups-text4 {
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
- }
- .social-groups-image {
- border: 2px solid #cac9c9;
- }
- .social-groups-home-title {
- border-bottom:1pt dotted #000;
- padding:2px;
- margin-bottom:5px;
- font-weight:bold;
- }
- .social-home-users-online {
- border:3px solid #E6E6E6;
- }
- #social-content-online {
- background-color:#616161;
- margin-bottom:5px;
- margin-top:2px;
- padding:1px;
- }
- #social-group-details {
- margin-bottom:20px;
- }
- .social-group-details-info span {
- color:#777;
- }
- .social-group-details-info {
- padding:2px 0px 2px 0px;
- }
- .social-background-content {
- z-index:5;
- position:relative;
- border:1px dotted #DDDDDD;
- width:170px;
- overflow:hidden;
- }
- .social-background-content .hidden_message {
- cursor:pointer;
- position:absolute;
- top:0px;
- right:0px;
- }
- .hidden_message {
- background-color:#5A5A5A;
- padding:2px;
- margin:0px;
- }
- .hidden_message a {
- color:#fff;
- /* text-decoration: underline; */
- }
- #social-forum-main-title {
- font-size:130%;
- font-weight:bold;
- padding: 0px 8px 0px 8px;
-
- }
- #social-forum-title {
- font-size:130%;
- font-weight:bold;
- padding: 0px 8px 0px 8px;
-
- }
- #social-thread {
- /*-moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px; */
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- border:1px solid #E1E1E0;
- background-color:#E1E1E0;
- padding:8px;
- font-size:110%;
- font-weight:bold;
- }
- #social-post {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- /* -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px; */
- border:1px solid #E1E1E0;
- background-color:#ECECEB;
- padding:12px;
- }
- /* THEMATIC ADVANCE */
- .thematic-postit {
- width:250px;
- height:auto;
- overflow:hidden;
- }
- .thematic-postit-center {
- background-image: url('../../img/postit_center.png');
- height:auto;
- margin-top: 0px;
- margin-bottom:-16px;
- padding-left:20px;
- padding-right:20px;
- padding-bottom:10px;
- padding-top: 5px;
- }
- #titlethematic{
- text-transform: uppercase;
- }
- /* ATTENDANCE */
- div.attendance-calendar-add div.row div.formw,div.attendance-calendar-edit div.row div.formw {
- float: left;
- display:inline;
- width:auto;
- overflow:hidden;
- margin-right:2px;
- margin-top:5px;
- }
- .attendance-calendar-add div.row {
- display:inline;
- }
- .attendance-calendar-edit div.row {
- display:inline;
- }
- .attendance-calendar-row {
- padding:5px;
- }
- .attendance-faults-bar {
- width:90%;
- background-color:none;
- padding:2px;
- font-size:11px;
- }
- /* DASHBOARD */
- /* Head section */
- #head {
- background-color: #000;
- height: 100px;
- }
- #head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
- }
- /* End Head Section */
- /* Columns section */
- #columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
- }
- #columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
- /* To add in 1.8.7*/
- .session_box_title span {
- font-size: 130%;
- font-weight: bold;
- }
- .sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
- }
- #session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
- }
- /* fixes the * */
- span.form_required {
- padding-right:5px;
- }
- .userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 5px 10px;
- height:40px;
- margin:5px;
- }
- .courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
- }
- .courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
- }
- .courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
- }
- #activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
- }
- .userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
- }
- .userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
- }
- .userportal-session-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
- }
- .userportal-session-category-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 16px;
- /* height:40px; */
- /*background-color:#f9f9f9; border:1px solid #dddddd; padding:5px 10px 5px 10px; margin-top: 10px; */
- }
- .catalog_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- }
- .course-student-view-activity-3col {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#FFFFFF;
- height: 350px;
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
- }
- .course-student-view-activity-3col ul {
- padding:10px 20px 10px 20px;
- list-style-type:none;
- /* height:240px; */
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
- float:left;
- width : 280px;
- }
- .course-student-view-activity-3col ul li {
- padding:5px 0px 4px 0px;
- /* float:left;
- width : 380px; */
- }
- /* plugins divs */
- #plugin-header {
- margin-left:65px;
- padding:5px;
- }
- #plugin-mycourses_menu {
- padding:5px;
- }
- #plugin-mycourses_main {
- padding:5px;
- }
- #plugin-footer {
- padding:5px;
- }
- /* Categories courses*/
- #course-picture {
- position:absolute;
- top:8%;
- left:85%;
- padding:4px;
- border:1pt solid #ccc;
- }
- #categories-content-first {
- border:1pt solid #ccc;
- width:290px;
- padding:10px;
- float:left;
- }
- #categories-search {
- border:1pt solid #ccc;
- padding:10px;
- text-align:center;
- height:105px;
- }
- #categories-list {
- border:1pt solid #ccc;
- padding:25px;
- margin-top:10px;
- font-size:11pt;
- }
- #categories-content-second {
- border:1pt solid #ccc;
- margin-left: 315px;
- padding:5px;
- margin-top:5px;
- }
- .categories-block-course {
- border:1pt solid #ccc;
- width:246px;
- height:180px;
- margin:5px;
- float:left;
- padding:5px;
- }
- .categories-course-picture {
- border:1pt solid #ccc;
- width:75px;
- height:75px;
- float:left;
- }
- .categories-course-picture img {
- width: 75px;
- height: 75px;
- }
- .categories-course-description {
- border:1pt solid #ccc;
- margin-left:80px;
- }
- .categories-course-links {
- border:1pt solid #ccc;
- margin-top:5px;
- height: 40px;
- }
- .attendance-users-table td {
- height:66px;
- }
- .attendance-calendar-table td {
- height:66px;
- }
|