_base.scss 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083
  1. // BASE CSS
  2. html, html a, body {
  3. -webkit-font-smoothing: antialiased;
  4. height: auto;
  5. }
  6. a {
  7. transition: all 0.3s ease-in-out;
  8. }
  9. body {
  10. background: $page-background;
  11. }
  12. h1,
  13. h2,
  14. h3,
  15. h4,
  16. h5,
  17. h6 {
  18. font-family: $font-secondary;
  19. letter-spacing: 0.5px;
  20. line-height: 1.2;
  21. a {
  22. font-family: $font-secondary;
  23. }
  24. small {
  25. font-weight: 300;
  26. color: lighten($default-dark, 5%);
  27. }
  28. }
  29. h5, h6{
  30. font-size: .875rem;
  31. }
  32. p {
  33. font-family: $font-primary;
  34. line-height: 1.9;
  35. color: #666666;
  36. }
  37. .lead {
  38. font-size: 18px;
  39. }
  40. ul {
  41. margin-bottom: 0;
  42. }
  43. a {
  44. color: $default-link;
  45. &:hover,
  46. &:focus {
  47. text-decoration: none;
  48. color: darken($default-link, 20%);
  49. }
  50. &:focus {
  51. outline: none;
  52. }
  53. &.text-gray {
  54. &:hover,
  55. &:focus,
  56. &.active {
  57. color: $default-dark !important;
  58. }
  59. }
  60. }
  61. :focus {
  62. outline: none;
  63. }
  64. hr {
  65. border-top: 1px solid $border-color;
  66. }
  67. .main{
  68. .container-fluid{
  69. padding: 0 10px;
  70. @include large($breakpoint-xl){
  71. width: 95%;
  72. }
  73. @include portrait($breakpoint-sm, $breakpoint-md){
  74. width: 100%;
  75. }
  76. @include landscape($breakpoint-sm) {
  77. width: 100%;
  78. }
  79. }
  80. }
  81. /*** TABS ***/
  82. .nav-tabs{
  83. margin-bottom: 10px;
  84. }
  85. .tab-content{
  86. margin-top: 1rem !important;
  87. &.card-body{
  88. padding: 0.5rem;
  89. }
  90. }
  91. /****** BOOTSTRAP SELECT ******/
  92. .custom-select::-ms-expand {
  93. display: none;
  94. }
  95. .custom-select{
  96. /* for Firefox */
  97. -moz-appearance: none;
  98. /* for Chrome */
  99. -webkit-appearance: none;
  100. }
  101. .bootstrap-select{
  102. .dropdown-toggle{
  103. &:after{
  104. display: none;
  105. }
  106. }
  107. }
  108. .select2-container--default{
  109. .select2-selection--single {
  110. background-color: #fff;
  111. border: 1px solid $select-color;
  112. border-radius: 4px;
  113. height: 40px !important;
  114. line-height: 40px;
  115. .select2-selection__rendered{
  116. line-height: 40px;
  117. }
  118. .select2-selection__arrow{
  119. height: 40px;
  120. b{
  121. border-color: #495057 transparent transparent transparent;
  122. border-width: 6px 5px 0 5px;
  123. left: 20%;
  124. }
  125. }
  126. }
  127. }
  128. // ---------------------------------------------------------
  129. // APP
  130. // ---------------------------------------------------------
  131. .app-header{
  132. .nav-item{
  133. .nav-link{
  134. .img-avatar{
  135. border: 2px solid $grey-600;
  136. }
  137. }
  138. }
  139. }
  140. .app-elevator{
  141. border: none;
  142. background: transparent;
  143. z-index: 999998;
  144. transform: translateZ(0px);
  145. position: fixed;
  146. transition: opacity 250ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s, top, bottom;
  147. opacity: 1;
  148. margin: 10px 20px;
  149. right: 0px;
  150. bottom: 50px;
  151. display: none;
  152. }
  153. // ---------------------------------------------------------
  154. // SECTION INTRODUCTION TOOLS
  155. // ---------------------------------------------------------
  156. .section-intro{
  157. margin-bottom: 2rem;
  158. padding-bottom: 2rem;
  159. .toolbar{
  160. text-align: right;
  161. }
  162. .help{
  163. text-align: center;
  164. }
  165. }
  166. // ---------------------------------------------------------
  167. // TABLES
  168. // ---------------------------------------------------------
  169. .card-action{
  170. .page-select{
  171. width: 30%;
  172. @include large($breakpoint-xl){
  173. width: 30%;
  174. }
  175. @include portrait($breakpoint-sm, $breakpoint-md){
  176. width: 100%;
  177. }
  178. @include landscape($breakpoint-sm) {
  179. width: 100%;
  180. }
  181. }
  182. .page-number{
  183. display: inline-block;
  184. text-align: center;
  185. width: 100%;
  186. @include large($breakpoint-xl){
  187. display: inline-block;
  188. text-align: center;
  189. }
  190. @include portrait($breakpoint-sm, $breakpoint-md){
  191. display: inline-block;
  192. text-align: center;
  193. }
  194. @include landscape($breakpoint-sm) {
  195. display: none;
  196. }
  197. }
  198. .page-nav{
  199. text-align: right;
  200. @include large($breakpoint-xl){
  201. text-align: right;
  202. }
  203. @include portrait($breakpoint-sm, $breakpoint-md){
  204. text-align: center;
  205. }
  206. @include landscape($breakpoint-sm) {
  207. text-align: center;
  208. }
  209. }
  210. .page-action {
  211. text-align: left;
  212. @include large($breakpoint-xl){
  213. text-align: left;
  214. }
  215. @include portrait($breakpoint-sm, $breakpoint-md){
  216. text-align: center;
  217. }
  218. @include landscape($breakpoint-sm) {
  219. text-align: center;
  220. }
  221. }
  222. }
  223. .table-hover{
  224. tbody{
  225. tr:hover{
  226. background-color: #f9f9f9;
  227. }
  228. }
  229. }
  230. .table{
  231. .row_selected {
  232. background-color: $row-table-select;
  233. }
  234. th, td{
  235. padding: 12px 8px;
  236. }
  237. .checkbox{
  238. margin-top: -1px;
  239. margin-bottom: 0;
  240. padding: 0;
  241. width: 15px;
  242. position: relative;
  243. display: block;
  244. label{
  245. cursor: pointer;
  246. padding-left: 0;
  247. color: rgba(0,0,0, 0.5);
  248. min-height: 20px;
  249. margin-bottom: 0;
  250. }
  251. input[type=checkbox] {
  252. opacity: 0;
  253. position: absolute;
  254. margin: 0;
  255. z-index: -1;
  256. width: 0;
  257. height: 0;
  258. overflow: hidden;
  259. left: 0;
  260. pointer-events: none;
  261. &:focus + .checkbox-material .check:after {
  262. opacity: 0.2;
  263. }
  264. &:checked {
  265. & + .checkbox-material .check {
  266. background: #2196F3;
  267. }
  268. & + .checkbox-material .check:before {
  269. color: #FFFFFF;
  270. box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  271. animation: checkbox-on 0.3s forwards;
  272. }
  273. }
  274. }
  275. .checkbox-material {
  276. vertical-align: middle;
  277. position: relative;
  278. top: 3px;
  279. padding-right: 5px;
  280. &:before{
  281. display: block;
  282. position: absolute;
  283. left: 0;
  284. content: "";
  285. background-color: rgba(0, 0, 0, 0.84);
  286. height: 20px;
  287. width: 20px;
  288. border-radius: 100%;
  289. z-index: 1;
  290. opacity: 0;
  291. margin: 0;
  292. transform: scale3d(2.3, 2.3, 1);
  293. animation: rippleOn 500ms;
  294. }
  295. .check{
  296. position: relative;
  297. display: inline-block;
  298. width: 20px;
  299. height: 20px;
  300. border: 1px solid rgba(0,0,0, .54);
  301. overflow: hidden;
  302. z-index: 1;
  303. border-radius: 3px;
  304. &:before{
  305. position: absolute;
  306. content: "";
  307. transform: rotate(45deg);
  308. display: block;
  309. margin-top: -3px;
  310. margin-left: 7px;
  311. width: 0;
  312. height: 0;
  313. background: red;
  314. box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
  315. animation: checkbox-off 0.3s forwards;
  316. }
  317. }
  318. }
  319. }
  320. .avatar-user{
  321. position: relative;
  322. display: block;
  323. width: 100%;
  324. .is-admin{
  325. position: absolute;
  326. right: 0;
  327. bottom: 0;
  328. }
  329. .is-active{
  330. position: absolute;
  331. left: 10px;
  332. bottom: -10px;
  333. }
  334. .avatar{
  335. border: 1px solid #cdcdcd;
  336. }
  337. }
  338. .cut-email{
  339. width:150px;
  340. height:20px;
  341. text-overflow:ellipsis;
  342. white-space:nowrap;
  343. overflow:hidden;
  344. display: inline-block;
  345. &:hover{
  346. width: 100%;
  347. white-space: initial;
  348. overflow: visible;
  349. cursor: pointer;
  350. display: inline-block;
  351. }
  352. }
  353. .toolbar-table{
  354. display: inline-block;
  355. width: 200px;
  356. @include large($breakpoint-xl){
  357. width: 100%;
  358. }
  359. @include portrait($breakpoint-sm, $breakpoint-md){
  360. width: 200px;
  361. }
  362. @include landscape($breakpoint-sm) {
  363. width: 200px;
  364. }
  365. img{
  366. border: 1px solid #cdcdcd;
  367. background-color: #ffffff;
  368. padding: 4px;
  369. border-radius: 5px;
  370. &:hover{
  371. background-color:#cdcdcd;
  372. }
  373. }
  374. .blackboard_hide{
  375. display: none;
  376. }
  377. }
  378. .th-header{
  379. a{
  380. color: $grey-900;
  381. }
  382. }
  383. }
  384. // ---------------------------------------------------------
  385. // FULL CONTAINER
  386. // ---------------------------------------------------------
  387. .full-container {
  388. left: $offscreen-size;
  389. min-height: calc(100vh - #{$header-height});
  390. position: absolute;
  391. right: 0;
  392. top: $header-height;
  393. transition: all 0.2s ease;
  394. @include between($breakpoint-md, $breakpoint-xl) {
  395. left: 0;
  396. padding-left: $collapsed-size;
  397. }
  398. @include to($breakpoint-md) {
  399. left: 0;
  400. }
  401. }
  402. // ---------------------------------------------------------
  403. // COLLAPSE STATE
  404. // ---------------------------------------------------------
  405. .is-collapsed {
  406. .page-container {
  407. padding-left: $collapsed-size;
  408. @include to($breakpoint-md) {
  409. padding-left: 0;
  410. }
  411. @include between($breakpoint-md, $breakpoint-xl) {
  412. padding-left: $offscreen-size;
  413. }
  414. }
  415. .full-container {
  416. left: $collapsed-size;
  417. @include to($breakpoint-md) {
  418. left: 0;
  419. }
  420. @include between($breakpoint-md, $breakpoint-xl) {
  421. left: $offscreen-size;
  422. padding-left: 0;
  423. }
  424. }
  425. }
  426. // ---------------------------------------------------------
  427. // @Text Align
  428. // ---------------------------------------------------------
  429. .ta-c { text-align: center !important; }
  430. .ta-l { text-align: left !important; }
  431. .ta-r { text-align: right !important; }
  432. // ---------------------------------------------------------
  433. // @Font Size
  434. // ---------------------------------------------------------
  435. .fsz-xs { font-size: 0.75rem !important; }
  436. .fsz-sm { font-size: 0.87rem !important; }
  437. .fsz-def { font-size: 1rem !important; }
  438. .fsz-md { font-size: 1.15rem !important; }
  439. .fsz-lg { font-size: 1.4rem !important; }
  440. .fsz-xl { font-size: 1.7rem !important; }
  441. // ---------------------------------------------------------
  442. // @Font Weight
  443. // ---------------------------------------------------------
  444. .fw-100 { font-weight: 100 !important; }
  445. .fw-200 { font-weight: 200 !important; }
  446. .fw-300 { font-weight: 300 !important; }
  447. .fw-400 { font-weight: 400 !important; }
  448. .fw-500 { font-weight: 500 !important; }
  449. .fw-600 { font-weight: 600 !important; }
  450. .fw-700 { font-weight: 700 !important; }
  451. .fw-800 { font-weight: 800 !important; }
  452. .fw-900 { font-weight: 900 !important; }
  453. // ---------------------------------------------------------
  454. // @Line Height
  455. // ---------------------------------------------------------
  456. .lh-0 { line-height: 0 !important; }
  457. .lh-1 { line-height: 1 !important; }
  458. .lh-3\/2 { line-height: 1.5 !important; }
  459. .box-header{
  460. color: $grey-900;
  461. display: block;
  462. padding: 0;
  463. position: relative;
  464. .box-title{
  465. font-weight: 500;
  466. color: #404852;
  467. margin-bottom: 22px;
  468. font-size: 14px;
  469. text-transform: capitalize;
  470. }
  471. }
  472. .carousel-item img{
  473. max-width: 100%;
  474. height: auto;
  475. }
  476. //card cropper
  477. .card-cropper{
  478. padding-top: 1em;
  479. padding-bottom: 1em;
  480. .cropCanvas{
  481. padding-bottom: 1em;
  482. }
  483. }
  484. .card{
  485. border: 1px solid $card-border-color;
  486. border-radius: 0.25rem;
  487. margin-bottom: 10px;
  488. box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.025);
  489. &.card-description{
  490. border: none;
  491. box-shadow: none;
  492. }
  493. .card-header{
  494. padding: .75rem 1.25rem;
  495. margin-bottom: 0;
  496. color: inherit;
  497. background-color: #f1f8ff;
  498. border-bottom: 1px solid #e5e9f2;
  499. .card-title{
  500. margin-bottom: 0;
  501. font-weight: normal;
  502. color: #316dab;
  503. }
  504. }
  505. }
  506. /*** GRID CATALOG ***/
  507. .list-course{
  508. display: grid;
  509. grid-gap: 1rem;
  510. grid-row-gap: 16px;
  511. grid-template-columns: repeat(4, 1fr);
  512. @include portrait($breakpoint-sm, $breakpoint-md){
  513. grid-template-columns: repeat(3, 1fr);
  514. }
  515. @include landscape($breakpoint-sm) {
  516. grid-template-columns: repeat(1, 1fr);
  517. }
  518. }
  519. .tool-view{
  520. text-align: center;
  521. padding-top: 2rem;
  522. padding-bottom: 2rem;
  523. margin-top: 2rem;
  524. .controls{
  525. padding-top: 1rem;
  526. padding-bottom: 1rem;
  527. }
  528. }
  529. /* CATEGORY CLASSIC */
  530. .category-list{
  531. display: grid;
  532. grid-gap: 1rem;
  533. grid-row-gap: 16px;
  534. grid-template-columns: repeat(4, 1fr);
  535. @include portrait($breakpoint-sm, $breakpoint-md){
  536. grid-template-columns: repeat(2, 1fr);
  537. }
  538. @include landscape($breakpoint-sm) {
  539. grid-template-columns: repeat(1, 1fr);
  540. }
  541. .card-category{
  542. border: 1px solid #dee2e6;
  543. border-bottom-width: 5px;
  544. display: grid;
  545. grid-template-columns: auto;
  546. grid-gap: 10px;
  547. align-items: center;
  548. cursor: pointer;
  549. position: relative;
  550. .card-body{
  551. padding: 0;
  552. .image-container{
  553. position: relative;
  554. width: 100%;
  555. height: 100%;
  556. color: #ffffff;
  557. overflow: hidden;
  558. margin: auto;
  559. .thumbnail{
  560. &:before{
  561. content: "";
  562. background-color: #000;
  563. z-index: 1;
  564. position: absolute;
  565. width: 100%;
  566. height: 100%;
  567. top: 0;
  568. left: 0;
  569. opacity: .35;
  570. }
  571. }
  572. &:hover img{
  573. transform: scale(1.2);
  574. }
  575. img{
  576. position: absolute;
  577. top: -50%;
  578. left: 0;
  579. bottom: 25%;
  580. right: 0;
  581. transition: all 1s ease;
  582. width: 100%;
  583. height: auto;
  584. }
  585. .image-content{
  586. position: relative;
  587. z-index: 1;
  588. text-align: center;
  589. .title{
  590. font-size: 18px;
  591. }
  592. .courses{
  593. font-size: 12px;
  594. }
  595. a{
  596. color: $default-white;
  597. display: block;
  598. width: 100%;
  599. padding-top: 5%;
  600. padding-bottom: 5%;
  601. }
  602. }
  603. }
  604. @include portrait($breakpoint-sm, $breakpoint-md){
  605. padding: 0;
  606. }
  607. .title{
  608. font-size: 16px;
  609. a{
  610. color: $grey-800;
  611. }
  612. }
  613. }
  614. }
  615. }
  616. /** GRID SESSION **/
  617. .grid-session{
  618. display: grid;
  619. grid-gap: 1rem;
  620. grid-row-gap: 16px;
  621. grid-template-columns: repeat(3, 1fr);
  622. @include portrait($breakpoint-sm, $breakpoint-md){
  623. grid-template-columns: repeat(2, 1fr);
  624. }
  625. @include landscape($breakpoint-sm) {
  626. grid-template-columns: repeat(1, 1fr);
  627. }
  628. .item-session{
  629. flex: auto;
  630. break-inside: avoid;
  631. display: inline-table;
  632. .card-session{
  633. .card-body{
  634. padding: 0;
  635. .card-inside{
  636. padding: 0.8rem 0.8rem 0.8rem 0;
  637. }
  638. }
  639. .card-title{
  640. font-size: 14px;
  641. }
  642. }
  643. .card-list{
  644. margin-top: 0;
  645. }
  646. }
  647. }
  648. .tab-content{
  649. border: none;
  650. margin-top: 2rem;
  651. .tab-pane{
  652. padding: 0;
  653. }
  654. }
  655. /** LIST SETTINGS **/
  656. .list-settings{
  657. display: grid;
  658. grid-gap: 1rem;
  659. grid-row-gap: 16px;
  660. grid-template-columns: repeat(3, 1fr);
  661. @include large($breakpoint-xl){
  662. grid-template-columns: repeat(4, 1fr);
  663. }
  664. @include portrait($breakpoint-sm, $breakpoint-md){
  665. grid-template-columns: repeat(2, 1fr);
  666. }
  667. @include landscape($breakpoint-sm) {
  668. grid-template-columns: repeat(1, 1fr);
  669. }
  670. .item-setting{
  671. display: -webkit-flex;
  672. display: flex;
  673. .card{
  674. display: inline-block;
  675. width: 100%;
  676. .card-description{
  677. color: $grey-700;
  678. }
  679. }
  680. .list-group{
  681. .list-group-item{
  682. padding: 0.45rem 0.75rem;
  683. }
  684. }
  685. }
  686. }
  687. /* COURSE PREVIEW */
  688. .card-view{
  689. .category {
  690. position: absolute;
  691. border-radius: 10px;
  692. background-color: #FFCC00;
  693. color: #000000;
  694. font-weight: bold;
  695. padding: 0.2rem 0.8rem;
  696. top: -0.8rem;
  697. left: 0.5rem;
  698. font-size: 12px;
  699. z-index: 1;
  700. }
  701. &.card-course-classic{
  702. width: 425px;
  703. }
  704. &.card-course{
  705. width: 328px;
  706. }
  707. margin: auto;
  708. .doc-preview{
  709. .preview-lg{
  710. width: 326px;
  711. height: 185px;
  712. background-color: $grey-500;
  713. }
  714. .preview-sm{
  715. width: 160px;
  716. height: 90px;
  717. background-color: $grey-500;
  718. }
  719. .img-preview{
  720. float: left;
  721. margin-right: .5rem;
  722. overflow: hidden;
  723. text-align: center;
  724. }
  725. }
  726. .card-body{
  727. padding: 0;
  728. .name{
  729. font-size: 12px;
  730. color: $grey-700;
  731. }
  732. .title{
  733. color: $default-link;
  734. font-size: 16px;
  735. }
  736. .card-inside{
  737. padding: 0.8rem 0.8rem 0.8rem 0;
  738. }
  739. }
  740. }
  741. /* COURSE CLASSIC */
  742. .grid-course{
  743. display: grid;
  744. grid-gap: 1rem;
  745. grid-row-gap: 16px;
  746. grid-template-columns: repeat(3, 1fr);
  747. @include large($breakpoint-xl){
  748. grid-template-columns: repeat(3, 1fr);
  749. }
  750. @include portrait($breakpoint-sm, $breakpoint-md){
  751. grid-template-columns: repeat(2, 1fr);
  752. }
  753. @include landscape($breakpoint-sm) {
  754. grid-template-columns: repeat(1, 1fr);
  755. }
  756. .card-course-classic{
  757. border: 1px solid #dee2e6;
  758. display: grid;
  759. grid-template-columns: auto;
  760. grid-gap: 10px;
  761. align-items: center;
  762. &.card-special{
  763. background-color: #f6fcff;
  764. }
  765. .category{
  766. position: absolute;
  767. border-radius: 10px;
  768. background-color: $default-yellow;
  769. color: $default-black;
  770. font-weight: bold;
  771. padding: 0.2rem 0.8rem;
  772. top: -0.8rem;
  773. left: 0.5rem;
  774. font-size: 12px;
  775. }
  776. .card-body{
  777. padding: 0;
  778. .card-inside{
  779. padding: 0.8rem 0.8rem 0.8rem 0;
  780. }
  781. @include portrait($breakpoint-sm, $breakpoint-md){
  782. padding: 0.8rem;
  783. }
  784. .title{
  785. font-size: 16px;
  786. }
  787. }
  788. }
  789. }
  790. .checkbox_delete_picture{
  791. padding-top: 1em;
  792. }
  793. /* COURSE GRID */
  794. .card-session{
  795. .category{
  796. position: absolute;
  797. border-radius: 10px;
  798. background-color: $default-yellow;
  799. color: $default-black;
  800. font-weight: bold;
  801. padding: 0.2rem 0.8rem;
  802. top: -0.8rem;
  803. left: 0.5rem;
  804. font-size: 12px;
  805. }
  806. .card-body{
  807. .card-date{
  808. font-size: 12px;
  809. color: $grey-600;
  810. }
  811. .card-details{
  812. font-size: 12px;
  813. color: $grey-600;
  814. }
  815. .card-list{
  816. .list-group{
  817. .list-group-item{
  818. padding: 0.75rem;
  819. }
  820. }
  821. }
  822. }
  823. }
  824. .card-course{
  825. transform: perspective(1px) translateZ(0);
  826. transition-property: box-shadow;
  827. transition-duration: 0.3s;
  828. box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
  829. background-color: $default-white;
  830. &:hover,
  831. &:focus{
  832. box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.20);
  833. }
  834. &.card-category{
  835. .card-subtitle{
  836. font-size: 12px;
  837. }
  838. }
  839. .card-image{
  840. position: relative;
  841. .card-tools{
  842. position: absolute;
  843. bottom: 0;
  844. left: 0;
  845. .btn-sm{
  846. border-radius: 0;
  847. }
  848. }
  849. }
  850. .card-ranking{
  851. font-size: 12px;
  852. }
  853. .category{
  854. position: absolute;
  855. border-radius: 10px;
  856. background-color: $default-yellow;
  857. color: $default-black;
  858. font-weight: bold;
  859. padding: 0.2rem 0.8rem;
  860. top: -0.8rem;
  861. left: 0.5rem;
  862. font-size: 12px;
  863. }
  864. .card-body{
  865. padding: 0.5rem 0.25rem;
  866. .card-title{
  867. margin-bottom: 0.5rem;
  868. .title{
  869. font-size: 16px;
  870. font-weight: bold;
  871. line-height: 22px;
  872. }
  873. }
  874. .card-author{
  875. display: block;
  876. overflow: hidden;
  877. text-overflow: ellipsis;
  878. white-space: nowrap;
  879. .list-name{
  880. font-size: 12px;
  881. color: $grey-700;
  882. cursor: pointer;
  883. }
  884. .name{
  885. font-size: 12px;
  886. white-space: nowrap;
  887. color: $grey-700;
  888. display: inline-block;
  889. &:after{
  890. content: ", ";
  891. }
  892. &:last-child{
  893. &:after{
  894. content: " ";
  895. }
  896. }
  897. }
  898. }
  899. }
  900. }
  901. /***** RANKING ****/
  902. .rating-stars ul {
  903. list-style-type:none;
  904. padding:0;
  905. -moz-user-select:none;
  906. -webkit-user-select:none;
  907. li{
  908. &.star{
  909. display:inline-block;
  910. i{
  911. &.fa{
  912. font-size:1.25em;
  913. color:#c3c3c3;
  914. }
  915. }
  916. &:hover{
  917. i{
  918. &.fa{
  919. color:#FFCC36;
  920. }
  921. }
  922. }
  923. &.selected{
  924. i{
  925. &.fa{
  926. color:#FF912C;
  927. }
  928. }
  929. }
  930. }
  931. }
  932. }
  933. /******************* ACCORDION B4 *****************/
  934. .accordion-b4 {
  935. .card {
  936. border: 0 none;
  937. box-shadow: none;
  938. }
  939. .card-header {
  940. padding: 0;
  941. background: #fff;
  942. border: none;
  943. }
  944. .card-title a {
  945. display: block;
  946. position: relative;
  947. font-size: 18px;
  948. margin-bottom: 15px;
  949. padding: 10px 5px;
  950. border: none;
  951. border-bottom: 1px solid #cdcdcd;
  952. transition: all 0.10s linear 0s;
  953. cursor: pointer;
  954. &.collapsed {
  955. color: #808080;
  956. }
  957. i {
  958. color: $menu-background;
  959. position: absolute;
  960. top: 15px;
  961. left: 20px;
  962. font-size: 20px;
  963. }
  964. &:before {
  965. content: "";
  966. position: absolute;
  967. bottom: -15px;
  968. left: 36px;
  969. }
  970. &.collapsed {
  971. &:before {
  972. content: "";
  973. position: absolute;
  974. bottom: -15px;
  975. left: 36px;
  976. border: 0 none;
  977. }
  978. &:hover {
  979. color: #6a6060;
  980. }
  981. }
  982. &:after {
  983. content: "\f106";
  984. font-family: "Font Awesome 5 Free", serif;
  985. font-weight: 900;
  986. color: $menu-secondary;
  987. font-size: 20px;
  988. line-height: 20px;
  989. position: absolute;
  990. top: 14px;
  991. right: 10px;
  992. }
  993. &.collapsed:after {
  994. font-family: "Font Awesome 5 Free", serif;
  995. font-weight: 900;
  996. font-size: 20px;
  997. line-height: 20px;
  998. position: absolute;
  999. top: 18px;
  1000. right: 10px;
  1001. content: "\f107";
  1002. color: #808080;
  1003. }
  1004. }
  1005. }
  1006. /*** TOOLS START COURSE ***/
  1007. .start-course{
  1008. text-align: center;
  1009. .image-course{
  1010. padding-top: 1rem;
  1011. padding-bottom: 1rem;
  1012. margin-bottom: 1rem;
  1013. }
  1014. .start-info{
  1015. padding-top: 1rem;
  1016. margin-top: 1rem;
  1017. }
  1018. }
  1019. .grid-start{
  1020. display: grid;
  1021. grid-gap: 1rem;
  1022. grid-row-gap: 16px;
  1023. grid-template-columns: repeat(5, 1fr);
  1024. @include large($breakpoint-xl){
  1025. grid-template-columns: repeat(5, 1fr);
  1026. }
  1027. @include portrait($breakpoint-sm, $breakpoint-md){
  1028. grid-template-columns: repeat(3, 1fr);
  1029. }
  1030. @include landscape($breakpoint-sm) {
  1031. grid-template-columns: repeat(2, 1fr);
  1032. }
  1033. .items-tools{
  1034. display: flex;
  1035. justify-content: center;
  1036. align-items: center;
  1037. .item{
  1038. display: inline-block;
  1039. width: 100%;
  1040. text-align: center;
  1041. padding-top: 1rem;
  1042. padding-bottom: 1rem;
  1043. margin-top: 1rem;
  1044. }
  1045. }
  1046. }
  1047. /*** TOOLS COURSE ***/
  1048. .grid-tools{
  1049. display: grid;
  1050. grid-gap: 1rem;
  1051. grid-row-gap: 16px;
  1052. grid-template-columns: repeat(6, 1fr);
  1053. @include large($breakpoint-xl){
  1054. grid-template-columns: repeat(7, 1fr);
  1055. }
  1056. @include portrait($breakpoint-sm, $breakpoint-md){
  1057. grid-template-columns: repeat(3, 1fr);
  1058. }
  1059. @include landscape($breakpoint-sm) {
  1060. grid-template-columns: repeat(2, 1fr);
  1061. }
  1062. .items-tools{
  1063. display: flex;
  1064. justify-content: center;
  1065. align-items: center;
  1066. .tools{
  1067. width: 140px;
  1068. height: 160px;
  1069. display: block;
  1070. float: left;
  1071. text-align: center;
  1072. cursor: pointer;
  1073. position: relative;
  1074. background-color: transparent;
  1075. &.cursor-none{
  1076. cursor: inherit;
  1077. }
  1078. .big_icon{
  1079. position: absolute;
  1080. width: 84px;
  1081. height: 84px;
  1082. top: 40%;
  1083. margin-top: -50px;
  1084. left: 44%;
  1085. margin-left: -32px;
  1086. text-align: center;
  1087. border: 2px solid rgba(216, 216, 216, 0.37);
  1088. box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.16);
  1089. border-radius: 10px;
  1090. &:hover{
  1091. box-shadow: 0 0.28rem 0.6rem rgba(0,0,0,.2);
  1092. }
  1093. img{
  1094. transition: transform .2s ease-in;
  1095. padding-top: 10px;
  1096. &:hover{
  1097. transform: scale(1.15);
  1098. }
  1099. }
  1100. a{
  1101. display: block;
  1102. overflow: hidden;
  1103. }
  1104. }
  1105. .content{
  1106. position: absolute;
  1107. bottom: 0;
  1108. left: 0;
  1109. width: 100%;
  1110. z-index: 2;
  1111. .name{
  1112. padding-top: 5px;
  1113. padding-bottom: 5px;
  1114. }
  1115. }
  1116. }
  1117. }
  1118. }
  1119. /****** SOCIAL ******/
  1120. .profile {
  1121. .profile-bg {
  1122. position: absolute;
  1123. top: 0;
  1124. left: 0;
  1125. height: 100px;
  1126. width: 100%;
  1127. text-align: left;
  1128. overflow: hidden;
  1129. &.profile-bg-blur {
  1130. img {
  1131. filter: blur(10px) brightness(.85);
  1132. }
  1133. }
  1134. img {
  1135. width: 100%;
  1136. height: 100%;
  1137. object-fit: cover;
  1138. }
  1139. }
  1140. .btn-toolbar{
  1141. margin-left: 17px;
  1142. a{
  1143. margin-right: 5px;
  1144. }
  1145. }
  1146. }
  1147. .user-panel{
  1148. position: relative;
  1149. display: flex;
  1150. -webkit-box-align: center;
  1151. align-items: center;
  1152. font-weight: 500;
  1153. z-index: 3;
  1154. &.user-panel-column{
  1155. flex-direction: column;
  1156. text-align: center;
  1157. .user-panel-image{
  1158. margin-right: 0;
  1159. margin-bottom: 8px;
  1160. }
  1161. .user-panel-info{
  1162. line-height: 23px;
  1163. p{
  1164. margin: 0;
  1165. }
  1166. small{
  1167. font-size: 14px;
  1168. display: block;
  1169. font-weight: 400;
  1170. line-height: 14px;
  1171. }
  1172. }
  1173. }
  1174. }
  1175. .groups-messages{
  1176. .date{
  1177. font-size: 12px;
  1178. }
  1179. }
  1180. /****** CALENDAR ******/
  1181. .fc-day-grid-event{
  1182. border: none;
  1183. padding: 6px 12px 6px 22px;
  1184. font-weight: 500;
  1185. color: #ffffff !important;
  1186. cursor: pointer;
  1187. border-radius: 4px;
  1188. }
  1189. /****** ACTIONS ******/
  1190. .actions {
  1191. background: #ffffff;
  1192. border: 1px solid #dddddd;
  1193. padding: 10px;
  1194. border-radius: 4px;
  1195. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  1196. margin-bottom: 10px;
  1197. .btn-export{
  1198. padding: 0;
  1199. }
  1200. img {
  1201. padding: 3px;
  1202. border: 1px solid #dcdcdc;
  1203. border-radius: 5px;
  1204. background: #ffffff;
  1205. &:hover {
  1206. background: #ededed;
  1207. }
  1208. }
  1209. a {
  1210. text-decoration: none;
  1211. margin-right: 10px;
  1212. &:hover {
  1213. text-decoration: none;
  1214. }
  1215. }
  1216. .form-group{
  1217. margin-bottom: 0;
  1218. }
  1219. .btn-toolbar {
  1220. border: 1px solid #dcdcdc;
  1221. border-radius: 5px;
  1222. display: inline-block;
  1223. padding-left: 5px;
  1224. padding-right: 5px;
  1225. margin: 0 0 0 5px;
  1226. background: #ffffff;
  1227. img {
  1228. background: none;
  1229. border: none;
  1230. }
  1231. &:hover {
  1232. background: #ededed;
  1233. }
  1234. }
  1235. .actions-pagination {
  1236. float: right;
  1237. margin-top: 2px;
  1238. * {
  1239. display: inline-block;
  1240. float: none;
  1241. margin: 0;
  1242. padding: 0;
  1243. }
  1244. img {
  1245. margin: 6px;
  1246. padding: 0;
  1247. }
  1248. }
  1249. }
  1250. /****** EXERCISE ******/
  1251. .card-exercise{
  1252. margin-bottom: 20px;
  1253. .list-exercise{
  1254. list-style: none;
  1255. margin: 0;
  1256. padding: 0;
  1257. li{
  1258. display: inline-block;
  1259. }
  1260. }
  1261. }
  1262. .list-exercise{
  1263. .list-group{
  1264. .list-group-item{
  1265. .toolbar{
  1266. margin-top: 10px;
  1267. a{
  1268. img{
  1269. border: 1px solid #cdcdcd;
  1270. background-color: #ffffff;
  1271. padding: 2px;
  1272. border-radius: 4px;
  1273. }
  1274. }
  1275. }
  1276. .score-list{
  1277. padding: 0;
  1278. margin: 0;
  1279. list-style: none;
  1280. font-size: 12px;
  1281. }
  1282. .description{
  1283. width:100%;
  1284. }
  1285. }
  1286. }
  1287. }
  1288. .main-question{
  1289. margin-bottom: 20px;
  1290. margin-top: 20px;
  1291. .title{
  1292. margin-bottom: 10px;
  1293. margin-top: 10px;
  1294. padding-bottom: 5px;
  1295. border-bottom: 1px solid #cdcdcd;
  1296. }
  1297. .description{
  1298. margin-bottom: 10px;
  1299. }
  1300. .options{
  1301. padding: 0.8em;
  1302. label{
  1303. display: block;
  1304. margin-bottom: 18px;
  1305. font-weight: bold;
  1306. &.radio, &.checkbox{
  1307. min-height: 18px;
  1308. margin-left: 25px;
  1309. }
  1310. input[type="radio"]{
  1311. margin-left: -25px;
  1312. &.checkradios{
  1313. border-radius: 50px;
  1314. }
  1315. }
  1316. input[type="checkbox"]{
  1317. margin-left: -25px;
  1318. &.checkradios{
  1319. border-radius: 5px;
  1320. }
  1321. }
  1322. .checkradios
  1323. {
  1324. -webkit-appearance: none;
  1325. -moz-appearance: none;
  1326. appearance: none;
  1327. display: inline-block;
  1328. position: relative;
  1329. background-color: #ffffff;
  1330. color: #666;
  1331. top: 10px;
  1332. height: 30px;
  1333. width: 30px;
  1334. border: 1px solid #cdcdcd;
  1335. cursor: pointer;
  1336. margin-right: 7px;
  1337. outline: none;
  1338. &:checked::before
  1339. {
  1340. position: absolute;
  1341. font: 13px/1 'Open Sans', sans-serif;
  1342. left: 11px;
  1343. top: 7px;
  1344. content: '\02143';
  1345. transform: rotate(40deg);
  1346. }
  1347. &:hover
  1348. {
  1349. background-color: #f7f7f7;
  1350. }
  1351. &:checked
  1352. {
  1353. background-color: #f1f1f1;
  1354. }
  1355. }
  1356. }
  1357. p{
  1358. line-height: 1em;
  1359. display: contents;
  1360. }
  1361. }
  1362. //Matching Draggable answer
  1363. .drag_question{
  1364. min-height: 4em;
  1365. width: 100%;
  1366. padding: 20px;
  1367. position: relative;
  1368. box-sizing: border-box;
  1369. ._jsPlumb_endpoint {
  1370. z-index: 50;
  1371. }
  1372. .window {
  1373. border: 1px solid #dddddd;
  1374. border-radius: 10px;
  1375. -moz-border-radius: 10px;
  1376. -webkit-border-radius: 10px;
  1377. cursor: pointer;
  1378. min-height: 65px;
  1379. padding: 25px;
  1380. margin-left: 5px;
  1381. margin-right: 5px;
  1382. &.window_left_question {
  1383. padding: 10px 25px 10px 10px;
  1384. text-align: right;
  1385. background: #f2f9fe; /* Old browsers */
  1386. background: -moz-linear-gradient(top, #f2f9fe 0%, #d6f0fd 100%); /* FF3.6+ */
  1387. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f9fe), color-stop(100%, #d6f0fd)); /* Chrome,Safari4+ */
  1388. background: -webkit-linear-gradient(top, #f2f9fe 0%, #d6f0fd 100%); /* Chrome10+,Safari5.1+ */
  1389. background: -o-linear-gradient(top, #f2f9fe 0%, #d6f0fd 100%); /* Opera 11.10+ */
  1390. background: -ms-linear-gradient(top, #f2f9fe 0%, #d6f0fd 100%); /* IE10+ */
  1391. background: linear-gradient(to bottom, #f2f9fe 0%, #d6f0fd 100%); /* W3C */
  1392. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f9fe', endColorstr='#d6f0fd', GradientType=0); /* IE6-9 */
  1393. }
  1394. &.window_right_question {
  1395. padding: 10px 10px 10px 25px;
  1396. background: #ffffff; /* Old browsers */
  1397. background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
  1398. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #e5e5e5)); /* Chrome,Safari4+ */
  1399. background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* Chrome10+,Safari5.1+ */
  1400. background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* Opera 11.10+ */
  1401. background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* IE10+ */
  1402. background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%); /* W3C */
  1403. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0); /* IE6-9 */
  1404. }
  1405. }
  1406. .indent{
  1407. padding-top: 10px;
  1408. padding-bottom: 10px;
  1409. font-size: 14px;
  1410. }
  1411. .round{
  1412. border-radius: 0.8em;
  1413. color: #666666;
  1414. display: inline-block;
  1415. font-weight: bold;
  1416. line-height: 1.6em;
  1417. margin-right: 5px;
  1418. text-align: center;
  1419. width: 1.6em;
  1420. }
  1421. .number{
  1422. background: #ffffff;
  1423. border: 1px solid #cdcdcd;
  1424. }
  1425. .letter{
  1426. background: #ffffff;
  1427. border: 1px solid #cdcdcd;
  1428. }
  1429. .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
  1430. width: 100px;
  1431. }
  1432. .hidden{
  1433. display: none;
  1434. }
  1435. }
  1436. .fill-blank{
  1437. .form-control{
  1438. display: inline-block;
  1439. margin-top: 10px;
  1440. margin-bottom: 10px;
  1441. }
  1442. }
  1443. }
  1444. /*** PLUGINS ***/
  1445. /*** REPORTS ***/
  1446. .item-report {
  1447. text-align: center;
  1448. .item-report-number {
  1449. font-size: 35px;
  1450. font-weight: bold;
  1451. color: #666666;
  1452. }
  1453. }
  1454. .card-box{
  1455. .icon-big{
  1456. font-size: 2.5em;
  1457. min-height: 64px;
  1458. width: 65px;
  1459. height: 65px;
  1460. border-radius: 50%;
  1461. text-align: center;
  1462. vertical-align: middle;
  1463. margin-left: 25px;
  1464. i{
  1465. line-height: 66px;
  1466. color: #fff;
  1467. }
  1468. }
  1469. .icon-student {
  1470. background: #f1c435;
  1471. }
  1472. .icon-studentboss {
  1473. background: #4b73eb;
  1474. }
  1475. .icon-teachers {
  1476. background: #50bbc1;
  1477. }
  1478. .icon-humanresources {
  1479. background: #68ceeb;
  1480. }
  1481. .numbers{
  1482. text-align: left;
  1483. h2 {
  1484. font-size: 3.2em;
  1485. margin: 0;
  1486. padding: 0;
  1487. color: #666666;
  1488. }
  1489. }
  1490. }
  1491. .easy-donut{
  1492. .easypiechart {
  1493. position: relative;
  1494. text-align: center;
  1495. width: 120px;
  1496. height: 120px;
  1497. margin: 20px auto 10px auto;
  1498. .percent {
  1499. display: block;
  1500. position: absolute;
  1501. font-size: 26px;
  1502. top: 38px;
  1503. width: 120px;
  1504. }
  1505. }
  1506. .easypiechart-link {
  1507. padding-bottom: 5px;
  1508. padding-top: 5px;
  1509. display: inline-block;
  1510. width: 100%;
  1511. text-align: center;
  1512. }
  1513. }
  1514. #easypiechart-blue {
  1515. .percent {
  1516. color: #30a5ff;
  1517. }
  1518. }
  1519. #easypiechart-teal {
  1520. .percent {
  1521. color: #1ebfae;
  1522. }
  1523. }
  1524. #easypiechart-orange {
  1525. .percent {
  1526. color: #ffb53e;
  1527. }
  1528. }
  1529. #easypiechart-red{
  1530. .percent {
  1531. color: #ef4040;
  1532. }
  1533. }
  1534. /*** CROP-CROPPER IMAGE ***/
  1535. .card-cropper{
  1536. img{
  1537. width: 300px;
  1538. }
  1539. }
  1540. /****** GALERY ******/
  1541. .gallery{
  1542. .img-gallery {
  1543. height: 100%;
  1544. width: 100%;
  1545. position: absolute;
  1546. left: 0;
  1547. top: 0;
  1548. border-radius: 5px;
  1549. }
  1550. .photo {
  1551. display: block;
  1552. padding-bottom: 100%;
  1553. overflow: hidden;
  1554. }
  1555. .frame {
  1556. background-color: #eeeeee;
  1557. display: block;
  1558. width: 100%;
  1559. }
  1560. .canvas-one {
  1561. margin-bottom: 30px;
  1562. }
  1563. .canvas-two {
  1564. margin-right: 30px;
  1565. flex-shrink: 1;
  1566. -webkit-flex-shrink: 1;
  1567. -ms-flex-negative: 1;
  1568. display: block;
  1569. position: relative;
  1570. }
  1571. }
  1572. /****** EXERCISE RESULTS ******/
  1573. .ribbon {
  1574. display: inline-block;
  1575. width: 100%;
  1576. margin-bottom: 20px;
  1577. border-radius: 5px;
  1578. .rib {
  1579. height: 40px;
  1580. width: 180px;
  1581. display: block;
  1582. line-height: 1.3;
  1583. left: -2px;
  1584. top: 0;
  1585. color: #cfcfcf;
  1586. margin: 0;
  1587. padding: 2px 10px;
  1588. position: relative;
  1589. background: #333;
  1590. border-radius: 4px 0 0 0;
  1591. h3 {
  1592. color: white;
  1593. font-size: 16px;
  1594. float: left;
  1595. line-height: 16px;
  1596. padding-top: 5px;
  1597. margin: 0;
  1598. }
  1599. }
  1600. &.rib-error, &.ribbon-total-error {
  1601. background: #ff3019;
  1602. border-top: none;
  1603. border-bottom: none;
  1604. float: left;
  1605. }
  1606. &.rib-warning {
  1607. background: orange;
  1608. border-top: none;
  1609. border-bottom: none;
  1610. float: left;
  1611. }
  1612. &.rib-gray {
  1613. background: #cccccc;
  1614. border-top: 1px solid #bbbbbb;
  1615. border-bottom: 1px solid #bbbbbb;
  1616. float: left;
  1617. }
  1618. &.rib-success, &.ribbon-total-success {
  1619. background: #86B404;
  1620. border-top: none;
  1621. border-bottom: none;
  1622. float: left;
  1623. }
  1624. }
  1625. /**** LP COLLAPSE CATEGORY ****/
  1626. .learnpath-item{
  1627. &:hover{
  1628. .lp-actions{
  1629. opacity: 1;
  1630. }
  1631. }
  1632. }
  1633. .progress{
  1634. border: 1px solid #d5d5d5;
  1635. }
  1636. .lp-accordion{
  1637. .learning-lessons{
  1638. margin-bottom: 2rem;
  1639. }
  1640. .card{
  1641. margin-bottom: 0;
  1642. }
  1643. .btn-link{
  1644. display: inline-block;
  1645. width: 100%;
  1646. padding: 0;
  1647. text-align: left;
  1648. font-weight: 500;
  1649. }
  1650. .float-actions{
  1651. position: absolute;
  1652. right: 17px;
  1653. top: 12px;
  1654. }
  1655. .list-group{
  1656. .list-group-item{
  1657. padding: 0.75rem 0;
  1658. &:first-child{
  1659. border: none;
  1660. }
  1661. .title{
  1662. font-size: 14px;
  1663. font-weight: normal;
  1664. }
  1665. .extra {
  1666. padding-left: 26px;
  1667. font-size: 12px;
  1668. color: #868686;
  1669. }
  1670. .list-allowed{
  1671. margin-bottom: 5px;
  1672. font-size: 12px;
  1673. list-style: none;
  1674. padding: 0;
  1675. }
  1676. .progress{
  1677. margin-bottom: 10px;
  1678. }
  1679. }
  1680. }
  1681. .lp-actions{
  1682. opacity: 0;
  1683. margin-top: 10px;
  1684. transition: opacity 1s;
  1685. a{
  1686. img{
  1687. border: 1px solid #cdcdcd;
  1688. background-color: #ffffff;
  1689. padding: 2px;
  1690. border-radius: 4px;
  1691. &:hover{
  1692. background-color: #cdcdcd;
  1693. }
  1694. }
  1695. }
  1696. }
  1697. }
  1698. /***** PROMOTIONS *****/
  1699. .promotions {
  1700. border-bottom: 1px solid #DDD;
  1701. margin-top: 30px;
  1702. .promo {
  1703. background-color: #D1D1D1;
  1704. text-align: center;
  1705. text-transform: uppercase;
  1706. vertical-align: middle;
  1707. h4 {
  1708. font-size: 18px;
  1709. font-weight: bold;
  1710. a {
  1711. color: #666;
  1712. }
  1713. }
  1714. }
  1715. .courses {
  1716. background-color: #FAFAFA;
  1717. vertical-align: middle;
  1718. border-right: 1px solid #DDD;
  1719. }
  1720. .title {
  1721. font-size: 16px;
  1722. background-color: #DFDFDF;
  1723. }
  1724. .cycles {
  1725. background-color: #F3F3F3;
  1726. text-align: center;
  1727. vertical-align: middle;
  1728. text-transform: uppercase;
  1729. border-right: 1px solid #DDD;
  1730. h4 {
  1731. font-size: 14px;
  1732. font-weight: bold;
  1733. }
  1734. a {
  1735. color: #66666C;
  1736. &:hover {
  1737. color: initial;
  1738. }
  1739. }
  1740. }
  1741. }
  1742. .career p {
  1743. padding-left: 10px;
  1744. }
  1745. /****** WHOISONLINE ******/
  1746. #whoisonline {
  1747. .items-user {
  1748. text-align: center;
  1749. padding: 15px;
  1750. border-radius: 4px;
  1751. -moz-border-radius: 4px;
  1752. -webkit-border-radius: 4px;
  1753. border: 1px solid #ECF0F1;
  1754. margin-bottom: 20px;
  1755. min-height: 250px;
  1756. }
  1757. .items-user-name {
  1758. font-size: 12px;
  1759. padding-top: 10px;
  1760. line-height: 15px;
  1761. }
  1762. }
  1763. /****** FORM REGISTER ******/
  1764. .terms-conditions {
  1765. padding: 15px 10px;
  1766. background-color: #DDD;
  1767. margin-bottom: 10px;
  1768. border-radius: 5px;
  1769. border: 1px solid #ccc;
  1770. }
  1771. .help-registration {
  1772. background-color: #ececec;
  1773. box-shadow: none;
  1774. }
  1775. #registration {
  1776. input[name='status'] {
  1777. position: relative !important;
  1778. margin-left: 0 !important;
  1779. -webkit-appearance: none;
  1780. -moz-appearance: none;
  1781. -o-appearance: none;
  1782. -ms-appearance: none;
  1783. appearance: none;
  1784. outline: none;
  1785. cursor: pointer;
  1786. }
  1787. input.register-profile[value='5']:after {
  1788. position: relative;
  1789. top: 0;
  1790. display: block;
  1791. content: ' ';
  1792. background: url('#{$svg-path}/coursestudent_na.svg');
  1793. width: 132px;
  1794. height: 132px;
  1795. border-radius: 0;
  1796. -webkit-transition: color 1s, -webkit-box-shadow 1s;
  1797. transition: box-shadow 1s, color 1s, -webkit-box-shadow 1s;
  1798. border: 4px solid #FFFFFF;
  1799. }
  1800. input.register-profile[value='5']:checked:after {
  1801. -webkit-box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4);
  1802. box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  1803. background: url(#{$svg-path}/coursestudent.svg);
  1804. border-color: #E4CE80;
  1805. transition: all 250ms ease;
  1806. will-change: transition;
  1807. top: 5px;
  1808. }
  1809. input.register-profile[value='1']:after {
  1810. position: relative;
  1811. top: 0;
  1812. display: block;
  1813. content: ' ';
  1814. background: url(#{$svg-path}/coursemanager_na.svg);
  1815. width: 132px;
  1816. height: 132px;
  1817. border-radius: 0;
  1818. -webkit-transition: color 1s, -webkit-box-shadow 1s;
  1819. transition: box-shadow 1s, color 1s, -webkit-box-shadow 1s;
  1820. border: 4px solid #FFFFFF;
  1821. }
  1822. input.register-profile[value='1']:checked:after {
  1823. -webkit-box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4);
  1824. box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  1825. background: url(#{$svg-path}/coursemanager.svg);
  1826. border-color: #76CDE4;
  1827. transition: all 250ms ease;
  1828. will-change: transition;
  1829. top: 5px;
  1830. }
  1831. .progress {
  1832. width: 100%;
  1833. margin-top: 5px;
  1834. margin-bottom: 5px;
  1835. height: 10px;
  1836. }
  1837. #status-group{
  1838. .radio {
  1839. display: inline-block;
  1840. position: relative;
  1841. label{
  1842. p{
  1843. text-align: center;
  1844. padding-top: 5px;
  1845. padding-bottom: 5px;
  1846. }
  1847. }
  1848. }
  1849. }
  1850. }
  1851. #custom-icons{
  1852. .items-tools {
  1853. padding: 10px;
  1854. border: 1px solid #CCCCCC;
  1855. border-radius: 5px;
  1856. -moz-border-radius: 5px;
  1857. -webkit-border-radius: 5px;
  1858. min-height: 185px;
  1859. margin-bottom: 20px;
  1860. text-align: center;
  1861. }
  1862. .name-tools {
  1863. font-size: 12px;
  1864. padding-top: 10px;
  1865. padding-bottom: 10px;
  1866. }
  1867. .page-header {
  1868. margin: 20px 0 20px;
  1869. border-bottom: 1px solid #CCCCCC;
  1870. }
  1871. }
  1872. .help-course {
  1873. background-color: #EEEEEE;
  1874. color: #666;
  1875. border: 1px dashed #B0B0B0;
  1876. border-radius: 5px;
  1877. padding: 1em;
  1878. margin-bottom: 1em;
  1879. text-align: center;
  1880. }
  1881. .my-progress{
  1882. .profile-user {
  1883. padding: 10px;
  1884. }
  1885. .username {
  1886. font-size: 20px;
  1887. text-align: center;
  1888. }
  1889. .progress {
  1890. margin-bottom: 0;
  1891. }
  1892. .star-progress{
  1893. .fa-star {
  1894. color: #e4c200;
  1895. }
  1896. .fa-star.in {
  1897. color: #c2c2c2;
  1898. }
  1899. }
  1900. .list-course {
  1901. padding: 0;
  1902. margin: 0;
  1903. li {
  1904. display: block;
  1905. padding-top: 5px;
  1906. padding-bottom: 5px;
  1907. a {
  1908. color: #666;
  1909. &.active {
  1910. color: #00829C;
  1911. }
  1912. }
  1913. }
  1914. }
  1915. .embed-container {
  1916. position: relative;
  1917. padding-bottom: 56.25%;
  1918. height: 0;
  1919. overflow: hidden;
  1920. iframe {
  1921. position: absolute;
  1922. top: 0;
  1923. left: 0;
  1924. width: 100%;
  1925. height: 100%;
  1926. border: none;
  1927. }
  1928. }
  1929. }
  1930. /****** BLOG ******/
  1931. .blog {
  1932. padding: 0;
  1933. .title-post {
  1934. font-size: 30px;
  1935. margin-bottom: 10px;
  1936. letter-spacing: 0;
  1937. margin-top: 5px;
  1938. }
  1939. .media{
  1940. .avatar {
  1941. width: 70px;
  1942. }
  1943. }
  1944. .comments-post {
  1945. margin-top: 50px;
  1946. margin-bottom: 20px;
  1947. .title {
  1948. padding-bottom: 20px;
  1949. }
  1950. .media {
  1951. border-top: 1px solid #eaeaea;
  1952. padding-bottom: 10px;
  1953. padding-top: 10px;
  1954. margin-bottom: 10px;
  1955. overflow: visible;
  1956. .media-body {
  1957. overflow: visible;
  1958. }
  1959. }
  1960. }
  1961. .content-post {
  1962. margin-top: 15px;
  1963. margin-bottom: 15px;
  1964. p {
  1965. font-size: 15px;
  1966. }
  1967. }
  1968. .info-post {
  1969. display: block;
  1970. border-bottom: #eaeaea 1px dotted;
  1971. padding-bottom: 10px;
  1972. span {
  1973. margin-right: 20px;
  1974. color: #888;
  1975. }
  1976. }
  1977. .article-post {
  1978. margin-bottom: 20px;
  1979. margin-top: 10px;
  1980. }
  1981. article{
  1982. header{
  1983. padding-top: 0;
  1984. }
  1985. }
  1986. }
  1987. /****** SOCIAL MEDIA ******/
  1988. .share-social-media {
  1989. background-color: #FFF;
  1990. margin-bottom: 5px;
  1991. padding: 10px 5px 5px 5px;
  1992. font-size: 12px;
  1993. .sharing-buttons {
  1994. list-style: none;
  1995. margin: 0 0 10px 0;
  1996. padding: 0;
  1997. li {
  1998. display: inline-block;
  1999. padding-right: 5px;
  2000. padding-left: 5px;
  2001. }
  2002. }
  2003. }
  2004. .btn-facebook{
  2005. &.btn-inverse {
  2006. color: #3B5998;
  2007. background-color: transparent;
  2008. border-color: rgba(59, 89, 152, 0.3);
  2009. &:hover{
  2010. color: #FFF;
  2011. background-color: #3B5998;
  2012. border-color: #3B5998;
  2013. }
  2014. }
  2015. }
  2016. .btn-twitter{
  2017. &.btn-inverse {
  2018. color: #00ACED;
  2019. background-color: transparent;
  2020. border-color: rgba(0, 172, 237, 0.3);
  2021. &:hover {
  2022. color: #FFF;
  2023. background-color: #00ACED;
  2024. border-color: #00ACED;
  2025. }
  2026. }
  2027. }
  2028. .btn-linkedin{
  2029. &.btn-inverse {
  2030. color: #0077b5;
  2031. background-color: transparent;
  2032. border-color: rgba(7, 119, 181, 0.3);
  2033. &:hover{
  2034. color: #FFF;
  2035. background-color: #0077b5;
  2036. border-color: #0077b5;
  2037. }
  2038. }
  2039. }
  2040. /****** GLOSSARY *****/
  2041. .glossary{
  2042. .title{
  2043. font-size: 1.65rem;
  2044. text-align: center;
  2045. }
  2046. .item-glossary{
  2047. border-bottom: 1px solid #dddddd;
  2048. h5{
  2049. margin-bottom: 0;
  2050. font-weight: bold;
  2051. color: #5b6be8;
  2052. font-size: 1.15rem;
  2053. }
  2054. }
  2055. }
  2056. /****** FORUM CSS ******/
  2057. .forum{
  2058. .card{
  2059. margin-bottom: 0;
  2060. .card-header{
  2061. padding: 0.25rem;
  2062. .btn{
  2063. padding: 0;
  2064. margin: 0;
  2065. }
  2066. .float-actions{
  2067. position: absolute;
  2068. right: 17px;
  2069. top: 10px;
  2070. }
  2071. }
  2072. }
  2073. .list-forum{
  2074. .card{
  2075. border: none;
  2076. box-shadow: none;
  2077. &:hover{
  2078. .toolbar{
  2079. opacity: 1;
  2080. transition: opacity 1s;
  2081. }
  2082. }
  2083. .toolbar{
  2084. opacity: 0;
  2085. margin-left: 5px;
  2086. img{
  2087. border: 1px solid #cdcdcd;
  2088. background-color: #ffffff;
  2089. padding: 2px;
  2090. border-radius: 4px;
  2091. }
  2092. }
  2093. }
  2094. .d-flex{
  2095. border-bottom: 1px solid #dddddd;
  2096. }
  2097. .avatar{
  2098. img{
  2099. border: 1px solid #cdcdcd;
  2100. }
  2101. }
  2102. .forum-threads{
  2103. font-size: 12px;
  2104. list-style: none;
  2105. margin: 0;
  2106. padding: 0;
  2107. color: #666666;
  2108. li{
  2109. display: inline-block;
  2110. padding-left: 5px;
  2111. padding-right: 5px;
  2112. }
  2113. }
  2114. }
  2115. }
  2116. /****** ABOUT COURSE AND SESSION ******/
  2117. .about{
  2118. .share-social-media {
  2119. padding: 10px 0 0 0;
  2120. .sharing-buttons {
  2121. list-style: none;
  2122. margin: 0 0 10px 0;
  2123. padding: 0;
  2124. li{
  2125. padding-left: 0;
  2126. }
  2127. }
  2128. }
  2129. .topics{
  2130. .title-info {
  2131. margin: 30px 0 20px 0;
  2132. border-bottom: 1px solid #ddd;
  2133. padding-bottom: 15px;
  2134. }
  2135. }
  2136. .course-tags{
  2137. width: 100%;
  2138. margin-top: 10px;
  2139. li{
  2140. span{
  2141. position: relative;
  2142. display: inline-block;
  2143. padding: 0 3px;
  2144. height: 20px;
  2145. line-height: 20px;
  2146. font-weight: 600 !important;
  2147. background: #D7E3E6 !important;
  2148. border-radius: 0 3px 3px 0 !important;
  2149. -webkit-transition: none 0.15s ease-in-out;
  2150. -o-transition: none 0.15s ease-in-out;
  2151. transition: none 0.15s ease-in-out;
  2152. &:before{
  2153. display: inline-block;
  2154. content: "";
  2155. top: 0;
  2156. left: -8px;
  2157. position: absolute;
  2158. width: 0;
  2159. height: 0;
  2160. border-right: 8px solid #D7E3E6;
  2161. border-bottom: 10px solid transparent;
  2162. border-top: 10px solid transparent;
  2163. }
  2164. &:after{
  2165. z-index: 1;
  2166. content: "";
  2167. top: 8px;
  2168. left: -3px;
  2169. position: absolute;
  2170. width: 4px;
  2171. height: 4px;
  2172. background-color: #F2F2F2;
  2173. border-radius: 10px;
  2174. }
  2175. }
  2176. }
  2177. }
  2178. .course-short{
  2179. padding-top: 5px;
  2180. padding-bottom: 5px;
  2181. ul{
  2182. display: inline-block;
  2183. width: 100%;
  2184. list-style: none;
  2185. padding: 0;
  2186. margin: 0;
  2187. li{
  2188. display: inline-block;
  2189. &.author{
  2190. font-weight: bold;
  2191. margin-right: 5px;
  2192. }
  2193. }
  2194. }
  2195. }
  2196. .coach-information{
  2197. width: 100%;
  2198. display: block;
  2199. margin-bottom: 10px;
  2200. padding-bottom: 10px;
  2201. .coach-header{
  2202. display: flex;
  2203. align-items: center;
  2204. flex-flow: row;
  2205. .coach-avatar{
  2206. width: 180px;
  2207. margin-right: 20px;
  2208. }
  2209. .coach-title{
  2210. flex-flow: column;
  2211. align-items: flex-start;
  2212. display: flex;
  2213. }
  2214. }
  2215. }
  2216. }
  2217. /****** Sequence ******/
  2218. #parents {
  2219. text-align: center;
  2220. .parent {
  2221. display: inline-block;
  2222. width: 125px;
  2223. padding: 5px;
  2224. &.parent-deleted{
  2225. .sequence-course {
  2226. text-decoration: line-through;
  2227. }
  2228. }
  2229. .big-icon {
  2230. background-color: #ECF0F1;
  2231. padding: 10px;
  2232. text-align: center;
  2233. border-radius: 5px;
  2234. -moz-border-radius: 5px;
  2235. -webkit-border-radius: 5px;
  2236. position: relative;
  2237. .sequence-course {
  2238. font-size: 12px;
  2239. }
  2240. .sequence-id {
  2241. border-radius: 50%;
  2242. background-color: #E74C3C;
  2243. width: 20%;
  2244. color: #ffffff;
  2245. position: absolute;
  2246. right: 5px;
  2247. top: 5px;
  2248. }
  2249. .sequence-deleted {
  2250. font-size: 12px;
  2251. }
  2252. }
  2253. }
  2254. .sequence-plus-icon {
  2255. color: #CCCCCC;
  2256. padding: 0 10px;
  2257. }
  2258. }
  2259. .border-sequence {
  2260. background: url("#{$img-path}line.png") repeat-x 0 35px;
  2261. }
  2262. .arrow-sequence {
  2263. height: 68px;
  2264. background: url("#{$img-path}icons/48/sequence-arrow.png") no-repeat center 15px;
  2265. margin-top: 10px;
  2266. padding-top: 10px;
  2267. }
  2268. #resource {
  2269. text-align: center;
  2270. .parent {
  2271. display: inline-block;
  2272. padding: 5px;
  2273. width: 15%;
  2274. .big-icon {
  2275. background-color: #eeffaa;
  2276. padding: 10px;
  2277. text-align: center;
  2278. border-radius: 5px;
  2279. -moz-border-radius: 5px;
  2280. -webkit-border-radius: 5px;
  2281. position: relative;
  2282. .sequence-course {
  2283. font-size: 12px;
  2284. }
  2285. .sequence-id {
  2286. border-radius: 50%;
  2287. background-color: #E74C3C;
  2288. width: 20%;
  2289. color: #ffffff;
  2290. position: absolute;
  2291. right: 5px;
  2292. top: 5px;
  2293. }
  2294. .sequence-deleted {
  2295. font-size: 12px;
  2296. }
  2297. }
  2298. }
  2299. }
  2300. #children {
  2301. text-align: center;
  2302. .parent {
  2303. display: inline-block;
  2304. padding: 5px;
  2305. width: 15%;
  2306. .big-icon {
  2307. background-color: #feffd6;
  2308. padding: 10px;
  2309. text-align: center;
  2310. border-radius: 5px;
  2311. -moz-border-radius: 5px;
  2312. -webkit-border-radius: 5px;
  2313. position: relative;
  2314. .sequence-course {
  2315. font-size: 12px;
  2316. }
  2317. .sequence-id {
  2318. border-radius: 50%;
  2319. background-color: #E74C3C;
  2320. width: 20%;
  2321. color: #ffffff;
  2322. position: absolute;
  2323. right: 5px;
  2324. top: 5px;
  2325. }
  2326. .sequence-deleted {
  2327. font-size: 12px;
  2328. }
  2329. }
  2330. }
  2331. }
  2332. /****** OPEN BADGES ******/
  2333. .openbadges-introduction {
  2334. line-height: 30px;
  2335. margin-bottom: 30px;
  2336. .title {
  2337. text-align: center;
  2338. margin-bottom: 20px;
  2339. color: #456176;
  2340. font-size: 35px;
  2341. }
  2342. .title {
  2343. text-align: center;
  2344. margin-bottom: 20px;
  2345. color: #456176;
  2346. font-size: 35px;
  2347. }
  2348. .sub-title {
  2349. color: #456176;
  2350. text-align: center;
  2351. font-size: 20px;
  2352. }
  2353. .badges-tablet {
  2354. padding-top: 15px;
  2355. }
  2356. .block-content {
  2357. padding-top: 30px;
  2358. padding-bottom: 30px;
  2359. p {
  2360. padding-left: 5%;
  2361. font-size: 14px;
  2362. }
  2363. &.block-title{
  2364. background-color: #e2eceb;
  2365. border: 1px solid #456176;
  2366. padding: 5px 10px;
  2367. font-size: 16px;
  2368. color: #456176;
  2369. }
  2370. }
  2371. .block-edit {
  2372. padding-top: 15px;
  2373. padding-bottom: 30px;
  2374. &.block-title{
  2375. background-color: #e2eceb;
  2376. border: 1px solid #456176;
  2377. padding: 5px 10px;
  2378. font-size: 16px;
  2379. color: #456176;
  2380. }
  2381. }
  2382. }
  2383. .list-badges {
  2384. padding: 0;
  2385. margin: 0;
  2386. list-style: none;
  2387. .thumbnail {
  2388. border-color: #bce8f1;
  2389. display: inline-block;
  2390. margin-right: 15px;
  2391. padding: 0;
  2392. vertical-align: top;
  2393. width: 95px;
  2394. a{
  2395. img{
  2396. margin-bottom: 4px;
  2397. margin-top: 4px;
  2398. }
  2399. .caption{
  2400. background: #D9EDF7;
  2401. font-size: 12px;
  2402. text-overflow: ellipsis;
  2403. white-space: nowrap;
  2404. overflow: hidden;
  2405. &:hover{
  2406. width: auto;
  2407. white-space: initial;
  2408. overflow: visible;
  2409. cursor: pointer;
  2410. }
  2411. }
  2412. }
  2413. }
  2414. }
  2415. /****** ISSUES ******/
  2416. #issues {
  2417. width: 800px;
  2418. height: 350px;
  2419. overflow: hidden;
  2420. li{
  2421. width: 800px;
  2422. height: 350px;
  2423. list-style: none;
  2424. float: left;
  2425. &.selected{
  2426. img{
  2427. transform: scale(1.1, 1.1);
  2428. }
  2429. }
  2430. img{
  2431. float: left;
  2432. margin: 10px 30px 10px 50px;
  2433. background: transparent;
  2434. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE 8 */
  2435. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF); /* IE 6 & 7 */
  2436. zoom: 1;
  2437. transition: all 2s ease-in-out;
  2438. transform: scale(0.7, 0.7);
  2439. }
  2440. h1{
  2441. color: #ffcc00;
  2442. font-size: 48px;
  2443. margin: 20px 0;
  2444. text-shadow: #000 1px 1px 2px;
  2445. }
  2446. p{
  2447. font-size: 16px;
  2448. margin-right: 70px;
  2449. font-weight: normal;
  2450. line-height: 22px;
  2451. }
  2452. }
  2453. #grad_left,
  2454. #grad_right {
  2455. width: 100px;
  2456. height: 350px;
  2457. position: absolute;
  2458. top: 0;
  2459. #next {
  2460. position: absolute;
  2461. font-size: 70px;
  2462. top: 170px;
  2463. width: 22px;
  2464. height: 38px;
  2465. text-indent: -9999px;
  2466. overflow: hidden;
  2467. right: 0;
  2468. background: url('#{$img-path}timeline/next.png') no-repeat 0 0;
  2469. &:hover{
  2470. background-position: 0 -76px;
  2471. }
  2472. }
  2473. #prev {
  2474. left: 0;
  2475. position: absolute;
  2476. font-size: 70px;
  2477. top: 170px;
  2478. width: 22px;
  2479. height: 38px;
  2480. text-indent: -9999px;
  2481. overflow: hidden;
  2482. background: url('#{$img-path}timeline/prev.png') no-repeat 0 0;
  2483. &:hover{
  2484. background-position: 0 -76px;
  2485. }
  2486. }
  2487. }
  2488. }
  2489. #my_timeline {
  2490. width: 900px;
  2491. height: 350px;
  2492. overflow: hidden;
  2493. margin: 20px auto;
  2494. position: relative;
  2495. background: url('#{$img-path}timeline/dot.gif') left 45px repeat-x;
  2496. #dates {
  2497. width: 800px;
  2498. height: 60px;
  2499. overflow: hidden;
  2500. li {
  2501. list-style: none;
  2502. float: left;
  2503. width: 120px;
  2504. height: 50px;
  2505. font-size: 16px;
  2506. text-align: center;
  2507. background: url('#{$img-path}timeline/biggerdot.png') center bottom no-repeat;
  2508. }
  2509. a {
  2510. line-height: 38px;
  2511. padding-bottom: 10px;
  2512. color: #cecece;
  2513. }
  2514. .selected {
  2515. font-size: 20px;
  2516. color: #666666;
  2517. }
  2518. }
  2519. }
  2520. /****** QUESTION ******/
  2521. .question_options {
  2522. .droppable {
  2523. padding: 5px;
  2524. text-align: center;
  2525. background-color: #ECF0F1;
  2526. border: dotted #dddddd 2px;
  2527. border-radius: 4px;
  2528. color: #666666;
  2529. display: inline-block;
  2530. width: 85%;
  2531. margin-bottom: 0;
  2532. }
  2533. .droppable-item {
  2534. background-color: #84bd00;
  2535. color: #FFF;
  2536. padding: 3px 0 3px 5px;
  2537. .number{
  2538. font-size: 16px;
  2539. font-weight: bold;
  2540. display: inline-block;
  2541. }
  2542. }
  2543. .droppable{
  2544. .gallery{
  2545. .exercise-draggable-answer-option{
  2546. margin-bottom: 0;
  2547. background: #feffff;
  2548. background: -moz-linear-gradient(top, #feffff 0%, #d2ebf9 100%);
  2549. background: -webkit-linear-gradient(top, #feffff 0%, #d2ebf9 100%);
  2550. background: linear-gradient(to bottom, #feffff 0%, #d2ebf9 100%);
  2551. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feffff', endColorstr='#d2ebf9', GradientType=0);
  2552. border: 1px solid #DDDDDD;
  2553. padding: 5px;
  2554. border-radius: 5px;
  2555. font-size: 12px;
  2556. cursor: pointer;
  2557. }
  2558. .btn-secondary{
  2559. background: #D9534F;
  2560. color: #ffffff;
  2561. border-color: #D43F3A;
  2562. &:hover{
  2563. background: #C9302C;
  2564. color: #ffffff;
  2565. border-color: #AC2925;
  2566. }
  2567. }
  2568. }
  2569. }
  2570. .fill_blanks {
  2571. padding: 20px 30px;
  2572. box-sizing: border-box;
  2573. img {
  2574. max-width: 100%;
  2575. display: block;
  2576. height: auto !important;
  2577. }
  2578. }
  2579. .exercise-draggable-answer {
  2580. float: left;
  2581. margin-bottom: 20px;
  2582. min-height: 2em;
  2583. min-width: 100%;
  2584. &.list-inline{
  2585. float: left;
  2586. }
  2587. li{
  2588. cursor: move;
  2589. margin: 0 20px 20px 0;
  2590. padding: 5px 20px;
  2591. text-align: center;
  2592. }
  2593. .touch-items {
  2594. background: #ffffff;
  2595. background-image: -webkit-linear-gradient(top, #ffffff, #cfcfcf);
  2596. background-image: -moz-linear-gradient(top, #ffffff, #cfcfcf);
  2597. background-image: -ms-linear-gradient(top, #ffffff, #cfcfcf);
  2598. background-image: -o-linear-gradient(top, #ffffff, #cfcfcf);
  2599. background-image: linear-gradient(to bottom, #ffffff, #cfcfcf);
  2600. border-radius: 4px;
  2601. color: #2e2e2e;
  2602. font-size: 13px;
  2603. padding: 5px 10px;
  2604. border: solid #b0b0b0 1px;
  2605. text-decoration: none;
  2606. z-index: 100;
  2607. &:hover{
  2608. background: #ffffff;
  2609. background-image: -webkit-linear-gradient(top, #ffffff, #b8d3e3);
  2610. background-image: -moz-linear-gradient(top, #ffffff, #b8d3e3);
  2611. background-image: -ms-linear-gradient(top, #ffffff, #b8d3e3);
  2612. background-image: -o-linear-gradient(top, #ffffff, #b8d3e3);
  2613. background-image: linear-gradient(to bottom, #ffffff, #b8d3e3);
  2614. text-decoration: none;
  2615. }
  2616. }
  2617. }
  2618. }
  2619. .card-quota {
  2620. margin: 15px;
  2621. font-weight: bold;
  2622. color: #006633;
  2623. text-align: center;
  2624. }
  2625. /****** LINKS ******/
  2626. .link-page{
  2627. .list-group-item{
  2628. .link-title{
  2629. display: inline-block;
  2630. width: 100%;
  2631. .toolbar{
  2632. float: right;
  2633. opacity: 0;
  2634. }
  2635. }
  2636. &:hover{
  2637. .link-title{
  2638. .toolbar{
  2639. opacity: 1;
  2640. }
  2641. }
  2642. }
  2643. }
  2644. .link-accordion{
  2645. .card{
  2646. margin-bottom: 0;
  2647. .card-header{
  2648. padding: .5rem;
  2649. .title-card{
  2650. padding-top: 5px;
  2651. display: inline-block;
  2652. padding-left: 10px;
  2653. }
  2654. }
  2655. }
  2656. }
  2657. }
  2658. /****** SKILLS ******/
  2659. .skill-options{
  2660. .legend {
  2661. border: 1px dashed #cccccc;
  2662. padding: 1em;
  2663. -webkit-border-radius: 10px;
  2664. -moz-border-radius: 10px;
  2665. border-radius: 10px;
  2666. margin-bottom: 1em;
  2667. margin-top: 1em;
  2668. background-color: #FFFFFF;
  2669. }
  2670. .skill-home {
  2671. margin-top: 1em;
  2672. margin-bottom: 1em;
  2673. }
  2674. .btn-block {
  2675. box-sizing: border-box;
  2676. display: block;
  2677. padding-left: 0;
  2678. padding-right: 0;
  2679. width: 100%;
  2680. }
  2681. .accordion-inner {
  2682. padding: 9px 15px;
  2683. background-color: #FFFFFF;
  2684. }
  2685. .skill-winner {
  2686. list-style: none;
  2687. margin: 0;
  2688. padding: 0;
  2689. li {
  2690. float: left;
  2691. margin-right: 1em;
  2692. padding-bottom: 1em;
  2693. a {
  2694. background: url("#{$img-path}icons/16/winner.png") no-repeat;
  2695. padding-left: 1.5em;
  2696. padding-bottom: 1em;
  2697. }
  2698. }
  2699. }
  2700. }
  2701. .search-skill ul.holder li.bit-input input {
  2702. width: 100%;
  2703. }
  2704. .skill-legend-basic {
  2705. color: #3A87AD;
  2706. }
  2707. .skill-legend-add {
  2708. color: #F89406;
  2709. }
  2710. .skill-legend-search {
  2711. color: #B94A48;
  2712. }
  2713. .skill-legend-badges {
  2714. color: #31A354;
  2715. }
  2716. .skill_partition {
  2717. cursor: pointer;
  2718. stroke: #000000;
  2719. stroke-width: 0.5px;
  2720. }
  2721. .skill_root {
  2722. box-shadow: 2px 2px 19px #aaa;
  2723. border-radius: 6px;
  2724. background-color: #ccc;
  2725. border: 0.1em dotted #D4E06B;
  2726. color: black;
  2727. font-size: 0.9em;
  2728. height: 4em;
  2729. opacity: 0.8;
  2730. padding-top: 0.9em;
  2731. text-align: center;
  2732. width: 120px;
  2733. z-index: 40;
  2734. position: relative;
  2735. }
  2736. .skill_child {
  2737. box-shadow: 2px 2px 19px #aaa;
  2738. border-radius: 6px;
  2739. background-color: white;
  2740. border: 0.1em dotted #D4E06B;
  2741. color: black;
  2742. font-size: 0.9em;
  2743. height: 4em;
  2744. opacity: 0.8;
  2745. padding-top: 0.9em;
  2746. text-align: center;
  2747. width: 120px;
  2748. z-index: 40;
  2749. float: left;
  2750. margin-left: 20px;
  2751. margin-bottom: 20px;
  2752. margin-top: 10px;
  2753. position: relative;
  2754. }
  2755. .skills_chart{
  2756. * {
  2757. margin: 0;
  2758. padding: 0;
  2759. }
  2760. ul {
  2761. padding-top: 20px;
  2762. position: relative;
  2763. li {
  2764. float: left;
  2765. text-align: center;
  2766. list-style-type: none;
  2767. padding: 20px 5px 0 5px;
  2768. position: relative;
  2769. &:before, &:after{
  2770. content: '';
  2771. position: absolute;
  2772. top: 0;
  2773. right: 50%;
  2774. border-top: 1px solid #f80;
  2775. width: 50%;
  2776. height: 20px;
  2777. }
  2778. &:after{
  2779. right: auto;
  2780. left: 50%;
  2781. border-left: 1px solid #f80;
  2782. }
  2783. }
  2784. }
  2785. }
  2786. .skills_chart li:only-child::before, .skills_chart li:only-child::after {
  2787. display: none;
  2788. }
  2789. .skills_chart li:only-child {
  2790. padding-top: 0;
  2791. }
  2792. .skills_chart li:first-child::before, .skills_chart li:last-child::after {
  2793. border: 0 none;
  2794. }
  2795. .skills_chart li:last-child::before {
  2796. border-right: 1px solid #f80;
  2797. border-radius: 0 5px 0 0;
  2798. }
  2799. .skills_chart li:first-child::after {
  2800. border-radius: 5px 0 0 0;
  2801. -webkit-border-radius: 5px 0 0 0;
  2802. -moz-border-radius: 5px 0 0 0;
  2803. }
  2804. .skills_chart ul ul::before {
  2805. content: '';
  2806. position: absolute;
  2807. top: 0;
  2808. left: 50%;
  2809. border-left: 1px solid #f80;
  2810. width: 0;
  2811. height: 20px;
  2812. }
  2813. .skills_chart li a {
  2814. border: 1px solid #f80;
  2815. padding: 1em 0.75em;
  2816. text-decoration: none;
  2817. color: #333;
  2818. background-color: rgba(255, 255, 255, 0.5);
  2819. font-size: 0.85em;
  2820. display: inline-block;
  2821. border-radius: 5px;
  2822. transition: all 500ms;
  2823. }
  2824. .skills_chart li a:hover {
  2825. border: 1px solid #fff;
  2826. color: #ddd;
  2827. background-color: rgba(255, 128, 0, 0.7);
  2828. display: inline-block;
  2829. }
  2830. .skills_chart > ul > li > a {
  2831. font-size: 1em;
  2832. font-weight: bold;
  2833. }
  2834. .skills_chart > ul > li > ul > li > a {
  2835. width: 8em;
  2836. }
  2837. .survey-block {
  2838. width: 100%;
  2839. margin: auto;
  2840. padding: 10px;
  2841. box-sizing: border-box;
  2842. -moz-box-sizing: border-box;
  2843. -webkit-box-sizing: border-box;
  2844. }
  2845. .start-survey {
  2846. margin-top: 20px;
  2847. padding-top: 20px;
  2848. margin-bottom: 20px;
  2849. }
  2850. .survey-reports .list-group{
  2851. .list-group-item{
  2852. img {
  2853. float: left;
  2854. margin-right: 5px;
  2855. }
  2856. h4{
  2857. font-weight: bold;
  2858. font-size: 14px;
  2859. }
  2860. }
  2861. }
  2862. .survey-block{
  2863. .title-survey-block {
  2864. padding-top: 10px;
  2865. padding-bottom: 10px;
  2866. h3 {
  2867. display: inline-block;
  2868. margin-left: 10px;
  2869. }
  2870. }
  2871. .table{
  2872. .center {
  2873. text-align: center;
  2874. }
  2875. }
  2876. }
  2877. /****** LIST TEMPLATE DOCUMENT ******/
  2878. #frmModel{
  2879. display: block;
  2880. height: 750px;
  2881. ul {
  2882. list-style: none;
  2883. margin: 0;
  2884. padding: 0 .5em 0 1em;
  2885. li{
  2886. text-align: center;
  2887. padding-top: 1em;
  2888. padding-bottom: 1em;
  2889. .title, .description{
  2890. padding-top: .5em;
  2891. padding-bottom: .5em;
  2892. width: auto;
  2893. font-size: 12px;
  2894. line-height: 16px;
  2895. }
  2896. &:hover{
  2897. background-color: #FAFAFA;
  2898. border: 1px solid #F2F2F2;
  2899. }
  2900. }
  2901. }
  2902. }
  2903. /****** SHORT NAVIGATION MENU ******/
  2904. #toolnavbox {
  2905. position: fixed;
  2906. margin: 0;
  2907. padding: 0;
  2908. top: 10px;
  2909. left: 0;
  2910. list-style: none;
  2911. z-index: 9999;
  2912. li{
  2913. width: 100%;
  2914. a{
  2915. display: block;
  2916. font-size: 12px;
  2917. height: 35px;
  2918. margin-left: -160px;
  2919. .btn {
  2920. text-align: right !important;
  2921. }
  2922. .icons{
  2923. width: 70px;
  2924. }
  2925. .icons-text {
  2926. width: 200px;
  2927. }
  2928. .text {
  2929. width: 180px;
  2930. }
  2931. }
  2932. .tool-img {
  2933. margin-left: 5px;
  2934. }
  2935. }
  2936. }
  2937. #toolnavbox-two {
  2938. position: fixed;
  2939. margin: 0;
  2940. padding: 0;
  2941. top: 10px;
  2942. left: 0;
  2943. list-style: none;
  2944. z-index: 9999;
  2945. li {
  2946. width: 50px;
  2947. a {
  2948. display: block;
  2949. margin-left: -2px;
  2950. font-size: 12px;
  2951. width: 50px;
  2952. .btn {
  2953. text-align: left !important;
  2954. }
  2955. }
  2956. .tool-img {
  2957. float: left;
  2958. margin-right: 5px;
  2959. }
  2960. }
  2961. }
  2962. /****** COURSE TOOLBAR ******/
  2963. #toolshortcuts_horizontal {
  2964. padding-top: 15px;
  2965. padding-bottom: 15px;
  2966. margin-bottom: 10px;
  2967. text-align: center;
  2968. .items-icon {
  2969. padding: 0;
  2970. display: inline-block;
  2971. img {
  2972. padding: 5px;
  2973. border-radius: 5px;
  2974. box-shadow: 0 1px 3px #C8C8C8;
  2975. border: 1px solid #e6e6e6;
  2976. }
  2977. }
  2978. }
  2979. /****** SIMPLE INNER SCROLLBAR ******/
  2980. .scrollbar-inner > .scroll-element,
  2981. .scrollbar-inner > .scroll-element div {
  2982. border: none;
  2983. margin: 0;
  2984. padding: 0;
  2985. position: absolute;
  2986. z-index: 10;
  2987. }
  2988. .scrollbar-inner > .scroll-element div {
  2989. display: block;
  2990. height: 100%;
  2991. left: 0;
  2992. top: 0;
  2993. width: 100%;
  2994. }
  2995. .scrollbar-inner > .scroll-element.scroll-x {
  2996. bottom: 2px;
  2997. height: 8px;
  2998. left: 0;
  2999. width: 100%;
  3000. }
  3001. .scrollbar-inner > .scroll-element.scroll-y {
  3002. height: 100%;
  3003. right: 2px;
  3004. top: 0;
  3005. width: 8px;
  3006. }
  3007. .scrollbar-inner > .scroll-element .scroll-element_outer {
  3008. overflow: hidden;
  3009. }
  3010. .scrollbar-inner > .scroll-element .scroll-element_outer,
  3011. .scrollbar-inner > .scroll-element .scroll-element_track,
  3012. .scrollbar-inner > .scroll-element .scroll-bar {
  3013. -webkit-border-radius: 8px;
  3014. -moz-border-radius: 8px;
  3015. border-radius: 8px;
  3016. }
  3017. .scrollbar-inner > .scroll-element .scroll-element_track,
  3018. .scrollbar-inner > .scroll-element .scroll-bar {
  3019. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  3020. filter: alpha(opacity=40);
  3021. opacity: 0.4;
  3022. }
  3023. .scrollbar-inner > .scroll-element .scroll-element_track {
  3024. background-color: #e0e0e0;
  3025. }
  3026. .scrollbar-inner > .scroll-element .scroll-bar {
  3027. background-color: #c2c2c2;
  3028. }
  3029. .scrollbar-inner > .scroll-element:hover .scroll-bar {
  3030. background-color: #919191;
  3031. }
  3032. .scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  3033. background-color: #919191;
  3034. }
  3035. /* update scrollbar offset if both scrolls are visible */
  3036. .scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  3037. left: -12px;
  3038. }
  3039. .scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  3040. top: -12px;
  3041. }
  3042. .scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  3043. left: -12px;
  3044. }
  3045. .scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  3046. top: -12px;
  3047. }
  3048. /****** SCROLL WRAPPER ******/
  3049. .scroll-wrapper {
  3050. overflow: hidden !important;
  3051. padding: 0;
  3052. position: relative;
  3053. height: 300px;
  3054. .scroll-content {
  3055. border: none !important;
  3056. box-sizing: content-box;
  3057. height: auto;
  3058. left: 0;
  3059. margin: 0;
  3060. max-height: none;
  3061. max-width: none;
  3062. overflow: scroll !important;
  3063. padding: 0;
  3064. position: relative !important;
  3065. top: 0;
  3066. width: auto;
  3067. }
  3068. .scroll-element{
  3069. div {
  3070. box-sizing: content-box;
  3071. }
  3072. }
  3073. }
  3074. .scroll-wrapper > .scroll-content::-webkit-scrollbar {
  3075. height: 0;
  3076. width: 0;
  3077. }
  3078. .scroll-element.scroll-x.scroll-scrollx_visible,
  3079. .scroll-element.scroll-y.scroll-scrolly_visible {
  3080. display: block;
  3081. }
  3082. .scroll-element .scroll-bar,
  3083. .scroll-element .scroll-arrow {
  3084. cursor: default;
  3085. }
  3086. .scroll-textarea {
  3087. border: 1px solid #cccccc;
  3088. border-top-color: #999999;
  3089. }
  3090. .scroll-textarea > .scroll-content {
  3091. overflow: hidden !important;
  3092. }
  3093. .scroll-textarea > .scroll-content > textarea {
  3094. border: none !important;
  3095. box-sizing: border-box;
  3096. height: 100% !important;
  3097. margin: 0;
  3098. max-height: none !important;
  3099. max-width: none !important;
  3100. overflow: scroll !important;
  3101. outline: none;
  3102. padding: 2px;
  3103. position: relative !important;
  3104. top: 0;
  3105. width: 100% !important;
  3106. }
  3107. .scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  3108. height: 0;
  3109. width: 0;
  3110. }
  3111. /****************************/
  3112. .date-attendance {
  3113. color: #666;
  3114. text-align: center;
  3115. font-size: 12px;
  3116. width: 150px;
  3117. margin: auto;
  3118. .blue {
  3119. color: #2E75A3;
  3120. }
  3121. .grey {
  3122. color: #666;
  3123. }
  3124. }
  3125. #student-list-work {
  3126. background-color: #ffffff;
  3127. position: absolute;
  3128. top: 0;
  3129. right: 10px;
  3130. border: 1px solid #ccc;
  3131. width: auto;
  3132. z-index: 3;
  3133. border-radius: 5px;
  3134. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  3135. #student-list-work {
  3136. background-color: #ffffff;
  3137. position: absolute;
  3138. top: 0;
  3139. right: 10px;
  3140. border: 1px solid #ccc;
  3141. width: auto;
  3142. z-index: 3;
  3143. border-radius: 5px;
  3144. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  3145. }
  3146. #student-list-work .toolbar {
  3147. text-align: center;
  3148. padding-top: 5px;
  3149. padding-bottom: 5px;
  3150. }
  3151. }
  3152. /****** RATING STAR ******/
  3153. .star-rating {
  3154. list-style: none;
  3155. margin: 0;
  3156. padding: 0;
  3157. width: 125px;
  3158. height: 25px;
  3159. position: relative;
  3160. overflow: hidden;
  3161. background: url('#{$img-path}alt_star.png') top left repeat-x;
  3162. li{
  3163. padding: 0;
  3164. margin: 0;
  3165. width: 25px;
  3166. height: 25px;
  3167. float: left;
  3168. a{
  3169. display: block;
  3170. width: 25px;
  3171. height: 25px;
  3172. line-height: 25px;
  3173. text-decoration: none;
  3174. text-indent: -9000px;
  3175. z-index: 20;
  3176. position: absolute;
  3177. padding: 0;
  3178. overflow: hidden;
  3179. &:hover{
  3180. background: url('#{$img-path}alt_star.png') left bottom;
  3181. z-index: 2;
  3182. left: 0;
  3183. border: none;
  3184. }
  3185. .one-star {
  3186. left: 0;
  3187. &:hover {
  3188. width: 25px;
  3189. }
  3190. }
  3191. .two-stars {
  3192. left: 25px;
  3193. &:hover {
  3194. width: 50px;
  3195. }
  3196. }
  3197. .three-stars {
  3198. left: 50px;
  3199. &:hover {
  3200. width: 75px;
  3201. }
  3202. }
  3203. .four-stars {
  3204. left: 75px;
  3205. &:hover {
  3206. width: 100px;
  3207. }
  3208. }
  3209. .five-stars {
  3210. left: 100px;
  3211. &:hover {
  3212. width: 125px;
  3213. }
  3214. }
  3215. }
  3216. .current-rating {
  3217. background: url('#{$img-path}alt_star.png') left center;
  3218. position: absolute;
  3219. height: 25px;
  3220. display: block;
  3221. text-indent: -9000px;
  3222. z-index: 1;
  3223. }
  3224. }
  3225. }
  3226. .work_correction_file_upload{
  3227. margin-bottom: 5px;
  3228. margin-top: 5px;
  3229. .button-load {
  3230. position: relative;
  3231. font-size: 10px;
  3232. font-weight: normal;
  3233. width: 100%;
  3234. background: url("#{$img-path}icons/64/file_upload.png") no-repeat center 20px;
  3235. padding-top: 70px;
  3236. }
  3237. .file_upload_small {
  3238. border: 1px solid #AFDDE9;
  3239. background: #D4E6F0;
  3240. width: 100%;
  3241. border-radius: 5px;
  3242. padding-bottom: 5px;
  3243. }
  3244. }
  3245. table.certaintyTable {
  3246. margin : auto;
  3247. border: 1px solid #7FC5FF;
  3248. th {
  3249. text-align: center;
  3250. border-bottom: 1px solid #7FC5FF;
  3251. background-color: #c9e0ff;
  3252. }
  3253. td {
  3254. padding : 10px;
  3255. .borderRight {
  3256. border-right: 1px dotted #7FC5FF;
  3257. }
  3258. .firstLine {
  3259. vertical-align: top;
  3260. text-align: center;
  3261. }
  3262. }
  3263. th{
  3264. .globalChart {
  3265. font-size : 18pt;
  3266. line-height : 120%;
  3267. padding : 20px;
  3268. }
  3269. }
  3270. }
  3271. /****** ******/
  3272. .count_down {
  3273. font-size: 20px;
  3274. font-weight: bold;
  3275. color: #2E75A3;
  3276. padding: 5px;
  3277. text-align: center;
  3278. margin-bottom: 10px;
  3279. background: url(#{$img-path}clock-exercise.png) no-repeat center center #FFF;
  3280. border: 1px solid #DDD;
  3281. border-radius: 5px;
  3282. }
  3283. .time_warning_two {
  3284. background: url(#{$img-path}clock-exercise.png) no-repeat center center #FFD700;
  3285. border: 1px solid #FFCC00;
  3286. color: #C00;
  3287. }
  3288. .time_warning_one {
  3289. background: url(#{$img-path}clock-exercise.png) no-repeat center center #FB3A35;
  3290. border: 1px solid #FB3A35;
  3291. color: #FFF;
  3292. }
  3293. /****** ******/
  3294. .label_tag {
  3295. padding: 1px 3px 2px;
  3296. margin: 2px 3px 2px 0;
  3297. background-color: #bfbfbf;
  3298. font-size: 10px;
  3299. font-weight: bold;
  3300. color: #ffffff;
  3301. border-radius: 3px;
  3302. text-align: center;
  3303. width: 155px;
  3304. &.personal_event {
  3305. background: #3366CC;
  3306. }
  3307. &.admin_event {
  3308. background: red;
  3309. }
  3310. &.course_event {
  3311. background: #458B00;
  3312. }
  3313. .group_event {
  3314. background: #A0522D;
  3315. }
  3316. .session_event {
  3317. background: #00496D;
  3318. }
  3319. .important {
  3320. background-color: #c43c35;
  3321. }
  3322. .warning {
  3323. background-color: #f89406;
  3324. }
  3325. .success {
  3326. background-color: #46a546;
  3327. }
  3328. .skill {
  3329. background-color: #46a546;
  3330. }
  3331. .course {
  3332. background-color: #62cffc;
  3333. }
  3334. }
  3335. /****** THEMATIC ******/
  3336. #thematic{
  3337. .title-topics {
  3338. font-size: 15px;
  3339. color: #00829C;
  3340. font-weight: bold;
  3341. }
  3342. .thematic-cont {
  3343. padding: 15px;
  3344. border: 1px solid #EEEEEE;
  3345. border-radius: 5px;
  3346. }
  3347. .thematic-avatar {
  3348. text-align: center;
  3349. margin-bottom: 20px;
  3350. }
  3351. .img-fluid {
  3352. display: inline-block;
  3353. }
  3354. .current {
  3355. background-color: #EEEEEE;
  3356. border: 1px dashed #B0B0B0;
  3357. border-radius: 5px;
  3358. }
  3359. .toolbar-actions {
  3360. height: 30px;
  3361. display: block;
  3362. }
  3363. .arrow {
  3364. background: url("#{$img-path}icons/22/arrow-up-collapse.png") no-repeat 99% center;
  3365. &.collapsed{
  3366. background: url("#{$img-path}icons/22/arrow-down-collapse.png") no-repeat 99% center;
  3367. }
  3368. }
  3369. .thematic-advance {
  3370. margin-top: 10px;
  3371. display: inline-block;
  3372. }
  3373. }
  3374. /****** MEDIA PLAYER ******/
  3375. .preview{
  3376. .mejs__container {
  3377. background: #aaa;
  3378. }
  3379. .mejs__controls {
  3380. padding: 0 0 0 0;
  3381. background: none;
  3382. }
  3383. .mejs__button{
  3384. button {
  3385. margin: 16px 6px;
  3386. }
  3387. }
  3388. }
  3389. /****** OPEN BADGES ******/
  3390. .create-openbadges {
  3391. text-align: center;
  3392. margin-bottom: 10px;
  3393. padding-top: 5px;
  3394. padding-bottom: 5px;
  3395. }
  3396. .openbadges-img, .openbadges-view {
  3397. text-align: center;
  3398. padding: 10px;
  3399. margin-top: 10px;
  3400. border: 1px solid #b2b2b2;
  3401. }
  3402. /****** DROPZONE ******/
  3403. #dropzone {
  3404. position: relative;
  3405. overflow: hidden;
  3406. direction: ltr;
  3407. cursor: pointer;
  3408. text-align: center;
  3409. color: #333;
  3410. font-weight: bold;
  3411. -moz-border-radius: 10px;
  3412. -webkit-border-radius: 10px;
  3413. border-radius: 10px;
  3414. width: auto;
  3415. margin-left: auto;
  3416. margin-right: auto;
  3417. height: auto;
  3418. line-height: 50px;
  3419. background-color: #D4E6F0;
  3420. border: 2px dashed #bbbbbb;
  3421. font-size: 120%;
  3422. margin-bottom: 0;
  3423. &:hover{
  3424. background: lawngreen;
  3425. }
  3426. }
  3427. /****** SOCIAL PROFILE ******/
  3428. .social-post{
  3429. .mediaPost {
  3430. padding-top: 10px;
  3431. padding-bottom: 5px;
  3432. margin-bottom: 5px;
  3433. }
  3434. .sub-mediapost {
  3435. padding-left: 20px;
  3436. margin-left: 20px;
  3437. .user-image{
  3438. vertical-align: top;
  3439. .avatar-thumb{
  3440. border: 1px solid #dddddd;
  3441. margin-bottom: 5px;
  3442. margin-right: 5px;
  3443. }
  3444. img {
  3445. width: 50px;
  3446. height: 50px;
  3447. max-width: 50px;
  3448. max-height: 50px;
  3449. }
  3450. }
  3451. }
  3452. .top-mediapost{
  3453. .user-image{
  3454. vertical-align: top;
  3455. .avatar-thumb{
  3456. border: 1px solid #dddddd;
  3457. margin-bottom: 5px;
  3458. margin-right: 5px;
  3459. }
  3460. img {
  3461. width: 50px;
  3462. height: 50px;
  3463. max-width: 50px;
  3464. max-height: 50px;
  3465. }
  3466. }
  3467. }
  3468. }
  3469. /****** MESSAGE ******/
  3470. .message-topic {
  3471. padding: 15px;
  3472. border-radius: 5px;
  3473. display: inline-block;
  3474. border: 1px solid #ECF0F1;
  3475. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  3476. width: 100%;
  3477. }
  3478. .message-post {
  3479. border: 1px solid #ECF0F1;
  3480. margin-bottom: 15px;
  3481. border-radius: 5px;
  3482. padding: 15px;
  3483. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  3484. }
  3485. .message-select-box {
  3486. float: left;
  3487. display: inline;
  3488. position: absolute;
  3489. margin-top: 23px;
  3490. margin-left: 20px;
  3491. }
  3492. .message-view {
  3493. float: right;
  3494. background: #F5E38E;
  3495. border: 2px solid #EBCA4F;
  3496. padding: 10px;
  3497. width: 100px;
  3498. position: relative;
  3499. margin-top: 115px;
  3500. margin-right: -100px;
  3501. }
  3502. /****** VIDEO CHAT ******/
  3503. #chat-video-panel .thumbnail video {
  3504. background: #FFF url("#{$img-path}icons/128/camera-webrtc.png") no-repeat center center;
  3505. display: block;
  3506. min-width: 100%;
  3507. width: 100%;
  3508. }
  3509. #listFriends{
  3510. .list-group-item {
  3511. border: none;
  3512. padding: 0;
  3513. font-size: 12px;
  3514. }
  3515. .help{
  3516. font-size: 12px;
  3517. }
  3518. a{
  3519. display: block;
  3520. text-overflow: ellipsis;
  3521. &.username{
  3522. display: inline-block;
  3523. text-overflow: ellipsis;
  3524. white-space: nowrap;
  3525. overflow: hidden;
  3526. width: 120px;
  3527. }
  3528. }
  3529. &:hover{
  3530. background: none;
  3531. }
  3532. }
  3533. .webcamclip_bg {
  3534. width: 340px;
  3535. height: 260px;
  3536. border: 10px solid #00677C;
  3537. border-radius: 25px;
  3538. }
  3539. .wami-container {
  3540. height: 144px;
  3541. position: relative;
  3542. }
  3543. /****** MAIN QUESTION ******/
  3544. .exercise_overview_options {
  3545. background-color: #F9F9F9;
  3546. border-radius: 10px;
  3547. padding: 15px 0 15px 0;
  3548. .left_option {
  3549. float: left;
  3550. margin: 12px 5px;
  3551. width: 33%;
  3552. }
  3553. .center_option {
  3554. float: left;
  3555. margin: 15px 5px;
  3556. text-align: center;
  3557. width: 33%;
  3558. }
  3559. .right_option {
  3560. float: right;
  3561. margin: 12px 5px;
  3562. text-align: right;
  3563. font-size: 14px;
  3564. }
  3565. }
  3566. .ribbon{
  3567. .error {
  3568. color: red;
  3569. }
  3570. .success {
  3571. color: green;
  3572. }
  3573. .rib{
  3574. &:before {
  3575. content: '';
  3576. display: block;
  3577. width: 0;
  3578. height: 0;
  3579. position: absolute;
  3580. bottom: -11px;
  3581. z-index: -10;
  3582. border: 5px solid;
  3583. border-color: #242424 transparent transparent transparent;
  3584. left: 0;
  3585. }
  3586. &:after{
  3587. right: 0;
  3588. }
  3589. }
  3590. .rib-error{
  3591. &:before {
  3592. border-color: #cf0404 transparent transparent transparent;
  3593. }
  3594. }
  3595. .rib-success{
  3596. &:before {
  3597. border-color: #4B610B transparent transparent transparent;
  3598. }
  3599. }
  3600. .rib-gray{
  3601. &:before {
  3602. border-color: #ccc transparent transparent transparent;
  3603. }
  3604. }
  3605. .rib-warning{
  3606. &:before {
  3607. border-color: darkorange transparent transparent transparent;
  3608. }
  3609. }
  3610. }
  3611. .form-separator {
  3612. font-weight: bold;
  3613. border-bottom: 2px solid #CCC;
  3614. padding-bottom: 12px;
  3615. color: #666;
  3616. margin-bottom: 20px;
  3617. margin-top: 20px;
  3618. }
  3619. .feedback-green {
  3620. color: #33a10b;
  3621. font-weight: bold;
  3622. }
  3623. .feedback-red {
  3624. color: #ff3019;
  3625. text-decoration: line-through;
  3626. font-weight: bold;
  3627. }
  3628. .correct-answer {
  3629. background-color: #D7E3E6;
  3630. color: #000000;
  3631. padding-left: 5px;
  3632. padding-right: 5px;
  3633. border-radius: 5px;
  3634. }
  3635. #toolshortcuts_horizontal {
  3636. padding: 0 20px 2px 0;
  3637. clear: right;
  3638. margin-left: auto;
  3639. margin-right: auto;
  3640. text-align: right;
  3641. width: 98%;
  3642. }
  3643. #toolshortcuts_vertical {
  3644. padding: 0 0 2px 0;
  3645. clear: right;
  3646. margin-left: auto;
  3647. margin-right: auto;
  3648. text-align: right;
  3649. width: 40px;
  3650. }
  3651. /* Only for Firefox */
  3652. @-moz-document url-prefix() {
  3653. select#question_type_hidden option {
  3654. padding: 10px 0px 10px 40px;
  3655. background-repeat: no-repeat;
  3656. }
  3657. select#question_type_hidden option[value="1"] {
  3658. background-image: url(#{$img-path}icons/32/mcua.png);
  3659. }
  3660. select#question_type_hidden option[value="2"] {
  3661. background-image: url(#{$img-path}icons/32/mcma.png);
  3662. }
  3663. select#question_type_hidden option[value="3"] {
  3664. background-image: url(#{$img-path}icons/32/fill_in_blanks.png);
  3665. }
  3666. select#question_type_hidden option[value="4"] {
  3667. background-image: url(#{$img-path}icons/32/matching.png);
  3668. }
  3669. select#question_type_hidden option[value="5"] {
  3670. background-image: url(#{$img-path}icons/32/open_answer.png);
  3671. }
  3672. select#question_type_hidden option[value="6"] {
  3673. background-image: url(#{$img-path}icons/32/hotspot.png);
  3674. }
  3675. select#question_type_hidden option[value="7"] {
  3676. background-image: url(#{$img-path}icons/32/mcma.png);
  3677. }
  3678. select#question_type_hidden option[value="8"] {
  3679. background-image: url(#{$img-path}icons/32/mcma.png);
  3680. }
  3681. select#question_type_hidden option[value="9"] {
  3682. background-image: url(#{$img-path}icons/32/mcmac.png);
  3683. }
  3684. select#question_type_hidden option[value="10"] {
  3685. background-image: url(#{$img-path}icons/32/mcuao.png);
  3686. }
  3687. select#question_type_hidden option[value="11"] {
  3688. background-image: url(#{$img-path}icons/32/mcmao.png);
  3689. }
  3690. select#question_type_hidden option[value="12"] {
  3691. background-image: url(#{$img-path}icons/32/mcmaco.png);
  3692. }
  3693. select#question_type_hidden option[value="13"] {
  3694. background-image: url(#{$img-path}icons/32/audio_question.png);
  3695. }
  3696. select#question_type_hidden option[value="14"] {
  3697. background-image: url(#{$img-path}icons/32/mcmagl.png);
  3698. }
  3699. select#question_type_hidden option[value="16"] {
  3700. background-image: url(#{$img-path}icons/32/calculated_answer.png);
  3701. }
  3702. }
  3703. /****** EXERCISE MATFDC ******/
  3704. .certaint-score {
  3705. height : 20px;
  3706. margin-bottom: 10px;
  3707. padding : 0;
  3708. text-align: center;
  3709. font-size: 22px;
  3710. font-weight: bold;
  3711. }
  3712. .chart-grid{
  3713. display: grid;
  3714. grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  3715. grid-gap: 30px;
  3716. width: 100%;
  3717. margin: 0 auto;
  3718. }
  3719. .chart-title{
  3720. text-align: center;
  3721. font-weight: bold;
  3722. font-size: 16px;
  3723. margin-bottom: 20px;
  3724. padding-bottom: 10px;
  3725. border-bottom: 1px solid #b3b3b3;
  3726. text-transform: uppercase;
  3727. background: #ecf0f1;
  3728. padding-top: 10px;
  3729. }
  3730. .certaint-list-two, .certaint-list{
  3731. margin: 0;
  3732. padding: 0;
  3733. list-style: none;
  3734. text-align: center;
  3735. position: absolute;
  3736. bottom: 0;
  3737. display: inline-block;
  3738. width: 100%;
  3739. }
  3740. .certaint-list-two li{
  3741. display: inline-block;
  3742. margin-right: 10px;
  3743. width: 40%;
  3744. }
  3745. .certaint-list li{
  3746. width: 50%;
  3747. margin: auto;
  3748. }
  3749. .certaint-list-two li:last-child{
  3750. margin-right: 0;
  3751. }
  3752. .certaint-text{
  3753. text-align: center;
  3754. padding: 10px 5px;
  3755. }
  3756. .certaintyVerticalLine {
  3757. float: left;
  3758. border-left : 1px solid black;
  3759. font-size: 0;
  3760. }
  3761. .certaintyQuizClearer {
  3762. clear : both;
  3763. font-size: 0;
  3764. height:0
  3765. }
  3766. .chart-legend{
  3767. list-style: none;
  3768. margin: 0;
  3769. padding: 0;
  3770. text-align: center;
  3771. }
  3772. .chart-legend li{
  3773. display: inline-block;
  3774. padding-left: 10px;
  3775. padding-right: 10px;
  3776. margin-right: 10px;
  3777. margin-bottom: 10px;
  3778. }
  3779. .square_color4{
  3780. color: #1e9c55;
  3781. }
  3782. .square_color3{
  3783. color: #b1e183;
  3784. }
  3785. .square_color2{
  3786. color: #f6ba2a;
  3787. }
  3788. .square_color1{
  3789. color: #f79b88;
  3790. }
  3791. .square_color0{
  3792. color: #ed4040;
  3793. }
  3794. .levelbar_1 {
  3795. background-color: #1e9c55;
  3796. border: 1px solid #1e9c55;
  3797. }
  3798. .levelbar_2 {
  3799. background-color: #b1e183;
  3800. border: 1px solid #b1e183;
  3801. }
  3802. .levelbar_3 {
  3803. background-color: #f6ba2a;
  3804. border: 1px solid #f6ba2a;
  3805. }
  3806. .levelbar_4 {
  3807. background-color: #f79b88;
  3808. border: 1px solid #f79b88;
  3809. }
  3810. .levelbar_5 {
  3811. background-color: #ed4040;
  3812. border: 1px solid #ed4040;
  3813. }
  3814. .forum_low_description {
  3815. color: #737780;
  3816. font-style: italic;
  3817. font-weight: normal;
  3818. }
  3819. .forum_attach_comment {
  3820. color: #737780;
  3821. font-style: italic;
  3822. font-weight: normal;
  3823. }
  3824. .forum_message_left {
  3825. width: 150px;
  3826. vertical-align: top;
  3827. border-right: 1px solid #aaa;
  3828. background-color: #F7F7F7;
  3829. }
  3830. .forum_message_left_2_be_approved {
  3831. width: 150px;
  3832. vertical-align: top;
  3833. border-right: 1px solid #aaa;
  3834. background-color: #F7F7F7;
  3835. color: #999;
  3836. }
  3837. .forum_message_post_title {
  3838. font-weight: bold;
  3839. background-color: #F7F7F7;
  3840. height: 20px;
  3841. font-size: 20px;
  3842. }
  3843. .forum_message_post_title_2_be_approved {
  3844. color: #999;
  3845. font-weight: bold;
  3846. background-color: #F7F7F7;
  3847. height: 20px;
  3848. }
  3849. .forum_message_post_text {
  3850. margin-bottom: 10px;
  3851. vertical-align: top;
  3852. background: white;
  3853. }
  3854. .forum_message_post_text_2_be_approved {
  3855. color: #999;
  3856. margin-bottom: 10px;
  3857. vertical-align: top;
  3858. }
  3859. // Convert classic 1.11.x styles into a v2 format.
  3860. .data_table {
  3861. @extend .table;
  3862. @extend .table-bordered;
  3863. @extend .table-striped;
  3864. }
  3865. .pull-right {
  3866. @extend .float-right;
  3867. }
  3868. .btn-default {
  3869. @extend .btn-secondary;
  3870. }
  3871. .img-responsive {
  3872. @extend .img-fluid;
  3873. }