default.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  1. /*!
  2. * Rainbow stylesheet - Default v.1.0
  3. * Homepage: https://chamilo.org
  4. * Author: Alex Aragón <alex.aragon@beeznest.com>
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  6. * Based on Bootstrap v3
  7. */
  8. html {
  9. -ms-text-size-adjust: 100%;
  10. -webkit-text-size-adjust: 100%;
  11. }
  12. body {
  13. margin: 0;
  14. font-family: Verdana, Helvetica, Arial, sans-serif !important;
  15. line-height: 1.72222;
  16. background: url('images/bg.png') center center repeat-x;
  17. color: #666;
  18. }
  19. a {
  20. color: #162A83;
  21. text-decoration: none;
  22. }
  23. a:hover,
  24. a:focus {
  25. color: #666;
  26. text-decoration: none;
  27. }
  28. a:focus {
  29. outline: none;
  30. }
  31. hr{
  32. border-top: 1px solid #96bd0d;
  33. }
  34. .avatar-icon{
  35. text-align: center;
  36. padding-bottom: 5px;
  37. padding-top: 5px;
  38. }
  39. .logo-ofaj{
  40. padding: 5px;
  41. margin-bottom: 0;
  42. margin-top: 0;
  43. }
  44. .home-information{
  45. margin: 0;
  46. padding: 0;
  47. }
  48. .home-information .title{
  49. position: static;
  50. font-size: 16px;
  51. margin-top: 20px;
  52. margin-bottom: 12px;
  53. font-weight: bold;
  54. color: #162A83;
  55. }
  56. .home-information .item-icon{
  57. text-align: center;
  58. }
  59. .home-information .item-icon .circle .fa{
  60. color: #FFF;
  61. }
  62. .home-information .item-icon .circle{
  63. width: 75px;
  64. height: 75px;
  65. line-height: 90px;
  66. border-radius: 50%;
  67. background: #162A83;
  68. display: inline-block;
  69. }
  70. .result-body{
  71. background-color: #FFF;
  72. }
  73. #sessionList .list-group .title{
  74. font-size: 12px;
  75. font-weight: normal;
  76. display: inline !important;
  77. }
  78. #session-block .list-group .list-group-item{
  79. float: left;
  80. }
  81. #courseList .list-group .title{
  82. font-size: 12px;
  83. font-weight: normal;
  84. display: inline !important;
  85. }
  86. #course-block .list-group .list-group-item{
  87. float: left;
  88. }
  89. #form-login .form-group{
  90. display: none;
  91. }
  92. #login_block .nav-pills {
  93. margin-bottom: 0;
  94. padding-top: 0;
  95. margin-top: 0;
  96. }
  97. #form-login label{
  98. display:none;
  99. }
  100. #form-login .input-group{
  101. padding-top: 5px;
  102. padding-bottom: 5px;
  103. }
  104. #demo-home{
  105. text-align: center;
  106. margin-top: 1rem;
  107. margin-bottom: 1rem;
  108. padding: 1rem 0;
  109. }
  110. #demo-home .btn-demo{
  111. background-color: #96BD0D;
  112. border-color: #96BD0D;
  113. text-transform: uppercase;
  114. font-weight: bold;
  115. width: 250px;
  116. margin-top: 1.5rem;
  117. padding: 1rem 2rem;
  118. font-size: 1.6rem;
  119. }
  120. #demo-home .btn-demo:hover{
  121. background-color: #6B1D82;
  122. border-color: #6B1D82;
  123. }
  124. #carousel-announcement {
  125. min-height: auto;
  126. margin-bottom: 3rem;
  127. }
  128. .title{
  129. position: static;
  130. font-size: 25px;
  131. margin-top: 32px;
  132. margin-bottom: 12px;
  133. font-weight: bold;
  134. color: #07578A;
  135. }
  136. .title a:hover{
  137. color: #666;
  138. }
  139. .page-faq .title, .page-contact .title{
  140. margin-top: 15px;
  141. margin-bottom: 10px;
  142. }
  143. .ui-widget-content{
  144. color: #666;
  145. }
  146. .ui-widget-header{
  147. color: #666;
  148. }
  149. .page-inscription .page-header{
  150. border: none;
  151. }
  152. .page-inscription .page-header h2{
  153. font-size: 25px;
  154. font-weight: bold;
  155. color: #07578A;
  156. }
  157. .title-green{
  158. position: static;
  159. font-size: 25px;
  160. margin-top: 32px;
  161. margin-bottom: 12px;
  162. font-weight: bold;
  163. color: #96BD0D;
  164. }
  165. .title-green a:hover{
  166. color: #666;
  167. }
  168. .teachers{
  169. margin: 0;
  170. padding: 0;
  171. list-style: none;
  172. display: inline-block;
  173. }
  174. .teachers li{
  175. display: inline-block;
  176. }
  177. .course-items-session img{
  178. display: inline-block;
  179. }
  180. .list-faq{
  181. border: 1px solid #e5e5e5;
  182. border-radius: 5px;
  183. margin-top: 25px;
  184. padding-top: 20px;
  185. padding-bottom: 20px;
  186. margin-bottom: 20px;
  187. }
  188. .list-items-faq{
  189. list-style: none;
  190. padding: 0;
  191. margin: 0;
  192. }
  193. .list-items-faq a{
  194. color: #666;
  195. }
  196. .list-items-faq a:hover{
  197. color: #07578A;
  198. }
  199. .list-faq .list-title{
  200. font-size: 16px;
  201. font-weight: bold;
  202. }
  203. .block-faq .title{
  204. font-size: 20px;
  205. font-weight: bold;
  206. margin-bottom: 30px;
  207. color: #07578A;
  208. }
  209. .page-faq{
  210. padding-left: 30px;
  211. padding-right: 30px;
  212. }
  213. .block-faq .panel-default {
  214. box-shadow: none;
  215. }
  216. .block-faq .panel-default .panel-heading{
  217. font-weight: bold;
  218. font-size: 16px;
  219. background: transparent;
  220. }
  221. .back_to_top{
  222. font-size: 16px;
  223. text-align: center;
  224. }
  225. .back_to_top_wrap{
  226. cursor: pointer;
  227. position: fixed;
  228. right: 0;
  229. top: 50px;
  230. display: none;
  231. }
  232. .back_to_top_wrap:hover{
  233. color: #FFFFFF;
  234. }
  235. .navbar-right{
  236. margin-right: 0;
  237. }
  238. .partners{
  239. text-align: left;
  240. }
  241. .partners a{
  242. display: inline-block;
  243. padding-left: 5px;
  244. padding-right: 5px;
  245. }
  246. .big_icon img{
  247. box-shadow: none;
  248. border: none;
  249. }
  250. .big_icon img:hover{
  251. box-shadow: none;
  252. border: none;
  253. }
  254. footer #footer_right{
  255. text-align: right;
  256. }
  257. /* Menu Option */
  258. .item-menu{
  259. text-align: center;
  260. }
  261. .item-menu a{
  262. color: #fff !important;
  263. font-size: 15px;
  264. }
  265. .navbar-collapse{
  266. padding: 0;
  267. }
  268. .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover{
  269. background-color: #8A3BA2;
  270. }
  271. #formLogin .input-group .input-group-addon .fa{
  272. color: #162A83;
  273. }
  274. .grid-courses .items .image .user-actions .btn .fa{
  275. color: #162A83;
  276. }
  277. .hot-courses .grid-courses .items .toolbar{
  278. display: none;
  279. }
  280. .hot-courses .grid-courses .items{
  281. min-height: 220px;
  282. }
  283. #latest_pages .section-title{
  284. margin-bottom: 35px;
  285. }
  286. .statistics{
  287. padding-top: 20px;
  288. padding-bottom: 20px;
  289. margin-top: 10px;
  290. margin-bottom: 10px;
  291. }
  292. .section-notice{
  293. padding-top: 20px;
  294. padding-bottom: 20px;
  295. margin-top: 10px;
  296. margin-bottom: 10px;
  297. }
  298. .section-notice .items{
  299. padding-left: 10px;
  300. padding-right: 10px;
  301. }
  302. .section-notice .items .description .title{
  303. margin-top: 10px;
  304. }
  305. .section-notice .items .title a{
  306. color: #162A83;
  307. font-size: 14px;
  308. font-weight: 700;
  309. }
  310. .section-notice .items .title a:hover{
  311. color: #666666;
  312. font-weight: 700;
  313. }
  314. .section-notice .items .image .sonata-media-block-media-container img,
  315. #latest_blocks .container.section-notice .items .image .sonata-media-block-feature-media-container img{
  316. width: 100%;
  317. height: 100%;
  318. }
  319. .section-notice .items .date{
  320. color: #888;
  321. padding-top: 5px;
  322. padding-bottom: 10px;
  323. }
  324. .section-global #breadcrumb-bar{
  325. display: none;
  326. }
  327. .grid-courses .session .session-name{
  328. color: #E53140;
  329. }
  330. .grid-courses .items.session{
  331. min-height: 230px;
  332. border: 1px solid #19BF69;
  333. }
  334. .section-title{
  335. font-size: 28px;
  336. color: #96BD0D;
  337. text-align: center;
  338. }
  339. .statistics .icon-color{
  340. color: #96BD0D;
  341. }
  342. .statistics .number{
  343. color: #96BD0D;
  344. font-weight: 700;
  345. }
  346. .statistics .text{
  347. color: #162A83;
  348. }
  349. .statistics .items{
  350. padding: 0;
  351. margin: 0;
  352. list-style: none;
  353. margin-left: 90px;
  354. }
  355. .statistics .items li{
  356. display: inline-block;
  357. padding-right: 10px;
  358. }
  359. .statistics .items li h2{
  360. padding: 0;
  361. margin: 0;
  362. }
  363. .welcome-home-top-temp{
  364. padding: 0;
  365. margin: 0;
  366. }
  367. #content-section, #page-wrap{
  368. margin-bottom: 250px;
  369. }
  370. .welcome-home-top-temp h1{
  371. color: #E53140;
  372. }
  373. .welcome-home-top-temp p{
  374. font-size: 20px;
  375. }
  376. #carousel-announcement .carousel-indicators .active{
  377. background: #162A83;
  378. }
  379. .carousel-indicators li{
  380. border: none;
  381. }
  382. #carousel-announcement .carousel-indicators li{
  383. width: 15px;
  384. height: 15px;
  385. }
  386. .carousel-control{
  387. opacity: 1;
  388. }
  389. .carousel-control:focus, .carousel-control:hover{
  390. opacity: 1;
  391. color: #162A83;
  392. }
  393. .form-horizontal .progress{
  394. margin-top: 10px;
  395. }
  396. .navbar{
  397. border-radius: 0;
  398. }
  399. .navbar {
  400. background: #96BD0D;
  401. border: none;
  402. }
  403. .nav li a{
  404. padding: 10px 20px;
  405. }
  406. .navbar-nav li a{
  407. font-weight: bold;
  408. line-height: 25px;
  409. padding-top: 12.5px;
  410. padding-bottom: 12.5px;
  411. }
  412. .navbar-collapse{
  413. overflow: hidden !important;
  414. }
  415. .navbar-default .navbar-nav > li > a:focus,
  416. .navbar-default .navbar-nav > li > a:hover {
  417. color: #A4DC2D;
  418. }
  419. .navbar-default .navbar-nav > .active > a,
  420. .navbar-default .navbar-nav > .active > a:hover,
  421. .navbar-default .navbar-nav > .active > a:focus{
  422. color: #fff;
  423. background:#6B1D82;
  424. }
  425. .navbar-default .navbar-nav > li > a{
  426. color: #333333;
  427. }
  428. .navbar-default .navbar-nav > .open > a,
  429. .navbar-default .navbar-nav > .open > a:hover,
  430. .navbar-default .navbar-nav > .open > a:focus{
  431. background: #07578a;
  432. }
  433. .navbar-nav > li > .dropdown-menu{
  434. min-width: 100%;
  435. margin-top: 2px;
  436. border-radius: 4px;
  437. -webkit-border-radius: 4px;
  438. -moz-border-radius: 4px;
  439. }
  440. .navbar-default .navbar-nav > .open > .dropdown-menu{
  441. padding: 3px 4px;
  442. }
  443. .navbar-default .navbar-nav > .open > .dropdown-menu > li > a{
  444. padding: 6px 9px;
  445. border-radius: 4px;
  446. -webkit-border-radius: 4px;
  447. -moz-border-radius: 4px;
  448. font-weight: normal;
  449. }
  450. .navbar-right .dropdown .dropdown-toggle{
  451. padding-top: 7px;
  452. padding-bottom: 7px;
  453. }
  454. .dropdown-toggle .img-circle{
  455. border: 2px solid #ccc;
  456. }
  457. .navbar-default .navbar-nav > .open > a,
  458. .navbar-default .navbar-nav > .open > a:hover,
  459. .navbar-default .navbar-nav > .open > a:focus{
  460. background-color: #6B1D82;
  461. padding-bottom: 7px;
  462. padding-top: 7px;
  463. color: #FFF;
  464. }
  465. .navbar-default .navbar-nav > li > a:focus,
  466. .navbar-default .navbar-nav > li > a:hover{
  467. color: #FFF;
  468. }
  469. .nav > li > a:hover, .nav > li > a:focus{
  470. background-color: transparent;
  471. }
  472. .btn-primary{
  473. background-color: #162A83;
  474. border-color: #162A83;
  475. }
  476. .btn-primary:hover{
  477. background-color: #000080;
  478. border-color: #000080;
  479. }
  480. .page-inscription .btn-default{
  481. background-color: #162A83;
  482. border-color: #162A83;
  483. color: #FFF;
  484. }
  485. .page-inscription .dropdown-toggle.btn-default{
  486. background-color: #FFF;
  487. border-color: #CCC;
  488. color: #333;
  489. }
  490. #extra_terms_datedenaissance_alt{
  491. background: #FFF;
  492. }
  493. .navbar-inverse li a{
  494. line-height: 30px;
  495. background: none !important;
  496. font-size: 12px;
  497. font-weight: normal;
  498. padding-top: 5px;
  499. padding-right: 10px;
  500. padding-left: 10px;
  501. padding-bottom: 5px;
  502. }
  503. .navbar-fixed-top .navbar-collapse{
  504. min-height:auto;
  505. }
  506. .navbar-inverse .navbar-brand{
  507. padding: 10px;
  508. font-size: 14px;
  509. height: auto;
  510. }
  511. .navbar-form .form-control{
  512. height: 25px;
  513. padding: 6px;
  514. }
  515. .navbar-fixed-top{
  516. min-height: 40px;
  517. }
  518. .navbar-fixed-top .dropdown-menu li a{
  519. line-height: 20px;
  520. }
  521. .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus{
  522. color: #ffffff;
  523. }
  524. .navbar-inverse li a:hover {
  525. background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d) !important;
  526. background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d) !important;
  527. background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d)) !important;
  528. background-image: linear-gradient(#020202, #101112 40%, #191b1d) !important;
  529. background-repeat: no-repeat !important;
  530. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0) !important;
  531. -webkit-filter: none !important;
  532. filter: none !important;
  533. border-left-color: transparent !important;
  534. }
  535. .navbar-inverse .dropdown-menu li a:hover,
  536. .navbar-inverse .dropdown-menu li a:focus{
  537. background:#3C4147 !important;
  538. color: #fff;
  539. }
  540. .grid-courses .items .title{
  541. font-size: 12px;
  542. font-weight: bold;
  543. min-height: 35px;
  544. }
  545. .badge-warning{
  546. background-color: #6D237D;
  547. }
  548. .breadcrumb{
  549. padding: 8px 15px;
  550. margin-bottom: 21px;
  551. list-style: outside none none;
  552. background: transparent;
  553. font-size: 12px;
  554. color: #6B1D82;
  555. border-radius: 0;
  556. border-bottom: 1px solid #96bd0d;
  557. }
  558. .view-options {
  559. padding-top: 0;
  560. padding-right: 0;
  561. }
  562. .breadcrumb a{
  563. color: #6B1D82;
  564. }
  565. #scorm-panel .panel.panel-default{
  566. margin-top:0 ;
  567. border-bottom: 1px solid #84bd00;
  568. border-radius: 0;
  569. }
  570. .panel-default{
  571. border-color: #ddd;
  572. }
  573. .panel-default .panel-heading{
  574. color: #666;
  575. background-color:#ECF0F1;
  576. border-color: #ECF0F1;
  577. }
  578. .menu-column .nav li a img{
  579. vertical-align: middle;
  580. }
  581. .form-horizontal .control-label{
  582. font-size: 12px;
  583. }
  584. .panel-default .panel-heading h4{
  585. font-size: 12px;
  586. }
  587. .question_row_score .title-score .total{
  588. background: #FFF;
  589. color: #162A83;
  590. border: none;
  591. text-align: left;
  592. }
  593. .question_row_score .title-score .total h3{
  594. font-weight: bold;
  595. }
  596. .question_row_answer{
  597. border: none;
  598. }
  599. .table.table-striped tr td p span,
  600. .table.table-striped tr td span{
  601. color: #162A83 !important;
  602. }
  603. .table.table-striped tr td span.label-info{
  604. background-color: #162A83 !important;
  605. color: #FFF !important;
  606. width: 100%;
  607. display: inline-block;
  608. }
  609. .main-question .question_description p span{
  610. color: #162A83 !important;
  611. }
  612. .main-question .question_options label p span{
  613. color: #162A83 !important;
  614. }
  615. .question_row_answer .question_description p span{
  616. color: #162A83 !important;
  617. }
  618. .table.table-striped tr th{
  619. color: #162A83 !important;
  620. border-top: 1px solid #84bd00;
  621. padding: 8px 0;
  622. }
  623. .table.table-striped tr td{
  624. border-top: 1px solid #84bd00;
  625. padding: 8px 0;
  626. }
  627. .feedbaak-question{
  628. margin-top: 5px;
  629. margin-bottom: 5px;
  630. display: block;
  631. }
  632. .feedbaak-question img{
  633. padding-right: 5px;
  634. }
  635. .table.table-striped tr td span.feedback-red{
  636. color: #162a83 !important;
  637. text-decoration:line-through;
  638. padding-top: 5px;
  639. padding-bottom: 5px;
  640. font-size: 14px;
  641. }
  642. .table.table-striped tr td span.feedback-green{
  643. color: #96BD0D !important;
  644. padding-top: 5px;
  645. padding-bottom: 5px;
  646. font-size: 14px;
  647. }
  648. .feedbaak-question .feedback-separator{
  649. color:#162a83;
  650. font-weight: bold;
  651. padding-top: 5px;
  652. padding-bottom: 5px;
  653. }
  654. .ribbon{
  655. background: #FFFFFF;
  656. border: none;
  657. box-shadow: none;
  658. }
  659. .ribbon h4{
  660. color: #FFF;
  661. }
  662. .question_row_answer .page-header{
  663. font-weight: normal;
  664. font-size: 22px;
  665. margin: 5px 0;
  666. }
  667. .score-title{
  668. color: #162a83;
  669. font-weight: bold;
  670. font-size: 16px;
  671. }
  672. .score-limits{
  673. padding-top: 5px;
  674. padding-bottom: 5px;
  675. }
  676. .score-limits .score-img{
  677. display: inline-block;
  678. padding-right: 5px;
  679. }
  680. /* bar progress */
  681. .progress{
  682. background: #FFF;
  683. border: 1px solid #162A83;
  684. border-radius: 0;
  685. text-shadow:none;
  686. }
  687. .progress-bar{
  688. color: #162A83;
  689. }
  690. .progress-bar-success{
  691. background-color: #96bd0d;
  692. }
  693. .scorm-header .progress-bar-success{
  694. background-color: #772583;
  695. }
  696. .scorm-header .progress-bar{
  697. color: #FFF;
  698. }
  699. .page-header{
  700. color: #162a83;
  701. border-bottom: none;
  702. font-weight: bold;
  703. }
  704. /* table ofaj */
  705. .table-ofaj{
  706. border-top: 1px solid #96bd0d;
  707. margin-top: 20px;
  708. }
  709. .table-ofaj .table-header{
  710. font-size: 14px;
  711. color: #162a83;
  712. }
  713. .table-ofaj .table-header th{
  714. border-bottom: 1px solid #96bd0d;
  715. padding-top: 20px;
  716. }
  717. .table-ofaj tbody tr td{
  718. border-top: 1px solid #96bd0d;
  719. }
  720. .exercise_description{
  721. padding: 0px 0px 10px 0px;
  722. border-bottom: none;
  723. margin-bottom: 5px;
  724. }
  725. .alert.alert-info.hotspot{
  726. font-size: 14px;
  727. color: #162A83;
  728. background-color: #FFF;
  729. border-bottom: 1px solid #96bd0d;
  730. border-top: 1px solid #96bd0d;
  731. border-radius: 0;
  732. font-weight: bold;
  733. border-left: none;
  734. border-right: none;
  735. }
  736. .well{
  737. background-color: #96bd22;
  738. border: none;
  739. color: #FFFFFF;
  740. }
  741. .well-sm{
  742. border-radius: 0;
  743. }
  744. .well .page-header{
  745. color: #FFFFFF;
  746. }
  747. .hotspot-image{
  748. /*margin: auto;*/
  749. /*border: 2px solid #e3e3e3;*/
  750. /*padding: 10px;*/
  751. }
  752. .sidebar-well .well{
  753. border-radius: 0;
  754. }
  755. .btn.btn-info{
  756. background-color: #84bd00;
  757. border-color: #84bd00;
  758. border-radius: 0;
  759. font-size: 12px;
  760. }
  761. .btn.btn-info:hover{
  762. background-color: #6d9b00;
  763. border-color: #6d9b00;
  764. border-radius: 0;
  765. font-size: 12px;
  766. }
  767. table.matching tr td span.label-danger{
  768. background-color: #162a83;
  769. color: #FFF !important;
  770. border-radius: 0;
  771. width: 100%;
  772. display: inline-block;
  773. }
  774. table.table-striped tr td span.label-danger{
  775. background-color: #162a83;
  776. color: #FFF !important;
  777. border-radius: 0;
  778. width: 100%;
  779. display: inline-block;
  780. }
  781. table.matching tr td span.label-success{
  782. background-color: #96BD0D;
  783. color: #FFF !important;
  784. border-radius: 0;
  785. width: 100%;
  786. display: block;
  787. }
  788. table.table-striped tr td span.label-success{
  789. background-color: #96BD0D;
  790. color: #FFF !important;
  791. border-radius: 0;
  792. width: 100%;
  793. display: block;
  794. }
  795. .table-striped>tbody>tr:nth-of-type(odd){
  796. background-color: #FFF;
  797. }
  798. .remaining .alert .btn .fa{
  799. display: none;
  800. }
  801. .remaining .alert .btn {
  802. font-weight: bold;
  803. font-size: 14px;
  804. }
  805. /* Jquery UI */
  806. .ui-accordion .ui-accordion-icons{
  807. padding-left: 0.2em;
  808. }
  809. /* End Jquery UI */
  810. .footer .pre-footer{
  811. padding-bottom: 5px;
  812. padding-top: 5px;
  813. margin-bottom: 10px;
  814. }
  815. footer .sub-footer{
  816. background-color:#ECECEC;
  817. padding-top: 10px;
  818. padding-bottom: 10px;
  819. }
  820. footer{
  821. color: #333333;
  822. }
  823. footer a{
  824. color: #666666;
  825. }
  826. footer a:hover{
  827. color: #96BD0D;
  828. }
  829. .navbar-default .navbar-brand {
  830. color:white;
  831. }
  832. .navbar-default .navbar-collapse, .navbar-default .navbar-form{
  833. border-color: #00677C;
  834. }
  835. .navbar-default .navbar-toggle{
  836. border: none;
  837. background-color: #000080;
  838. }
  839. .navbar-default .navbar-toggle .icon-bar{
  840. background-color: #ffffff;
  841. }
  842. .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover{
  843. background-color: #00677C;
  844. }
  845. .page-header{
  846. margin: 10px 0 10px;
  847. }
  848. #user_form .form-horizontal{
  849. font-size: 13px;
  850. }
  851. .form-horizontal .holder{
  852. border: none;
  853. }
  854. .form-horizontal .ul.holder li.bit-input input{
  855. width: 514px;
  856. border: 1px solid #cccccc !important;
  857. }
  858. legend{
  859. font-size: 18px;
  860. }
  861. .legend .panel-body{
  862. font-size: 13px;
  863. }
  864. .items .sonata-media-block-media-container{
  865. float: left;
  866. padding-right: 10px;
  867. padding-top: 5px;
  868. }
  869. #carousel-announcement .carousel-indicators li{
  870. border: 1px solid #162A83;
  871. }
  872. .ofaj-search .text-info{
  873. color: #888;
  874. }
  875. .ofaj-search .col-sm-8{
  876. width: 50.666%;
  877. }
  878. .ofaj-search .col-sm-2{
  879. width: 17.667%;
  880. }
  881. .ofaj-search .col-sm-2.control-label{
  882. width: 31.667%;
  883. font-weight: normal;
  884. }
  885. .required:before {
  886. content: "* ";
  887. color: #f00;
  888. }
  889. #breadcrumb-bar #view_as_link {
  890. padding-top: 0px;
  891. margin-right: 5px;
  892. }
  893. .sticky-footer {
  894. padding-bottom: 0;
  895. }
  896. .navbar-brand{
  897. display: none;
  898. }
  899. .block-items-admin{
  900. font-size: 12px;
  901. }
  902. .cookieUsageValidation{
  903. background-color: #ECECEC;
  904. color: #666;
  905. position: fixed;
  906. z-index: 999;
  907. width: 100%;
  908. padding: 15px 10px;
  909. border-bottom: 2px solid #D8D8D8;
  910. }
  911. .cookieUsageValidation .more{
  912. padding-top: 10px;
  913. padding-bottom: 10px;
  914. }
  915. .cookieUsageValidation .more a{
  916. color: #96BD0D;
  917. }
  918. .cookieUsageValidation .link{
  919. cursor: pointer;
  920. margin-left: 10px;
  921. padding: 6px 12px;
  922. margin-bottom: 0;
  923. font-size: 12px;
  924. font-weight: 400;
  925. line-height: 1.42857143;
  926. text-align: center;
  927. white-space: nowrap;
  928. vertical-align: middle;
  929. border: 1px solid #6B1D82;
  930. border-radius: 4px;
  931. background-color: #6B1D82;
  932. color: #FFF;
  933. }
  934. .cookieUsageValidation .link:hover{
  935. color: #FFF;
  936. background-color: #162A83;
  937. border-color: #162A83;
  938. }
  939. .question-result .dl-horizontal {
  940. display:none;
  941. }
  942. .bootstrap-select .dropdown-toggle.bs-placeholder,
  943. .bootstrap-select .dropdown-toggle.bs-placeholder:active,
  944. .bootstrap-select .dropdown-toggle.bs-placeholder:focus,
  945. .bootstrap-select .dropdown-toggle.bs-placeholder:hover{
  946. height: 30px;
  947. }
  948. .bootstrap-select .dropdown-toggle.bs-placeholder.btn-default{
  949. border: 1px solid;
  950. border-color: #162a83;
  951. border-radius: 0;
  952. }
  953. .bootstrap-select .dropdown-toggle.btn-default{
  954. border: 1px solid;
  955. border-color: #162a83;
  956. border-radius: 0;
  957. }
  958. .bootstrap-select .dropdown-toggle.btn-default.active,
  959. .bootstrap-select .dropdown-toggle.btn-default:active,
  960. .bootstrap-select.open .dropdown-toggle.btn-default{
  961. background-color: #162a83;
  962. color: #FFF;
  963. }
  964. .bootstrap-select .dropdown-menu{
  965. border-color: #162a83;
  966. }
  967. .dropdown-toggle.bs-placeholder.btn-default{
  968. border-color: #162a83;
  969. border-radius: 0;
  970. }
  971. .bootstrap-select.btn-group .dropdown-toggle .caret{
  972. color: #82BB25;
  973. }
  974. .bootstrap-select .dropdown-menu li a:focus,
  975. .bootstrap-select .dropdown-menu>li>a:hover{
  976. background-color: #162a83;
  977. color: #FFF;
  978. }
  979. .main-question .question_title img{
  980. display: none;
  981. }
  982. .main-question {
  983. border-color: #FFFFFF;
  984. padding: 0;
  985. }
  986. .main-question .question_title,
  987. .main-question .question_description,
  988. .main-question .question_options{
  989. color: #162A83;
  990. }
  991. .main-question .question_title{
  992. font-size: 14px;
  993. font-weight: bold;
  994. font-family: Verdana;
  995. }
  996. .question_options .ui-widget{
  997. padding: 0;
  998. }
  999. .question-list-description-block select.selectpicker{
  1000. display: block!important;
  1001. }
  1002. .exercise-container{
  1003. padding: 0;
  1004. }
  1005. .exercise-container .title{
  1006. color: #162a83;
  1007. margin: 0;
  1008. }
  1009. .exercise-container .title h2{
  1010. padding: 0;
  1011. margin: 0;
  1012. }
  1013. .exercise-container .description{
  1014. color: #162a83;
  1015. }
  1016. .exercise-container .description p span,
  1017. .exercise-container .description span{
  1018. color: #162a83 !important;
  1019. }
  1020. .exercise-container .attempts{
  1021. padding-top: 10px;
  1022. padding-bottom: 10px;
  1023. }
  1024. .exercise-container .attempts-status{
  1025. list-style: none;
  1026. display: block;
  1027. padding:0;
  1028. margin: 0;
  1029. }
  1030. .exercise-container .attempts-status li{
  1031. display: inline-block;
  1032. }
  1033. .exercise-container .details{
  1034. padding-top: 10px;
  1035. padding-bottom: 10px;
  1036. color: #162a83;
  1037. }
  1038. #exercise-description #exercise-collapse p span,
  1039. #exercise-description #exercise-collapse span{
  1040. color: #162a83 !important;
  1041. }
  1042. .btn-exercise,
  1043. .form-actions .btn-warning.question-validate-btn{
  1044. background-color: #162A83;
  1045. border-color: #162A83;
  1046. border-radius: 0;
  1047. font-weight: bold;
  1048. font-size: 12px;
  1049. }
  1050. .btn-exercise:hover,
  1051. .form-actions .btn-warning.question-validate-btn:hover{
  1052. background-color: #772583;
  1053. border-color: #772583;
  1054. }
  1055. .form-actions .btn-info{
  1056. background-color: #84bd00;
  1057. border-color: #84bd00;
  1058. border-radius: 0;
  1059. font-weight: bold;
  1060. font-size: 12px;
  1061. }
  1062. .form-actions .btn-info:hover{
  1063. background-color: #6d9b00;
  1064. border-color: #6d9b00;
  1065. }
  1066. .exercise-btn{
  1067. margin-top: 10px;
  1068. }
  1069. .mejs__container.mejs__audio{
  1070. width: 100%!important;
  1071. height: 250px!important;
  1072. margin-bottom: 30px;
  1073. }
  1074. .mejs__container.mejs__audio .mejs__layers{
  1075. background: url(images/audio-background.jpg) center center;
  1076. background-size: cover;
  1077. height: 250px!important;
  1078. width: 100%!important;
  1079. }
  1080. .mejs__container.mejs__audio .mejs__layers .mejs__poster.mejs__layer{
  1081. background: url(images/icon-sound.png) no-repeat center center;
  1082. display: inline-block !important;
  1083. height: 250px!important;
  1084. width: 100%!important;
  1085. }
  1086. .mejs__container.mejs__audio .mejs__controls{
  1087. background: rgba(255,255,255,0.45)
  1088. }
  1089. #exercise-description.panel-default{
  1090. color: #162A83;
  1091. }
  1092. #exercise-description.panel-default{
  1093. border: none;
  1094. }
  1095. #exercise-description.panel-default .panel-heading{
  1096. background: none;
  1097. border-radius: 0;
  1098. border-top: 1px solid #96BD0D;
  1099. border-bottom: 1px solid #96BD0D;
  1100. color: #162A83;
  1101. margin-bottom: 20px;
  1102. }
  1103. .section-mycourses #exercise_form{
  1104. margin-left: 15px;
  1105. }
  1106. .section-mycourses .panel.panel-default{
  1107. border: none;
  1108. }
  1109. .section-mycourses .panel.panel-default .panel-body{
  1110. padding: 0;
  1111. }
  1112. .section-mycourses .panel.panel-default .panel-body .question_row_answer{
  1113. padding: 10px;
  1114. }
  1115. .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
  1116. width: 350px;
  1117. margin-bottom: 5px;
  1118. margin-left: 15px;
  1119. margin-top: 5px;
  1120. }
  1121. .question_options ul.exercise-draggable-answer{
  1122. list-style: none;
  1123. padding: 0;
  1124. margin: 0;
  1125. }
  1126. ul.exercise-draggable-answer.list-inline li{
  1127. /*float: none;*/
  1128. /*width: 100%;*/
  1129. }
  1130. ul.exercise-draggable-answer .touch-items{
  1131. background: #FFFFFF;
  1132. border-radius: 0;
  1133. border-color: #162a83;
  1134. padding: 5px;
  1135. color: #162a83;
  1136. text-align: left;
  1137. }
  1138. ul.exercise-draggable-answer .touch-items:hover{
  1139. background: #772583;
  1140. color: #FFFFFF;
  1141. }
  1142. .question_options .droppable-item{
  1143. background-color: #84bd00;
  1144. color: #FFF;
  1145. /* padding: 10px;*/
  1146. padding: 3px 0px 3px 5px;
  1147. }
  1148. .question_options .droppable-item .number{
  1149. font-size: 13px;
  1150. font-weight: bold;
  1151. /* width: 30px; */
  1152. display: inline-block;
  1153. }
  1154. .question_options .droppable{
  1155. background: none;
  1156. border: none;
  1157. border-radius: 0;
  1158. min-height: 40px;
  1159. display: inline-block;
  1160. width: 85%;
  1161. margin-bottom: 0px;
  1162. }
  1163. .section-results .alert table{
  1164. width: 100% !important;
  1165. }
  1166. .question-result .page-header img{
  1167. display: none;
  1168. }
  1169. .question_options .droppable .gallery .exercise-draggable-answer-option{
  1170. background: #FFF;
  1171. border: 1px solid #162a83;
  1172. text-align: left;
  1173. border-radius: 0;
  1174. margin-left: 20px;
  1175. float: left;
  1176. color: #162a83;
  1177. }
  1178. .question_options .droppable .gallery .exercise-draggable-answer-option{
  1179. margin-left: 0;
  1180. }
  1181. .question_row_answer .table.table-striped tbody tr:nth-of-type(2n+1){
  1182. background: transparent;
  1183. }
  1184. .drag_question .window{
  1185. padding: 10px 20px;
  1186. border: 1px solid #162A83;
  1187. border-radius: 0;
  1188. min-height: 45px;
  1189. }
  1190. .drag_question .window p{
  1191. margin: 0;
  1192. }
  1193. .drag_question .window.window_right_question{
  1194. border-color: #96BD0D;
  1195. font-weight: bold;
  1196. }
  1197. .drag_question .window.window_right_question,
  1198. .drag_question .window.window_left_question
  1199. {
  1200. background: #FFFFFF;
  1201. }
  1202. .drag_question .window.window_right_question p{
  1203. padding-left: 20px;
  1204. }
  1205. .drag_question .window.window_left_question p{
  1206. padding-right: 20px;
  1207. }
  1208. .drag_question ._jsPlumb_endpoint{
  1209. cursor: pointer;
  1210. }
  1211. svg path{
  1212. stroke: rgb(22,42,131);
  1213. stroke-width: 2;
  1214. }
  1215. svg circle{
  1216. /*fill:rgb(255,255,255);
  1217. stroke:rgb(132,189,0);
  1218. stroke-width: 2;
  1219. r: 10;
  1220. cy:15;
  1221. cx:15;*/
  1222. }
  1223. .point_end ._jsPlumb_endpoint svg circle{
  1224. fill:rgb(255,255,255);
  1225. stroke:rgb(22,42,131);
  1226. stroke-width: 2;
  1227. r: 10;
  1228. cy:15;
  1229. cx:15;
  1230. }
  1231. .question_options input[type="text"]{
  1232. border:1px solid #162A83;
  1233. background-color:#FFFFFF;
  1234. margin-left: 10px;
  1235. margin-right: 10px;
  1236. border-radius: 0;
  1237. }
  1238. .drag_question .select-matching{
  1239. border:1px solid #162A83;
  1240. border-radius: 0;
  1241. }
  1242. .mejs__overlay-button {
  1243. position: absolute;
  1244. top: 40%;
  1245. left: 45%;
  1246. width: 200px;
  1247. height: 200px;
  1248. margin: -50px 0 0 -50px;
  1249. background: url(images/bigplay.svg) no-repeat;
  1250. }
  1251. .mejs__overlay:hover .mejs__overlay-button {
  1252. background-position: 0 -200px;
  1253. }
  1254. .mejs__container.mejs__video{
  1255. margin-top: 20px;
  1256. margin-bottom: 20px;
  1257. }
  1258. .mejs__container .mejs__controls {
  1259. position: absolute;
  1260. list-style-type: none;
  1261. margin: 0;
  1262. padding: 0;
  1263. bottom: 0;
  1264. left: 0;
  1265. background: url(background.png);
  1266. background: -moz-linear-gradient(top, rgba(211,211,211,0.8) 0%, rgba(142,142,142,1) 100%); /* FF3.6-15 */
  1267. background: -webkit-linear-gradient(top, rgba(211,211,211,0.8) 0%,rgba(142,142,142,1) 100%); /* Chrome10-25,Safari5.1-6 */
  1268. background: linear-gradient(to bottom, rgba(211,211,211,0.8) 0%,rgba(142,142,142,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  1269. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccd3d3d3', endColorstr='#8e8e8e',GradientType=0 ); /* IE6-9 */
  1270. width: 100%;
  1271. }
  1272. .mejs__controls .mejs__time-rail .mejs__time-loaded{
  1273. background: #0e0e0e; /* Old browsers */
  1274. background: -moz-linear-gradient(top, #0e0e0e 0%, #4c4c4c 99%); /* FF3.6-15 */
  1275. background: -webkit-linear-gradient(top, #0e0e0e 0%,#4c4c4c 99%); /* Chrome10-25,Safari5.1-6 */
  1276. background: linear-gradient(to bottom, #0e0e0e 0%,#4c4c4c 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  1277. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e0e0e', endColorstr='#4c4c4c',GradientType=0 ); /* IE6-9 */
  1278. }
  1279. .mejs__controls .mejs__time-rail .mejs__time-current{
  1280. background: #9dd53a; /* Old browsers */
  1281. background: -moz-linear-gradient(top, #9dd53a 0%, #7cbc0a 100%); /* FF3.6-15 */
  1282. background: -webkit-linear-gradient(top, #9dd53a 0%,#7cbc0a 100%); /* Chrome10-25,Safari5.1-6 */
  1283. background: linear-gradient(to bottom, #9dd53a 0%,#7cbc0a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  1284. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dd53a', endColorstr='#7cbc0a',GradientType=0 ); /* IE6-9 */
  1285. }
  1286. .drag_question{
  1287. padding: 0;
  1288. margin-top: 30px;
  1289. }
  1290. @font-face {
  1291. font-family: 'icomoon';
  1292. src:url('icons/icomoon.eot?-8aafzo');
  1293. src:url('icons/icomoon.eot?#iefix-8aafzo') format('embedded-opentype'),
  1294. url('icons/icomoon.woff?-8aafzo') format('woff'),
  1295. url('icons/icomoon.ttf?-8aafzo') format('truetype'),
  1296. url('icons/icomoon.svg?-8aafzo#icomoon') format('svg');
  1297. font-weight: normal;
  1298. font-style: normal;
  1299. }
  1300. .icon-checkradios-checkmark, .icon-checkradios-circle{
  1301. font-family: 'icomoon';
  1302. speak: none;
  1303. font-style: normal;
  1304. font-weight: normal;
  1305. font-variant: normal;
  1306. text-transform: none;
  1307. line-height: 1;
  1308. /* Better Font Rendering =========== */
  1309. -webkit-font-smoothing: antialiased;
  1310. -moz-osx-font-smoothing: grayscale;
  1311. }
  1312. /*Icon Placeholder*/
  1313. .checkradios-checkbox:after,.checkradios-radio:after{
  1314. content:"";
  1315. height:100%;
  1316. width:100%;
  1317. position:relative;
  1318. display:block;
  1319. vertical-align:bottom;
  1320. }
  1321. /*Icons*/
  1322. .icon-checkradios-checkmark:before {
  1323. content: "\e600";
  1324. color: #96BD0D;
  1325. }
  1326. .icon-checkradios-circle:before {
  1327. content: "\e601";
  1328. color: #96BD0D;
  1329. }
  1330. /*
  1331. Default Styles for checkradios
  1332. */
  1333. .checkradios-checkbox, .checkradios-radio{
  1334. font-size:16px;
  1335. position:relative;
  1336. display:inline-block;
  1337. vertical-align:bottom;
  1338. text-align:center;
  1339. border:2px solid #162A83;
  1340. color:#162A83;
  1341. width:1em;
  1342. height:1em;
  1343. cursor:pointer;
  1344. padding:0.2em;
  1345. -moz-box-sizing: content-box;
  1346. -webkit-box-sizing: content-box;
  1347. box-sizing: content-box;
  1348. overflow:hidden;
  1349. }
  1350. .question_options .checkbox b span,
  1351. .question_options .checkbox span{
  1352. color: #162A83 !important;
  1353. }
  1354. .checkradios-radio{
  1355. -moz-border-radius: 50%;
  1356. -webkit-border-radius: 50%;
  1357. border-radius: 50%;
  1358. }
  1359. /*Focus*/
  1360. .checkradios-checkbox.focus, .checkradios-radio.focus{
  1361. -webkit-box-shadow:0px 0px 3px rgba(22,150,255,0.9);
  1362. -moz-box-shadow:0px 0px 3px rgba(22,150,255,0.9);
  1363. box-shadow:0px 0px 3px rgba(22,150,255,0.9);
  1364. border-color:#1696f1;
  1365. }
  1366. /*Hide original*/
  1367. .checkradios-checkbox input[type=checkbox], .checkradios-radio input[type=radio]{
  1368. margin:0;
  1369. position:absolute;
  1370. top:0;
  1371. left:-9999%;
  1372. width:100%;
  1373. height:100%;
  1374. position:absolute;
  1375. display:inline-block;
  1376. vertical-align:bottom;
  1377. }
  1378. .section-notifications{
  1379. display: none;
  1380. }
  1381. .radio {
  1382. display: block;
  1383. width: 100%;
  1384. }
  1385. .radio .checkradios-radio{
  1386. display: inline-block;
  1387. }
  1388. .radio p{
  1389. display: inline-block;
  1390. margin: 0;
  1391. }
  1392. .question_row_answer{
  1393. color: #162a83;
  1394. }
  1395. .result-body .exercise_description span,
  1396. .result-body .exercise_description p,
  1397. .result-body .exercise_description p span{
  1398. color: #162a83 !important;
  1399. }
  1400. .exercise-message .alert.alert-info{
  1401. color: #FFFFFF !important;
  1402. background-color: #84bd00 !important;
  1403. border-color: #84bd00 !important;
  1404. border-radius: 0;
  1405. }
  1406. .exercise_description p{
  1407. color: #162a83 !important;
  1408. }
  1409. .question_options input[type="text"]{
  1410. padding: 5px;
  1411. }
  1412. .alert.alert-info{
  1413. background-color: #84bd00;
  1414. border: none;
  1415. border-radius: 0;
  1416. color: #FFF;
  1417. }
  1418. .alert.alert-warning{
  1419. background-color: #FFF;
  1420. border-left: none;
  1421. border-right: none;
  1422. border-top: 1px solid #84bd00;
  1423. border-bottom: 1px solid #84bd00;
  1424. border-radius: 0;
  1425. color: #70A42D;
  1426. padding: 10px;
  1427. }
  1428. .exercise-overview .page-header img{
  1429. display: none;
  1430. }
  1431. .table.table-striped tr td .alert.alert-warning{
  1432. border-top: none;
  1433. padding-left: 0;
  1434. padding-right: 0;
  1435. padding-top: 0;
  1436. padding-bottom: 20px;
  1437. }
  1438. .btn-warning{
  1439. color: #fff;
  1440. background-color: #6B1D82;
  1441. border-color: #6B1D82;
  1442. border-radius: 0;
  1443. }
  1444. .remaining .alert.alert-info{
  1445. background: none;
  1446. color: #162A83;
  1447. }
  1448. .remaining .alert.alert-info p {
  1449. padding-bottom: 10px;
  1450. font-weight: bold;
  1451. }
  1452. .data_table tr td .label-danger{
  1453. background-color: #162a83;
  1454. display: inline-block;
  1455. width: 100%;
  1456. border-radius: 0;
  1457. }
  1458. .data_table tr td .label-success{
  1459. background-color: #84bd00;
  1460. display: inline-block;
  1461. width: 100%;
  1462. border-radius: 0;
  1463. }
  1464. .ck{
  1465. display: block;
  1466. font-style: normal;
  1467. font-weight: normal;
  1468. font-size-adjust: none;
  1469. font-stretch: normal;
  1470. font-feature-settings: normal;
  1471. font-language-override: normal;
  1472. font-kerning: auto;
  1473. font-synthesis: weight style;
  1474. font-variant: normal;
  1475. }
  1476. .ck-article{
  1477. text-transform: uppercase;
  1478. color: #E95839;
  1479. font-weight: bold;
  1480. background: url(../../main/img/document/border-title.png) repeat-x 0 80%;
  1481. padding-bottom: 2%;
  1482. margin-bottom: 10px;
  1483. }
  1484. .ck-article:before{
  1485. content: "\f15c";
  1486. margin-right: 5px;
  1487. font-family: FontAwesome;
  1488. font-weight: normal;
  1489. }
  1490. .ck-paragraph-box{
  1491. background-color: #F5EEE2;
  1492. padding: 2% 3%;
  1493. line-height: 20px;
  1494. }
  1495. .ck-title2{
  1496. padding-top: 0;
  1497. margin-top: 0;
  1498. font-weight: 500;
  1499. position: relative;
  1500. color: #000;
  1501. }
  1502. .ck-title2:after{
  1503. background-color:#E95839;
  1504. margin: 10px 0px 0px;
  1505. width: 50px;
  1506. height: 2px;
  1507. display: block;
  1508. content: "";
  1509. }
  1510. .ck-parcours{
  1511. font-family: 'Verdana';
  1512. font-size: 18px;
  1513. font-weight: bold;
  1514. color: #162a83;
  1515. }
  1516. .ck-etape{
  1517. font-family: 'Verdana';
  1518. font-size: 14px;
  1519. font-weight: bold;
  1520. color: #162a83;
  1521. }
  1522. .ck-titre{
  1523. font-family: 'Verdana';
  1524. font-size: 30px;
  1525. color: #162a83;
  1526. }
  1527. .ck-texte{
  1528. font-family: 'Verdana';
  1529. font-size: 14px;
  1530. color: #162a83;
  1531. line-height: 25px;
  1532. }
  1533. .ck-source{
  1534. font-family: 'Verdana';
  1535. font-size: 12px;
  1536. color: #162a83;
  1537. }
  1538. .ck-consignes{
  1539. font-family: 'Verdana';
  1540. font-size: 14px;
  1541. font-weight: bold;
  1542. color: #162a83;
  1543. }
  1544. figure .image.alignleft{
  1545. margin: 0 20px 20px 0;
  1546. }
  1547. figure .image.alignright{
  1548. margin: 0 20px 0px 20px;
  1549. }
  1550. figure .image{
  1551. margin: 0 20px 0px 20px;
  1552. }
  1553. figure figcaption{
  1554. text-align: left;
  1555. background-color: #f3f3f3;
  1556. padding-top: 0px;
  1557. margin: 0px;
  1558. border-radius: 0px;
  1559. padding-left: 5px;
  1560. }
  1561. figure{
  1562. border: 1px solid #ddd;
  1563. margin-bottom: 20px !important;
  1564. padding: 5px;
  1565. border-radius: 5px;
  1566. }
  1567. blockquote {
  1568. background: #f9f9f9;
  1569. border-left: 8px solid #ccc;
  1570. font: 14px/20px italic Times, serif;
  1571. margin: 1.5em 10px;
  1572. padding: 0.5em 10px;
  1573. quotes: "\201C""\201D""\2018""\2019";
  1574. display: inline-block;
  1575. color: #000;
  1576. font-family: Verdana, Helvetica, Arial, sans-serif !important;
  1577. }
  1578. blockquote:before {
  1579. color: #ccc;
  1580. content: open-quote;
  1581. font-size: 4em;
  1582. line-height: 0.1em;
  1583. margin-right: 0.25em;
  1584. vertical-align: -0.4em;
  1585. }
  1586. .ck-stand-out{
  1587. background-color: yellow;
  1588. }
  1589. /* line horizontal separation */
  1590. .ck-title {
  1591. border-top: 1px solid #84bd00;
  1592. display: inline-block;
  1593. width: 100%;
  1594. padding-top: 15px;
  1595. font-weight: normal;
  1596. font-size: 25px;
  1597. }
  1598. .ck-style2 {
  1599. height: 6px;
  1600. background: url(../../main/img/document/hr-2.png) repeat-x 0 0;
  1601. border: 0;
  1602. }
  1603. .ck-title3 {
  1604. border-top: 1px solid #84bd00;
  1605. display: inline-block;
  1606. width: 100%;
  1607. padding-top: 15px;
  1608. font-weight: bold;
  1609. font-size: 16px;
  1610. }
  1611. .result-body .panel.panel-default{
  1612. border: none;
  1613. box-shadow: none;
  1614. }
  1615. .result-body .panel.panel-default .panel-body{
  1616. padding: 0;
  1617. }
  1618. #footer_left{
  1619. padding: 0;
  1620. }
  1621. .session-teachers{
  1622. display: none;
  1623. }
  1624. .section-mycourses #skillList .table thead tr th{
  1625. border-bottom: 2px solid #84bd00;
  1626. }
  1627. .section-mycourses #skillList .table-bordered tbody tr td{
  1628. border: 1px solid #84bd00;
  1629. }
  1630. .section-mycourses #skillList .table .thumbnail{
  1631. border: none;
  1632. }
  1633. /* Large desktop */
  1634. @media (min-width: 1200px) {
  1635. }
  1636. /* Portrait tablet to landscape and desktop */
  1637. @media (min-width: 768px) and (max-width: 979px) {
  1638. #admin_name{
  1639. display: none;
  1640. }
  1641. #software_name{
  1642. display: none;
  1643. }
  1644. #teachers{
  1645. display: none;
  1646. }
  1647. .grid-courses .items{
  1648. height: 300px;
  1649. }
  1650. .statistics .items {
  1651. margin-left: 0;
  1652. text-align: center;
  1653. }
  1654. .section-title {
  1655. font-size: 25px;
  1656. margin-top: 10px;
  1657. margin-bottom: 10px;
  1658. }
  1659. .hot-courses .grid-courses .items {
  1660. height: 220px;
  1661. }
  1662. .page-faq{
  1663. padding-left: 10px;
  1664. padding-right: 10px;
  1665. }
  1666. .home-information .title {
  1667. font-size: 14px;
  1668. margin-top: 20px;
  1669. }
  1670. .container.home-information p {
  1671. font-size: 12px;
  1672. }
  1673. .home-information .item-icon .circle {
  1674. width: 50px;
  1675. height: 50px;
  1676. line-height: 60px;
  1677. }
  1678. .home-information .item-icon .circle .fa {
  1679. font-size: 2em;
  1680. }
  1681. .partners{
  1682. text-align: center;
  1683. padding-top: 2px;
  1684. }
  1685. #footer_left{
  1686. padding-left: 0;
  1687. padding-right: 0;
  1688. }
  1689. footer #footer_right {
  1690. text-align: center;
  1691. }
  1692. .block-faq .title {
  1693. font-size: 16px;
  1694. margin-bottom: 15px;
  1695. }
  1696. .page-faq .title, .page-contact .title {
  1697. margin-top: 5px;
  1698. margin-bottom: 5px;
  1699. font-size: 20px;
  1700. }
  1701. .breadcrumb{
  1702. font-size: 12px;
  1703. }
  1704. #user_image_block{
  1705. display: none;
  1706. }
  1707. .session-teachers{
  1708. display: none;
  1709. }
  1710. }
  1711. @media (min-width: 644px) and (max-width: 746px) {
  1712. .partners {
  1713. text-align: center;
  1714. }
  1715. footer #footer_right {
  1716. text-align: center;
  1717. }
  1718. }
  1719. /* Landscape phone to portrait tablet */
  1720. @media (min-width: 480px) and (max-width: 641px) {
  1721. .navbar-nav li a {
  1722. padding-top: 6.5px;
  1723. padding-bottom: 6.5px;
  1724. font-weight: normal;
  1725. }
  1726. .navbar-default .navbar-collapse, .navbar-default .navbar-form {
  1727. border: none;
  1728. }
  1729. .dropdown.avatar-user {
  1730. text-align: right;
  1731. }
  1732. .item-menu{
  1733. width: 100%;
  1734. text-align: left;
  1735. border-bottom: 1px solid #85A70A;
  1736. }
  1737. .grid-courses .col-xs-12{
  1738. width: 48%;
  1739. }
  1740. .statistics .items{
  1741. margin-left: 0;
  1742. }
  1743. .statistics .items li h2{
  1744. padding: 0;
  1745. margin: 0;
  1746. font-size: 25px;
  1747. text-align: center;
  1748. display: inline-block;
  1749. }
  1750. .statistics .items li{
  1751. display: inline-block;
  1752. width: 100%;
  1753. text-align: center;
  1754. }
  1755. #user_image_block{
  1756. display: none;
  1757. }
  1758. .notification-panel{
  1759. display: none;
  1760. }
  1761. .partners {
  1762. padding-bottom: 0;
  1763. padding-top: 0;
  1764. text-align: center;
  1765. }
  1766. .partners a img {
  1767. width: 110px;
  1768. }
  1769. footer #footer_right {
  1770. text-align: center;
  1771. }
  1772. }
  1773. /* Landscape phones and down */
  1774. @media (max-width: 480px) {
  1775. .header-logo-top{
  1776. display: none;
  1777. }
  1778. #user_image_block{
  1779. display: none;
  1780. }
  1781. .navbar-nav li a {
  1782. padding-top: 6.5px;
  1783. padding-bottom: 6.5px;
  1784. font-weight: normal;
  1785. }
  1786. .navbar-default .navbar-collapse, .navbar-default .navbar-form {
  1787. border: none;
  1788. }
  1789. .dropdown.avatar-user {
  1790. text-align: right;
  1791. }
  1792. .item-menu{
  1793. width: 100%;
  1794. text-align: left;
  1795. border-bottom: 1px solid #85A70A;
  1796. }
  1797. #carousel-announcement{
  1798. min-height: auto;
  1799. }
  1800. .navbar-default .navbar-toggle {
  1801. border: none;
  1802. background-color: #6B1D82;
  1803. }
  1804. .navbar-default .navbar-toggle:focus,
  1805. .navbar-default .navbar-toggle:hover {
  1806. background-color: #72376E;
  1807. }
  1808. .avatar-user .user-body{
  1809. padding-left: 10px;
  1810. padding-right: 10px;
  1811. }
  1812. .avatar-user .user-body a{
  1813. border-bottom: 1px solid #CCC;
  1814. }
  1815. .statistics .items {
  1816. padding-top: 15px;
  1817. padding-bottom: 15px;
  1818. padding-left: 0;
  1819. padding-right: 0;
  1820. margin: 0;
  1821. list-style: none;
  1822. margin-left: 0;
  1823. text-align: center;
  1824. }
  1825. .section-title {
  1826. font-size: 20px;
  1827. text-align: left;
  1828. }
  1829. .section-notice .items .description{
  1830. font-size: 12px;
  1831. }
  1832. .section-notice .items .description .title {
  1833. margin-top: 10px;
  1834. line-height: 16px;
  1835. }
  1836. .section-notice .items {
  1837. padding-left: 10px;
  1838. padding-right: 10px;
  1839. padding-bottom: 10px;
  1840. border-bottom: 1px solid #ccc;
  1841. }
  1842. .partners {
  1843. padding-bottom: 10px;
  1844. padding-top: 10px;
  1845. text-align: center;
  1846. }
  1847. .partners a {
  1848. padding-bottom: 10px;
  1849. padding-top: 10px;
  1850. }
  1851. footer #footer_right {
  1852. text-align: center;
  1853. }
  1854. .page-faq {
  1855. padding-left: 0;
  1856. padding-right: 0;
  1857. }
  1858. .block-faq .title {
  1859. font-size: 16px;
  1860. font-weight: bold;
  1861. margin-bottom: 20px;
  1862. color: #07578A;
  1863. }
  1864. .list-faq ul{
  1865. list-style: none;
  1866. padding-left: 18px;
  1867. margin: 0;
  1868. }
  1869. .block-faq .panel-default .panel-heading {
  1870. font-weight: bold;
  1871. font-size: 14px;
  1872. background: transparent;
  1873. line-height: 20px;
  1874. }
  1875. .list-faq .list-title {
  1876. font-size: 15px;
  1877. font-weight: bold;
  1878. margin: 10px 0;
  1879. }
  1880. .page-faq .title {
  1881. font-size: 16px;
  1882. font-weight: bold;
  1883. margin: 10px 0;
  1884. }
  1885. .grid-courses .items.session {
  1886. border: 1px solid #19BF69;
  1887. }
  1888. .pull-right {
  1889. float: left !important;
  1890. }
  1891. .navbar-brand{
  1892. display: block;
  1893. }
  1894. .statistics .items li h2{
  1895. padding: 0;
  1896. margin: 0;
  1897. font-size: 25px;
  1898. text-align: center;
  1899. display: inline-block;
  1900. }
  1901. .statistics .icon-color.fa-4x{
  1902. font-size: 3em;
  1903. }
  1904. .statistics .items li{
  1905. display: inline-block;
  1906. width: 100%;
  1907. }
  1908. .statistics .text{
  1909. font-size: 12px;
  1910. }
  1911. .actions img{
  1912. padding: 0;
  1913. border: none;
  1914. width: 30px;
  1915. }
  1916. .form-group{
  1917. margin-bottom: 5px;
  1918. }
  1919. .actions .form-inline{
  1920. margin-right: 0;
  1921. }
  1922. .actions fieldset {
  1923. margin-top: 10px;
  1924. }
  1925. .actions .form-inline .form-group,
  1926. #settings .form-inline .form-group{
  1927. display: inline-block;
  1928. margin-bottom: 0;
  1929. vertical-align: middle;
  1930. }
  1931. #settings .form-control{
  1932. width: 65%;
  1933. display: inline-block;
  1934. }
  1935. .list-items-admin{
  1936. padding-left: 15px;
  1937. }
  1938. .admin-edit-block.pull-right{
  1939. float: right !important;
  1940. }
  1941. .view-options{
  1942. display: none;
  1943. }
  1944. .home-information p{
  1945. font-size: 12px;
  1946. }
  1947. .home-information .title{
  1948. font-size: 14px;
  1949. }
  1950. .home-information .item-icon .circle {
  1951. width: 50px;
  1952. height: 50px;
  1953. line-height: 58px;
  1954. }
  1955. .home-information .item-icon .circle .fa-3x{
  1956. font-size: 2em;
  1957. }
  1958. #panel-scorm .panel-body{
  1959. padding: 0;
  1960. }
  1961. #learning_path_toc{
  1962. margin-top: 10px;
  1963. }
  1964. #panel-scorm.panel-body{
  1965. padding: 0;
  1966. }
  1967. #panel-scorm .image-avatar{
  1968. padding-top: 0;
  1969. }
  1970. .notification-panel{
  1971. display: none;
  1972. }
  1973. footer .sub-footer {
  1974. background-color: #ECECEC;
  1975. padding-top: 0;
  1976. padding-bottom: 0;
  1977. }
  1978. .sticky-footer {
  1979. position: relative;
  1980. bottom: 0;
  1981. width: 100%;
  1982. padding-top: 10px;
  1983. padding-bottom: 10px;
  1984. }
  1985. .chatboxmain{
  1986. width: auto;
  1987. right: 0;
  1988. }
  1989. .chatboxmain .chatboxheadmain{
  1990. padding: 0 5px;
  1991. }
  1992. .chatboxcontent{
  1993. width: auto;
  1994. }
  1995. }
  1996. .anwser svg circle {
  1997. stroke: rgb(22,42,131) !important
  1998. }
  1999. .question_options .ui-state-active {
  2000. background-color: #96BD0D !important;
  2001. }
  2002. .old_session {
  2003. border: 1px solid #666666 !important;
  2004. }
  2005. .future_session {
  2006. border: 1px solid #666666 !important;
  2007. }
  2008. .future_session img {
  2009. filter: grayscale(100%);
  2010. }
  2011. .future_session a {
  2012. color: #666 !important;
  2013. }
  2014. .course_section_title {
  2015. color: #162A83;
  2016. font-weight: bold;
  2017. }
  2018. .skills_chart * {
  2019. margin: 0px;
  2020. padding: 0px;
  2021. }
  2022. .skills_chart ul {
  2023. padding-top: 20px;
  2024. position: relative;
  2025. }
  2026. .skills_chart li {
  2027. float: left;
  2028. text-align: center;
  2029. list-style-type: none;
  2030. padding: 20px 5px 0px 5px;
  2031. position: relative;
  2032. }
  2033. .skills_chart li::before, .skills_chart li::after {
  2034. content: '';
  2035. position: absolute;
  2036. top: 0px;
  2037. right: 50%;
  2038. border-top: 1px solid #A4DC2D;
  2039. width: 50%;
  2040. height: 20px;
  2041. }
  2042. .skills_chart li::after{
  2043. right: auto;
  2044. left: 50%;
  2045. border-left: 1px solid #A4DC2D;
  2046. }
  2047. .skills_chart li:only-child::before, .skills_chart li:only-child::after {
  2048. display: none;
  2049. }
  2050. .skills_chart li:only-child {
  2051. padding-top: 0;
  2052. }
  2053. .skills_chart li:first-child::before, .skills_chart li:last-child::after{
  2054. border: 0 none;
  2055. }
  2056. .skills_chart li:last-child::before{
  2057. border-right: 1px solid #A4DC2D;
  2058. -webkit-border-radius: 0 5px 0 0;
  2059. -moz-border-radius: 0 5px 0 0;
  2060. border-radius: 0 5px 0 0;
  2061. }
  2062. .skills_chart li:first-child::after{
  2063. border-radius: 5px 0 0 0;
  2064. -webkit-border-radius: 5px 0 0 0;
  2065. -moz-border-radius: 5px 0 0 0;
  2066. }
  2067. .skills_chart ul ul::before {
  2068. content: '';
  2069. position: absolute;
  2070. top: 0;
  2071. left: 50%;
  2072. border-left: 1px solid #A4DC2D;
  2073. width: 0;
  2074. height: 20px;
  2075. }
  2076. .skills_chart li a {
  2077. border: 1px solid #A4DC2D;
  2078. padding: 1em 0.75em;
  2079. text-decoration: none;
  2080. color: #333;
  2081. background-color: rgba(255,255,255,0.5);
  2082. font-family: arial, verdana, tahoma;
  2083. font-size: 0.85em;
  2084. display: inline-block;
  2085. border-radius: 5px;
  2086. -webkit-border-radius: 5px;
  2087. -moz-border-radius: 5px;
  2088. -webkit-transition: all 500ms;
  2089. -moz-transition: all 500ms;
  2090. transition: all 500ms;
  2091. }
  2092. .skills_chart li a:hover {
  2093. border: 1px solid #fff;
  2094. color: #ddd;
  2095. background-color: rgba(185, 244, 46, 0.7);
  2096. display: inline-block;
  2097. }
  2098. .skills_chart > ul > li > a {
  2099. font-size: 1em;
  2100. font-weight: bold;
  2101. }
  2102. .skills_chart > ul > li > ul > li > a {
  2103. width: 8em;
  2104. }
  2105. .communications #skillList .thumbnail{
  2106. border: none;
  2107. }
  2108. .communications #skillList .table-bordered tbody tr td{
  2109. border: 1px solid #84bd00;
  2110. }
  2111. .table thead tr th.achieved{
  2112. vertical-align: bottom;
  2113. border-bottom: 2px solid #84bd00;
  2114. }
  2115. .table-header{
  2116. color: #333;
  2117. padding: 8px;
  2118. line-height: 1.428;
  2119. border-bottom: 2px solid #84bd00;
  2120. font-size: 13px;
  2121. font-weight: bold;
  2122. }
  2123. .toolbar-cookie {
  2124. bottom:90px;
  2125. }
  2126. .ofaj-search .form-group label, #user_form .form-group label{
  2127. font-weight: normal;
  2128. }
  2129. #personal_data .panel-default .panel-heading a {
  2130. color: #666;
  2131. }
  2132. .user-data .username{
  2133. display: inline-block;
  2134. }
  2135. .user-data img.pull-left{
  2136. margin-right: 0.5em;
  2137. }
  2138. #user_image_block img, #sn-avatar-one a.expand-image img {
  2139. width: 100px;
  2140. }
  2141. .sidebar-avatar .list-info{
  2142. font-size: 12px;
  2143. margin-top: 2rem;
  2144. border-top: 1px solid #cdcdcd;
  2145. padding-top: 2rem;
  2146. }
  2147. .sidebar-avatar .list-info dd{
  2148. margin-bottom: 10px;
  2149. }
  2150. .sidebar-avatar .area-avatar{
  2151. display: block;
  2152. width: 100%;
  2153. position: relative;
  2154. }
  2155. .sidebar-avatar .area-avatar .img-circle{
  2156. border: 3px solid #96bd0d;
  2157. }
  2158. .sidebar-avatar .area-avatar .avatar-icon{
  2159. position: absolute;
  2160. top: 55px;
  2161. right: 50px;
  2162. background: #FFF;
  2163. border-radius: 50%;
  2164. width: 45px;
  2165. height: 45px;
  2166. border: 2px solid #cdcdcd;
  2167. padding-top: 5px;
  2168. padding-left: 3px;
  2169. }
  2170. .sidebar-avatar .area-avatar .avatar-lm h5,
  2171. .sidebar-avatar .area-avatar .avatar-lc h5{
  2172. font-weight: bold;
  2173. }
  2174. .sidebar-avatar .area-avatar .avatar-lm{
  2175. position: absolute;
  2176. top: 0;
  2177. left: 0;
  2178. text-align: center;
  2179. }
  2180. .sidebar-avatar .area-avatar .avatar-lc{
  2181. position: absolute;
  2182. top: 0;
  2183. right: 0;
  2184. text-align: center;
  2185. }
  2186. .sidebar-avatar .item-name h5{
  2187. font-weight: bold;
  2188. }
  2189. .sidebar-avatar .edit-admin{
  2190. display: inline-block;
  2191. text-align: center;
  2192. width: 100%;
  2193. }
  2194. .category-title{
  2195. border-bottom: 1px solid #CDCDCD;
  2196. padding-bottom: 10px;
  2197. margin-bottom: 10px;
  2198. }
  2199. .category-title h3{
  2200. font-weight: bold;
  2201. }
  2202. .category-forum .tools img{
  2203. border: 1px solid #cdcdcd;
  2204. padding: 2px;
  2205. margin-bottom: 5px;
  2206. border-radius: 5px;
  2207. margin-right: 5px;
  2208. width: 26px;
  2209. }
  2210. .category-forum .tools img:hover{
  2211. background-color: #cdcdcd;
  2212. }
  2213. .category-forum .tools .toolbar{
  2214. margin-top: 10px;
  2215. }
  2216. .category-forum .number-post img{
  2217. width: 32px;
  2218. }
  2219. .category-forum .number-post{
  2220. font-size: 12px;
  2221. }
  2222. .category-forum .panel.panel-default{
  2223. border: 1px solid #ddd !important;
  2224. padding: 10px;
  2225. }
  2226. .category-forum .forum-date{
  2227. border-bottom: 1px solid #cdcdcd;
  2228. margin-bottom: 10px;
  2229. color: #3b8dc4;
  2230. }
  2231. .search-friend{
  2232. padding-bottom: 10px;
  2233. border-bottom: 1px solid #cdcdcd;
  2234. padding-top: 10px;
  2235. margin-bottom: 15px;
  2236. }
  2237. .btn-maps{
  2238. border-radius: 5px;
  2239. border-color: #cccccc;
  2240. background-color: #ffffff;
  2241. color: #7a7a7a;
  2242. }
  2243. .btn-maps:hover{
  2244. background-color: #f5f6f7 !important;
  2245. color: #7a7a7a;
  2246. border-color: #bababa;
  2247. }
  2248. .post-attachment {
  2249. text-align: center;
  2250. }
  2251. .exercise_actions {
  2252. margin-bottom: 60px;
  2253. }
  2254. .exercise_overview_options {
  2255. text-align: left;
  2256. }
  2257. .exercise_overview_options .btn-success {
  2258. color: #fff;
  2259. background-color: #162A83;
  2260. border-color: #162A83;
  2261. }
  2262. .exercise-overview .page-header {
  2263. font-weight: normal !important;
  2264. }
  2265. .btn {
  2266. border-radius: 0px !important;
  2267. }
  2268. .promoted_post{
  2269. background: #F9FFEA;
  2270. border-color: #9bd6b8;
  2271. }
  2272. .exercise_overview_options {
  2273. background-color: white;
  2274. }