| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553 |
- // @import "variables.scss";
- // Global Styles
- * {
- outline:none !important;
- }
- body {
- background: $sidebar;
- font-family: $basefont1;
- margin: 0;
- overflow-x: hidden;
- color: $bodytext;
- font-weight:300;
- }
- html {
- position: relative;
- min-height: 100%;
- // background: $white;
- }
- h1, h2, h3, h4, h5, h6 {
- color: $headingtext;
- font-family: $basefont2;
- margin: 10px 0;
- font-weight:300;
- }
- h1 {
- line-height: 48px;
- font-size:36px
- }
- h2 {
- line-height: 36px;
- font-size:24px
- }
- h3 {
- line-height: 30px;
- font-size:21px
- }
- h4 {
- line-height: 22px;
- font-size:18px
- }
- h5 {
- font-size: 18px;
- font-size:16px
- }
- h5 {
- font-size: 16px;
- font-size:14px
- }
- .dn{ display:none;}
- .db{ display:block;}
- .light_op_text{ color:rgba(255, 255, 255, 0.5);}
- /*
- blockquote {
- border-left:5px solid $themecolor!important;
- border:1px solid $border;
- }
- */
- p {
- line-height:1.6;
- }
- b {
- font-weight:$font-bold;
- }
- a {
- color: $linktext;
- &:hover, &:focus {
- color: $linktext-hover;
- }
- &:hover {
- outline: 0;
- text-decoration: none;
- }
- &:active {
- outline: 0;
- text-decoration: none;
- }
- &:focus {
- outline: 0;
- text-decoration: none;
- }
- }
- .clear{ clear:both;}
- .font-12{font-size:12px;}
- .font-18{font-size:18px;}
- .font-21{font-size:21px;}
- hr{ border-color: $border;}
- .b-t {
- border-top: 1px solid $border;
- }
- .b-b {
- border-bottom: 1px solid $border;
- }
- .b-l {
- border-left: 1px solid $border;
- }
- .b-r {
- border-right: 1px solid $border;
- }
- .b-all {
- border:1px solid $border;
- }
- .b-none{
- border:0px!important;
- }
- .max-height{
- height:310px;
- overflow:auto;
- }
- .p-0 {
- padding:0px !important;
- }
- .p-10 {
- padding:10px !important;
- }
- .p-20 {
- padding:20px !important;
- }
- .p-30 {
- padding:30px !important;
- }
- .p-l-0 {
- padding-left:0px !important;
- }
- .p-l-10 {
- padding-left:10px !important;
- }
- .p-l-20 {
- padding-left:20px !important;
- }
- .p-r-0 {
- padding-right:0px !important;
- }
- .p-r-10{
- padding-right:10px !important;
- }
- .p-r-20{
- padding-right:20px !important;
- }
- .p-r-30{
- padding-right:30px !important;
- }
- .p-r-40{
- padding-right:40px !important;
- }
- .p-t-0 {
- padding-top:0px !important;
- }
- .p-t-10 {
- padding-top:10px !important;
- }
- .p-t-20 {
- padding-top:20px !important;
- }
- .p-b-0 {
- padding-bottom:0px !important;
- }
- .p-b-10 {
- padding-bottom:10px !important;
- }
- .p-b-20 {
- padding-bottom:20px !important;
- }
- .p-b-30 {
- padding-bottom:30px !important;
- }
- .p-b-40 {
- padding-bottom:40px !important;
- }
- .m-0 {
- margin:0px !important;
- }
- .m-l-5 {
- margin-left:5px !important;
- }
- .m-l-10 {
- margin-left:10px !important;
- }
- .m-l-15 {
- margin-left:15px !important;
- }
- .m-l-20 {
- margin-left:20px !important;
- }
- .m-l-30 {
- margin-left:30px !important;
- }
- .m-l-40 {
- margin-left:40px !important;
- }
- .m-r-5 {
- margin-right:5px !important;
- }
- .m-r-10 {
- margin-right:10px !important;
- }
- .m-r-15 {
- margin-right:15px !important;
- }
- .m-r-20 {
- margin-right:20px !important;
- }
- .m-r-30 {
- margin-right:30px !important;
- }
- .m-r-40 {
- margin-right:40px !important;
- }
- .m-t-5 {
- margin-top:5px !important;
- }
- .m-t-0 {
- margin-top:0px !important;
- }
- .m-t-10 {
- margin-top:10px !important;
- }
- .m-t-15 {
- margin-top:15px !important;
- }
- .m-t-20 {
- margin-top:20px !important;
- }
- .m-t-30 {
- margin-top:30px !important;
- }
- .m-t-40 {
- margin-top:40px !important;
- }
- .m-b-0 {
- margin-bottom:0px !important;
- }
- .m-b-5 {
- margin-bottom:5px !important;
- }
- .m-b-10 {
- margin-bottom:10px !important;
- }
- .m-b-15 {
- margin-bottom:15px !important;
- }
- .m-b-20 {
- margin-bottom:20px !important;
- }
- .m-b-30 {
- margin-bottom:30px !important;
- }
- .m-b-40 {
- margin-bottom:40px !important;
- }
- .vt{
- vertical-align:top;
- }
- .vb{
- vertical-align:bottom;
- }
- .font-bold, b, strong {
- font-weight: $font-bold;
- }
- .font-normal {
- font-weight: normal;
- }
- .font-light {
- font-weight: 300;
- }
- .pull-in {
- margin-left: -15px;
- margin-right: -15px;
- }
- .b-0 {
- border: none !important;
- }
- .vertical-middle {
- vertical-align: middle;
- }
- .bx-shadow {
- -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
- -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
- box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
- }
- .mx-box {
- max-height: 380px;
- min-height: 380px;
- }
- .thumb-sm {
- height: 32px;
- width: 32px;
- }
- .thumb-md {
- height: 48px;
- width: 48px;
- }
- .thumb-lg {
- height: 88px;
- width: 88px;
- }
- .txt-oflo{
- text-overflow: ellipsis;
- overflow:hidden;
- white-space:nowrap;
- }
- .get-code{
- color:$dark;
- cursor:pointer;
- border-radius:100%;
- background:$white;
- padding:4px 5px;
- font-size:10px;
- margin:0 5px;
- vertical-align:middle;
- }
- /* Badge */
- .badge {
- text-transform: uppercase;
- font-weight:$font-bold;
- padding: 3px 5px;
- font-size: 12px;
- margin-top: 1px;
- background-color: $warning;
- }
- .badge-xs {
- font-size: 9px;
- }
- .badge-xs, .badge-sm {
- -webkit-transform: translate(0, -2px);
- -ms-transform: translate(0, -2px);
- -o-transform: translate(0, -2px);
- transform: translate(0, -2px);
- }
- .badge-success {
- background-color: $success;
- }
- .badge-info {
- background-color: $info;
- }
- .badge-warning {
- background-color: $warning;
- }
- .badge-danger {
- background-color: $danger;
- }
- .badge-purple {
- background-color: $purple;
- }
- .badge-red {
- background-color: $red;
- }
- .badge-inverse {
- background-color: $inverse;
- }
- /*notify*/
- .notify{
- position:relative;
- margin-top:-30px;
- .heartbit{
- position: absolute;
- top: -20px;
- right:-16px;
- height: 25px;
- width: 25px;
- z-index: 10;
- border:5px solid $danger;
- border-radius:70px;
- -moz-animation: heartbit 1s ease-out;
- -moz-animation-iteration-count: infinite;
- -o-animation: heartbit 1s ease-out;
- -o-animation-iteration-count: infinite;
- -webkit-animation: heartbit 1s ease-out;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- }
- .point{
- width: 6px;
- height: 6px;
- -webkit-border-radius: 30px;
- -moz-border-radius: 30px;
- border-radius: 30px;
- background-color: $danger;
- position: absolute;
- right: -6px;
- top:-10px;
- }
- }
- @-moz-keyframes heartbit {
- 0% {
- -moz-transform: scale(0);
- opacity: 0.0;
- }
- 25% {
- -moz-transform: scale(0.1);
- opacity: 0.1;
- }
- 50% {
- -moz-transform: scale(0.5);
- opacity: 0.3;
- }
- 75% {
- -moz-transform: scale(0.8);
- opacity: 0.5;
- }
- 100% {
- -moz-transform: scale(1);
- opacity: 0.0;
- }
- }
- @-webkit-keyframes heartbit {
- 0% {
- -webkit-transform: scale(0);
- opacity: 0.0;
- }
- 25% {
- -webkit-transform: scale(0.1);
- opacity: 0.1;
- }
- 50% {
- -webkit-transform: scale(0.5);
- opacity: 0.3;
- }
- 75% {
- -webkit-transform: scale(0.8);
- opacity: 0.5;
- }
- 100% {
- -webkit-transform: scale(1);
- opacity: 0.0;
- }
- }
- /* Text colors */
- .text-white {
- color: $white;
- }
- .text-danger {
- color: $danger;
- }
- .text-muted {
- color: #8d9ea7;
- }
- .text-warning {
- color: $warning;
- }
- .text-success {
- color: $success;
- }
- .text-info {
- color: $info;
- }
- .text-inverse {
- color: $inverse;
- }
- .text-blue {
- color: $blue;
- }
- .text-purple {
- color: $purple;
- }
- .text-primary {
- color: $primary;
- }
- .text-megna {
- color: $megna;
- }
- .text-dark {
- color: $bodytext !important;
- }
- /* Background colors */
- .bg-primary {
- background-color: $primary !important;
- }
- .bg-success {
- background-color: $success !important;
- }
- .bg-info {
- background-color: $info !important;
- }
- .bg-warning {
- background-color: $warning !important;
- }
- .bg-danger {
- background-color: $danger !important;
- }
- .bg-theme {
- background-color: $themecolor !important;
- }
- .bg-theme-dark {
- background-color: $dark-themecolor !important;
- }
- .bg-gray{
- background-color:#e6eaef !important;
- }
- .bg-inverse {
- background-color: $inverse !important;
- }
- .bg-extlgt {
- background-color: $extralight !important;
- }
- .bg-purple {
- background-color: $purple !important;
- }
- .bg-dark{
- background-color:$dark !important;
- }
- .bg-white {
- background-color: $white !important;
- }
- .bg-megna {
- background-color: $megna !important;
- }
- /* Labels */
- .label {
- letter-spacing: 0.05em;
- border-radius: 60px;
- padding: 4px 12px 3px;
- font-weight:$font-bold;
- }
- .label-rounded, .label-rouded {
- border-radius: 60px;
- padding: 4px 12px 3px;
- font-weight:$font-bold;
- }
- .label-custom {
- background-color: $megna;
- }
- .label-success {
- background-color: $success;
- }
- .label-info {
- background-color: $info;
- }
- .label-warning {
- background-color: $warning;
- }
- .label-danger {
- background-color: $danger;
- }
- .label-megna {
- background-color: $megna;
- }
- .label-primary {
- background-color: $primary;
- }
- .label-purple {
- background-color: $purple;
- }
- .label-red {
- background-color: $red;
- }
- .label-inverse {
- background-color: $inverse;
- }
- /*Bootstrap overight*/
- .dropdown-menu{ border:1px solid $border; border-radius:$radius; box-shadow:0 3px 12px rgba(0,0,0,.05)!important; -webkit-box-shadow:0px!important; -moz-box-shadow:0px!important; padding-bottom:8px; margin-top:0px;}
- .dropdown-menu > li > a{ padding:9px 20px;}
- .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
- background:$extralight;
- }
- .navbar-top-links .progress{
- margin-bottom:6px;
- }
- label{
- font-weight:$font-bold;
- }
- .btn{
- border-radius:$radius;
- }
- .form-control{
- border: 1px solid $light;
- border-radius: $radius;
- box-shadow: none;
- height: 34px;
- max-width: 100%;
- padding: 7px 12px;
- transition: all 300ms linear 0s;
- &:focus{
- box-shadow:none;
- border-color:$dark;
- }
- }
- .input-sm {
- height: 30px;
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- }
- .input-lg {
- height: 44px;
- padding: 5px 10px;
- font-size: 18px;
- }
- .bootstrap-tagsinput{
- border: 1px solid $light;
- border-radius: $radius;
- box-shadow: none;
- display:block;
- padding: 7px 12px;
- }
- .bootstrap-touchspin .input-group-btn-vertical>.btn{ padding:9px 10px;}
- .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up, .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{ border-radius:$radius;}
- .input-group-btn .btn {
- padding: 8px 12px;
- }
- /* reset to bootstrap default
- .form-horizontal .form-group{ margin-left:-7.5px; margin-right:-7.5px; margin-bottom:25px;}
- .form-group{ margin-bottom:25px;}
- */
- .select2-container-multi .select2-choices{ border: 1px solid $light;
- }
- .list-group-item, .list-group-item:first-child, .list-group-item:last-child{ border-radius:$radius; border-color:$border;}
- .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover{background:$info; border-color:$info;}
- .list-task .list-group-item, .list-task .list-group-item:first-child{ border-radius:$radius; border:0px;}
- .list-task .list-group-item:last-child{ border-radius:0px; border:0px}
- .media{
- border:1px solid $border;
- margin-bottom:10px;
- padding:15px;
- .media-heading{
- font-weight:$font-bold;
- }
- }
- .well, pre{
- // border-radius:$radius;
- }
- .nav-tabs > li > a {
- border-radius:$radius;
- color:$dark;
- &:hover, &:focus{
- background:$white;
- }
- }
- .modal-content{
- border-radius:$radius;
- box-shadow:0 5px 15px rgba(0, 0, 0, 0.1);
- }
- .alert{
- border-radius:$radius;
- }
- .carousel-control {
- width: 8%;
- span{
- position: absolute;
- top: 50%; /* pushes the icon in the middle of the height */
- z-index: 5;
- display: inline-block;
- font-size: 30px;
- }
- }
- .popover{
- border-radius:$radius;
- }
- .popover-title{
- padding:5px 14px;
- }
- .container-fluid{
- /* reset to bootstrap default
- padding-left:25px;
- padding-right:25px;
- padding-bottom:15px;
- */
- }
- /* reset to bootstrap default
- .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
- padding-left:7.5px;
- padding-right:7.5px;
- }
- .row {
- margin-right: -7.5px;
- margin-left: -7.5px;
- }
- */
- .btn-group-vertical>.btn:first-child:not(:last-child), .btn-group-vertical>.btn:last-child:not(:first-child){
- border-radius:$radius;
- }
- .table-responsive{ overflow-y:hidden;}
- /* Pagination/ Pager */
- .pagination > li:first-child > a,
- .pagination > li:first-child > span {
- border-bottom-left-radius: $radius;
- border-top-left-radius: $radius;
- }
- .pagination > li:last-child > a,
- .pagination > li:last-child > span {
- border-bottom-right-radius: $radius;
- border-top-right-radius: $radius;
- }
- .pagination > li > a,
- .pagination > li > span {
- color: $dark;
- }
- .pagination > li > a:hover,
- .pagination > li > span:hover,
- .pagination > li > a:focus,
- .pagination > li > span:focus {
- background-color: $light;
- }
- .pagination-split li {
- margin-left: 5px;
- display: inline-block;
- float: left;
- }
- .pagination-split li:first-child {
- margin-left: 0;
- }
- .pagination-split li a {
- -moz-border-radius: $radius;
- -webkit-border-radius: $radius;
- border-radius: $radius;
- }
- .pagination > .active > a,
- .pagination > .active > span,
- .pagination > .active > a:hover,
- .pagination > .active > span:hover,
- .pagination > .active > a:focus,
- .pagination > .active > span:focus {
- background-color: $themecolor;
- border-color: $themecolor;
- }
- .pager li > a, .pager li > span {
- -moz-border-radius: $radius;
- -webkit-border-radius: $radius;
- border-radius: $radius;
- color: $dark;
- }
- // table-cell
- .table-box{
- display:table;
- width:100%;
- }
- .cell{
- display:table-cell;
- vertical-align:middle;
- }
- .jqstooltip{
- width: auto !important;
- height: auto !important;
- }
- // text-align
- // Wrappers
- #wrapper {
- width: 100%;
- }
- #page-wrapper {
- padding: 0px;
- min-height: 568px;
- background:$bodycolor;
- padding-bottom:60px;
- }
- /*
- .footer{
- bottom: 0;
- color: #58666e;
- left: 0px;
- padding: 20px 30px;
- position:absolute;
- background: $white;
- right: 0;
- }
- */
- // Page title
- .bg-title{
- overflow:hidden;
- padding: 6px 15px;
- margin-left:-25.5px;
- margin-right:-25.5px;
- h4{ color:rgba(0, 0, 0, 0.5); font-weight:$font-bold; margin-top:6px;}
- .breadcrumb{
- background:none;
- margin-bottom:0px;
- float:right;
- padding:0;
- margin-top:8px;
- a{
- color:rgba(0, 0, 0, 0.5);
- &:hover{
- color:rgba(0, 0, 0, 1);
- }
- }
- .active{ color:$themecolor;}
- }
- }
- // Navigation
- // --Topbar
- .logo b{
- // background:$themecolor;
- height: 50px;
- display: inline-block;
- width:60px;
- line-height:50px;
- text-align:center;
- }
- .top-left-part{
- width:220px;
- float:left;
- a{
- font-size: 18px;
- padding-left:0px;
- text-transform: uppercase;
- }
- }
- .navbar-header{
- width:100%;
- background:$topbar;
- border:0px;
- }
- .navbar-default{
- border:0px;
- }
- .navbar-top-links {
- margin-right: 0;
- }
- .navbar-top-links .badge {
- position: absolute;
- right: 6px;
- top: 15px;
- }
- .navbar-top-links > li {
- float: left;
- }
- .navbar-top-links > li > a{
- color:$white;
- padding: 0 14px;
- line-height:50px;
- min-height: 50px;
- &:hover{
- background:rgba(0, 0, 0, 0.1)
- }
- &:focus{
- background:rgba(0, 0, 0, 0.0);
- }
- }
- .nav .open > a, .nav .open > a:focus, .nav .open > a:hover{
- background:rgba(255, 255, 255, 0.2)
- }
- .navbar-top-links .dropdown-menu li {
- display: block;
- }
- .navbar-top-links .dropdown-menu li:last-child {
- margin-right: 0;
- }
- .navbar-top-links .dropdown-menu li a div {
- white-space: normal;
- }
- .navbar-top-links .dropdown-messages,
- .navbar-top-links .dropdown-tasks,
- .navbar-top-links .dropdown-alerts {
- width: 310px;
- min-width: 0;
- }
- .navbar-top-links .dropdown-messages {
- margin-left: 5px;
- }
- .navbar-top-links .dropdown-tasks {
- margin-left: -59px;
- }
- .navbar-top-links .dropdown-alerts {
- margin-left: -123px;
- }
- .navbar-top-links .dropdown-user {
- right: 0;
- left: auto;
- }
- .navbar-header .navbar-toggle {
- float:none;
- padding:0 15px;
- line-height:50px;
- border:0px;
- color:rgba(255, 255, 255, 0.5);
- margin:0px;
- display:inline-block;
- border-radius:0px;
- &:hover, &:focus{
- background:rgba(0, 0, 0, 0.3);
- color:rgba(255, 255, 255, 1);
- }
- }
- // Search
- /*Search*/
- .app-search {
- position: relative;
- margin: 0px;
- }
- .app-search a {
- position: absolute;
- top: 13px;
- right: 10px;
- color: $inverse;
- }
- .app-search .form-control,
- .app-search .form-control:focus {
- border: none;
- font-size: 13px;
- color: $inverse;
- padding-left: 20px;
- padding-right: 40px;
- background: rgba(255,255,255,0.9);
- box-shadow: none;
- height: 30px;
- font-weight: $font-bold;
- width: 180px;
- display:inline-block;
- line-height:30px;
- margin-top:10px;
- border-radius:40px;
- transition:0.5s ease-out;
- }
- .app-search .form-control::-moz-placeholder{
- color:$inverse;
- opacity:0.5;
- }
- .app-search .form-control::-webkit-input-placeholder { color:$inverse;
- opacity:0.5; }
- .app-search .form-control::-ms-placeholder { color:$inverse;
- opacity:0.5; }
- .nav-small-cap {
- color: #a6afbb;
- cursor: default;
- font-weight:$font-bold;
- text-transform:uppercase;
- font-size: 13px;
- letter-spacing: 0.035em;
- padding: 12px 15px !important;
- pointer-events: none;
- margin:20px 0 0 -15px;
- }
- .profile-pic{
- padding:0px 20px;
- line-height:50px;
- img{
- margin-right:10px;
- }
- }
- .drop-title{
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
- color:$dark;
- font-size: 15px;
- font-weight: $font-bold;
- padding: 11px 20px 15px;
- }
- // Buttons
- .btn-outline {
- color: inherit;
- background-color: transparent;
- transition: all .5s;
- }
- .btn-rounded {
- border-radius:60px;
- }
- .btn-custom, .btn-custom.disabled{
- background:$themecolor;
- border:1px solid $themecolor;
- color:$white;
- &:hover, &:focus, &.focus{
- background:$themecolor;
- opacity:0.8;
- color:$white;
- border:1px solid $themecolor;
- }
- }
- .btn-primary, .btn-primary.disabled{
- background:$primary;
- border:1px solid $primary;
- &:hover, &:focus, &.focus{
- background:$primary;
- opacity:0.8;
- border:1px solid $primary;
- }
- }
- .btn-success, .btn-success.disabled{
- background:$success;
- border:1px solid $success;
- &:hover, &:focus, &.focus{
- background:$success;
- opacity:0.8;
- border:1px solid $success;
- }
- }
- .btn-info, .btn-info.disabled{
- background:$info;
- border:1px solid $info;
- &:hover, &:focus, &.focus{
- background:$info;
- opacity:0.8;
- border:1px solid $info;
- }
- }
- .btn-warning, .btn-warning.disabled{
- background:$warning;
- border:1px solid $warning;
- &:hover, &:focus, &.focus{
- background:$warning;
- opacity:0.8;
- border:1px solid $warning;
- }
- }
- .btn-danger, .btn-danger.disabled{
- background:$danger;
- border:1px solid $danger;
- &:hover, &:focus, &.focus{
- background:$danger;
- opacity:0.8;
- border:1px solid $danger;
- }
- }
- .btn-default, .btn-default.disabled{
- color: $bodytext;
- $this-color: darken($bodycolor, 10%);
- background: $this-color;
- border:1px solid $this-color;
- &:hover, &:focus, &.focus{
- color: $bodytext;
- opacity:0.8;
- border:1px solid $this-color;
- background:$this-color;
- }
- }
- .btn-default.btn-outline {
- background-color: transparent;
- &:hover, &:focus, &.focus{
- background:darken($bodycolor, 10%);
- }
- }
- .btn-primary.btn-outline {
- color: $primary;
- background-color: transparent;
- &:hover, &:focus, &.focus{
- background:$primary;
- color:$white;
- }
- }
- .btn-success.btn-outline {
- color: $success;
- background-color: transparent;
- &:hover, &:focus, &.focus{
- background:$success;
- color:$white;
- }
- }
- .btn-info.btn-outline {
- color: $info;
- background-color: transparent;
- &:hover, &:focus, &.focus{
- background:$info;
- color:$white;
- }
- }
- .btn-warning.btn-outline {
- color: $warning;
- background-color: transparent;
- &:hover, &:focus, &.focus{
- background:$warning;
- color:$white;
- }
- }
- .btn-danger.btn-outline {
- color: $danger;
- background-color: transparent;
- &:hover, &:focus, &.focus{
- background:$danger;
- color:$white;
- }
- }
- .button-box .btn{ margin:0 8px 8px 0px;}
- .btn-primary.btn-outline:hover,
- .btn-success.btn-outline:hover,
- .btn-info.btn-outline:hover,
- .btn-warning.btn-outline:hover,
- .btn-danger.btn-outline:hover {
- color: white;
- }
- .btn-label {
- background: rgba(0, 0, 0, 0.05);
- display: inline-block;
- margin:-6px 12px -6px -14px;
- padding: 7px 15px;
- }
- .btn-facebook {
- color: $white !important;
- background-color: #3b5998 !important;
- }
- .btn-twitter {
- color: $white !important;
- background-color: #55acee !important;
- }
- .btn-linkedin {
- color: $white !important;
- background-color: #007bb6 !important;
- }
- .btn-dribbble {
- color: $white !important;
- background-color: #ea4c89 !important;
- }
- .btn-googleplus {
- color: $white !important;
- background-color: #dd4b39 !important;
- }
- .btn-instagram {
- color: $white !important;
- background-color: #3f729b !important;
- }
- .btn-pinterest {
- color: $white !important;
- background-color: #cb2027 !important;
- }
- .btn-dropbox {
- color: $white !important;
- background-color: #007ee5 !important;
- }
- .btn-flickr {
- color: $white !important;
- background-color: #ff0084 !important;
- }
- .btn-tumblr {
- color: $white !important;
- background-color: #32506d !important;
- }
- .btn-skype {
- color: $white !important;
- background-color: #00aff0 !important;
- }
- .btn-youtube {
- color: $white !important;
- background-color: #bb0000 !important;
- }
- .btn-github {
- color: $white !important;
- background-color: #171515 !important;
- }
- .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover, .btn-primary.focus, .btn-primary:focus {
- background-color: $primary ;
- border: 1px solid $primary;
- }
- .btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success.focus:active, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover, .btn-success.focus, .btn-success:focus {
- background-color: $success;
- border: 1px solid $success;
- }
- .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover, .btn-info.focus, .btn-info:focus {
- background-color: $info;
- border: 1px solid $info;
- }
- .btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning.focus:active, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover, .btn-warning.focus, .btn-warning:focus {
- background-color: $warning;
- border: 1px solid $warning;
- }
- .btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger.focus:active, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover, .btn-danger.focus, .btn-danger:focus {
- background-color: $danger;
- border: 1px solid $danger;
- }
- .btn-inverse, .btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active, .btn-inverse.focus, .btn-inverse:active, .btn-inverse:focus, .btn-inverse:hover, .open > .dropdown-toggle.btn-inverse {
- background-color: $inverse;
- border: 1px solid $inverse;
- color: $white;
- }
- // Chat Widget
- .chat {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .chat li {
- margin-bottom: 10px;
- padding-bottom: 5px;
- border-bottom: 1px dotted $border;
- }
- .chat li.left .chat-body {
- margin-left: 60px;
- }
- .chat li.right .chat-body {
- margin-right: 60px;
- }
- .chat li .chat-body p {
- margin: 0;
- }
- .panel .slidedown .glyphicon,
- .chat .glyphicon {
- margin-right: 5px;
- }
- .chat-panel .panel-body {
- height: 350px;
- overflow-y: scroll;
- }
- // Login Page
- .login-panel {
- margin-top: 25%;
- }
- // Flot Charts Containers
- .flot-chart {
- display: block;
- height: 400px;
- }
- .flot-chart-content {
- width: 100%;
- height: 100%;
- }
- // DataTables Overrides
- table.dataTable thead .sorting,
- table.dataTable thead .sorting_asc,
- table.dataTable thead .sorting_desc,
- table.dataTable thead .sorting_asc_disabled,
- table.dataTable thead .sorting_desc_disabled {
- background: transparent;
- }
- table.dataTable thead .sorting_asc:after {
- content: "\f0de";
- float: right;
- font-family: fontawesome;
- }
- table.dataTable thead .sorting_desc:after {
- content: "\f0dd";
- float: right;
- font-family: fontawesome;
- }
- table.dataTable thead .sorting:after {
- content: "\f0dc";
- float: right;
- font-family: fontawesome;
- color: rgba(50,50,50,.5);
- }
- // Circle Buttons
- .btn-circle {
- width: 30px;
- height: 30px;
- padding: 6px 0;
- border-radius: 15px;
- text-align: center;
- font-size: 12px;
- line-height: 1.428571429;
- }
- .btn-circle.btn-lg {
- width: 50px;
- height: 50px;
- padding: 10px 16px;
- border-radius: 25px;
- font-size: 18px;
- line-height: 1.33;
- }
- .btn-circle.btn-xl {
- width: 70px;
- height: 70px;
- padding: 10px 16px;
- border-radius: 35px;
- font-size: 24px;
- line-height: 1.33;
- }
- // Grid Demo Elements
- .show-grid [class^="col-"] {
- padding-top: 10px;
- padding-bottom: 10px;
- border: 1px solid $border;
- background-color: $extralight;
- }
- .show-grid {
- margin: 15px 0;
- }
- // Custom Colored Panels
- .huge {
- font-size: 40px;
- }
- .white-box{
- background:$white;
- padding:25px;
- margin-bottom:15px;
- .box-title{
- margin:0px 0px 12px;
- font-weight:$font-bold;
- text-transform:uppercase;
- font-size:14px;
- }
- }
- @mixin panel-border-and-footer($color) {
- border: 1px solid $color;
- .panel-footer {
- background-color: rgba($color, .1);
- }
- }
- .panel{
- border-radius:$radius;
- margin-bottom:15px;
- border:0px;
- .panel-heading{
- border-radius:$radius;
- font-weight:$font-bold;
- text-transform:uppercase;
- padding:20px 25px;
- .panel-title{
- font-size:14px;
- color:$dark;
- }
- a{
- i{
- font-size:12px;
- margin-left:8px;
- }
- }
- }
- .panel-action{float:$rgt;
- a{ opacity:0.5;
- &:hover{
- opacity:1;
- }
- }
- }
- .panel-body{ padding:25px;
- &:first-child h3{
- margin-top:0px;
- font-weight:$font-bold;
- font-family:$basefont1;
- font-size:14px;
- text-transform:uppercase;
- }
- }
- .panel-footer{
- background:$white;
- border-radius:$radius;
- padding:20px 25px;
- }
- }
- .panel-green, .panel-success{
- .panel-heading {
- border-color: $success;
- color: white;
- background-color: $success;
- a {
- color:$white;
- &:hover{
- color:rgba(255, 255, 255, 0.5);
- }
- }
- }
- a {
- color: $success;
- &:hover {
- color: darken($success, 15%);
- }
- }
- @include panel-border-and-footer($success);
- }
- .panel-black, .panel-inverse{
- border-color: $inverse;
- .panel-heading {
- border-color: $inverse;
- color: white;
- background-color: $inverse;
- a {
- color:$white;
- &:hover{
- color:rgba(255, 255, 255, 0.5);
- }
- }
- }
- a {
- color: $inverse;
- &:hover {
- color: darken($inverse, 15%);
- }
- }
- @include panel-border-and-footer($inverse);
- }
- .panel-darkblue, .panel-primary{
- border-color: $primary;
- .panel-heading {
- border-color: $primary;
- color: white;
- background-color: $primary;
- a {
- color:$white;
- &:hover{
- color:rgba(255, 255, 255, 0.5);
- }
- }
- }
- a {
- color: $primary;
- &:hover {
- color: darken($primary, 15%);
- }
- }
- @include panel-border-and-footer($primary);
- }
- .panel-blue, .panel-info{
- border-color: $info;
- .panel-heading {
- border-color: $info;
- color: white;
- background-color: $info;
- a {
- color:$white;
- &:hover{
- color:rgba(255, 255, 255, 0.5);
- }
- }
- }
- a {
- color: $info;
- &:hover {
- color: darken($info, 15%);
- }
- }
- @include panel-border-and-footer($info);
- }
- .panel-red, .panel-danger {
- border-color: $danger;
- .panel-heading {
- border-color: $danger;
- color: white;
- background-color: $danger;
- a {
- color:$white;
- &:hover{
- color:rgba(255, 255, 255, 0.5);
- }
- }
- }
- a {
- color: $danger;
- &:hover {
- color: darken($danger, 15%);
- }
- }
- @include panel-border-and-footer($danger);
- }
- .panel-yellow, .panel-warning {
- border-color: $warning;
- .panel-heading {
- border-color: $warning;
- color: white;
- background-color: $warning;
- a {
- color:$white;
- &:hover{
- color:rgba(255, 255, 255, 0.5);
- }
- }
- }
- a {
- color: $warning;
- &:hover {
- color: darken($warning, 15%);
- }
- }
- @include panel-border-and-footer($warning);
- }
- .panel-white, .panel-default{
- border-color: $border;
- .panel-heading {
- color: $dark;
- background-color: $border;
- border-bottom:1px solid $border;
- }
- .panel-body{
- color:$dark;
- }
- .panel-action a{ color:$dark; opacity:0.5;
- &:hover{
- opacity:1;
- color:$dark;
- }
- }
- .panel-footer{
- background:$white;
- color:$dark;
- border-top:1px solid $border;
- }
- @include panel-border-and-footer($border);
- }
- .full-panel-info{
- border-color: $info;
- .panel-heading {
- border-color: $info;
- color: white;
- background-color: $info;
- border-bottom:1px solid $border;
- }
- .panel-body{
- background:$info;
- color:$white;
- }
- .panel-footer{
- background:$info;
- color:$white;
- border-top:1px solid $border;
- }
- a {
- color: $info;
- &:hover {
- color: darken($info, 15%);
- }
- }
- }
- .full-panel-warning{
- border-color: $warning;
- .panel-heading {
- border-color: $warning;
- color: white;
- background-color: $warning;
- border-bottom:1px solid $border;
- }
- .panel-body{
- background:$warning;
- color:$white;
- }
- .panel-footer{
- background:$warning;
- color:$white;
- border-top:1px solid $border;
- }
- a {
- color: $warning;
- &:hover {
- color: darken($warning, 15%);
- }
- }
- }
- .full-panel-success{
- border-color: $success;
- .panel-heading {
- border-color: $success;
- color: white;
- background-color: $success;
- border-bottom:1px solid $border;
- }
- .panel-body{
- background:$success;
- color:$white;
- }
- .panel-footer{
- background:$success;
- color:$white;
- border-top:1px solid $border;
- }
- a {
- color: $success;
- &:hover {
- color: darken($success, 15%);
- }
- }
- }
- .full-panel-purple{
- border-color: $purple;
- .panel-heading {
- color: white;
- background-color: $purple;
- border-bottom:1px solid $border;
- }
- .panel-body{
- background:$purple;
- color:$white;
- }
- .panel-footer{
- background:$purple;
- color:$white;
- border-top:1px solid $border;
- }
- a {
- color: $purple;
- &:hover {
- color: darken($purple, 15%);
- }
- }
- }
- .full-panel-danger{
- border-color: $danger;
- .panel-heading {
- border-color: $danger;
- color: white;
- background-color: $danger;
- border-bottom:1px solid $border;
- }
- .panel-body{
- background:$danger;
- color:$white;
- }
- .panel-footer{
- background:$danger;
- color:$white;
- border-top:1px solid $border;
- }
- a {
- color: $danger;
- &:hover {
- color: darken($danger, 15%);
- }
- }
- }
- .full-panel-inverse{
- border-color: $inverse;
- .panel-heading {
- border-color: $inverse;
- color: white;
- background-color: $inverse;
- border-bottom:1px solid $border;
- }
- .panel-body{
- background:$inverse;
- color:$white;
- }
- .panel-footer{
- background:$inverse;
- color:$white;
- border-top:1px solid $border;
- }
- a {
- color: $inverse;
- &:hover {
- color: darken($inverse, 15%);
- }
- }
- }
- .full-panel-default{
- border-color: $border;
- .panel-heading {
- color: $dark;
- background-color: $white;
- border-bottom:1px solid $border;
- }
- .panel-body{
- color:$dark;
- }
- .panel-footer{
- background:$white;
- color:$dark;
- border-top:1px solid $border;
- }
- a {
- color: $dark;
- &:hover {
- color: darken($inverse, 15%);
- }
- }
- }
- .panel-opcl{
- float:right;
- i{
- margin-left:8px;
- font-size:10px;
- cursor:pointer;
- }
- }
- .fa-fw{
- width:20px!important;
- display:inline-block !important;
- text-align:left !important;
- }
- /*Wave Effeects*/
- @mixin waves-transition($transition) {
- -webkit-transition: $transition;
- -moz-transition: $transition;
- -o-transition: $transition;
- transition: $transition;
- }
- @mixin waves-transform($string) {
- -webkit-transform: $string;
- -moz-transform: $string;
- -ms-transform: $string;
- -o-transform: $string;
- transform: $string;
- }
- @mixin waves-box-shadow($shadow) {
- -webkit-box-shadow: $shadow;
- box-shadow: $shadow;
- }
- .waves-effect {
- position: relative;
- cursor: pointer;
- display: inline-block;
- overflow: hidden;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-tap-highlight-color: transparent;
- .waves-ripple {
- position: absolute;
- border-radius: 50%;
- width: 20px;
- height: 20px;
- margin-top:-10px;
- margin-left:-10px;
- opacity: 0;
- background: rgba(0,0,0,0.08);
- @include waves-transition(all 0.5s ease-out);
- -webkit-transition-property: -webkit-transform, opacity;
- -moz-transition-property: -moz-transform, opacity;
- -o-transition-property: -o-transform, opacity;
- transition-property: transform, opacity;
- @include waves-transform(scale(0) translate(0,0));
- -webkit-transform: scale(0);
- -moz-transform: scale(0);
- -ms-transform: scale(0);
- -o-transform: scale(0);
- transform: scale(0);
- pointer-events: none;
- }
- &.waves-light .waves-ripple {
- background: rgba(255,255,255,0.4);
- $gradient: rgba(255,255,255,0.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%;
- background: -webkit-radial-gradient($gradient);
- background: -o-radial-gradient($gradient);
- background: -moz-radial-gradient($gradient);
- background: radial-gradient($gradient);
- }
- &.waves-classic .waves-ripple {
- background: rgba(0,0,0,0.2);
- }
- &.waves-classic.waves-light .waves-ripple {
- background: rgba(255,255,255,0.4);
- }
- }
- .waves-notransition {
- @include waves-transition(none '!important');
- }
- .waves-button,
- .waves-circle {
- @include waves-transform(translateZ(0));
- -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
- }
- .waves-button,
- .waves-button:hover,
- .waves-button:visited,
- .waves-button-input {
- white-space: nowrap;
- vertical-align: middle;
- cursor: pointer;
- border: none;
- outline: none;
- color: inherit;
- background-color: rgba(0, 0, 0, 0);
- font-size: 1em;
- line-height:1em;
- text-align: center;
- text-decoration: none;
- z-index: 1;
- }
- .waves-button {
- padding: 0.85em 1.1em;
- border-radius: 0.2em;
- }
- .waves-button-input {
- margin: 0;
- padding: 0.85em 1.1em;
- }
- .waves-input-wrapper {
- border-radius: 0.2em;
- vertical-align: bottom;
- &.waves-button {
- padding: 0;
- }
- .waves-button-input {
- position: relative;
- top: 0;
- left: 0;
- z-index: 1;
- }
- }
- .waves-circle {
- text-align: center;
- width: 2.5em;
- height: 2.5em;
- line-height: 2.5em;
- border-radius: 50%;
- }
- .waves-float {
- -webkit-mask-image: none;
- @include waves-box-shadow(0px 1px 1.5px 1px rgba(0, 0, 0, 0.12));
- @include waves-transition(all 300ms);
- &:active {
- @include waves-box-shadow(0px 8px 20px 1px rgba(0, 0, 0, 0.30));
- }
- }
- .waves-block {
- display: block;
- }
- /* =============
- Checkbox and Radios
- ============= */
- .checkbox {
- padding-left: 20px;
- label {
- display: inline-block;
- padding-left: 5px;
- position: relative;
- &::before {
- -o-transition: 0.3s ease-in-out;
- -webkit-transition: 0.3s ease-in-out;
- background-color: $white;
- border-radius: 1px;
- border: 1px solid $border;
- content: "";
- display: inline-block;
- height: 17px;
- left: 0;
- margin-left: -20px;
- position: absolute;
- transition: 0.3s ease-in-out;
- width: 17px;
- outline: none !important;
- }
- &::after {
- color: $dark;
- display: inline-block;
- font-size: 11px;
- height: 16px;
- left: 0;
- margin-left: -20px;
- padding-left: 3px;
- padding-top: 1px;
- position: absolute;
- top: 0;
- width: 16px;
- }
- }
- input[type="checkbox"] {
- cursor: pointer;
- opacity: 0;
- z-index: 1;
- outline: none !important;
- &:disabled + label {
- opacity: 0.65;
- }
- }
- input[type="checkbox"]:focus + label {
- &::before {
- outline-offset: -2px;
- outline: none;
- outline: thin dotted;
- }
- }
- input[type="checkbox"]:checked + label {
- &::after {
- content: "\f00c";
- font-family: 'FontAwesome';
- }
- }
- input[type="checkbox"]:disabled + label {
- &::before {
- background-color: $light;
- cursor: not-allowed;
- }
- }
- }
- .checkbox.checkbox-circle {
- label {
- &::before {
- border-radius: 50%;
- }
- }
- }
- .checkbox.checkbox-inline {
- margin-top: 0;
- }
- .checkbox.checkbox-single {
- label {
- height: 17px;
- }
- }
- .checkbox-primary {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $primary;
- border-color: $primary;
- }
- &::after {
- color: $white;
- }
- }
- }
- .checkbox-danger {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $danger;
- border-color: $danger;
- }
- &::after {
- color: $white;
- }
- }
- }
- .checkbox-info {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $info;
- border-color: $info;
- }
- &::after {
- color: $white;
- }
- }
- }
- .checkbox-warning {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $warning;
- border-color: $warning;
- }
- &::after {
- color: $white;
- }
- }
- }
- .checkbox-success {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $success;
- border-color: $success;
- }
- &::after {
- color: $white;
- }
- }
- }
- .checkbox-purple {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $purple;
- border-color: $purple;
- }
- &::after {
- color: $white;
- }
- }
- }
- .checkbox-red {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $danger;
- border-color: $danger;
- }
- &::after {
- color: $white;
- }
- }
- }
- .checkbox-inverse {
- input[type="checkbox"]:checked + label {
- &::before {
- background-color: $inverse;
- border-color: $inverse;
- }
- &::after {
- color: $white;
- }
- }
- }
- /* Radios */
- .radio {
- padding-left: 20px;
- label {
- display: inline-block;
- padding-left: 5px;
- position: relative;
- &::before {
- -o-transition: border 0.5s ease-in-out;
- -webkit-transition: border 0.5s ease-in-out;
- background-color: $white;
- border-radius: 50%;
- border: 1px solid $border;
- content: "";
- display: inline-block;
- height: 17px;
- left: 0;
- margin-left: -20px;
- outline: none !important;
- position: absolute;
- transition: border 0.5s ease-in-out;
- width: 17px;
- outline: none !important;
- }
- &::after {
- -moz-transition: -moz-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
- -ms-transform: scale(0, 0);
- -o-transform: scale(0, 0);
- -o-transition: -o-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
- -webkit-transform: scale(0, 0);
- -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
- background-color: $dark;
- border-radius: 50%;
- content: " ";
- display: inline-block;
- height: 7px;
- left: 5px;
- margin-left: -20px;
- position: absolute;
- top: 5px;
- transform: scale(0, 0);
- transition: transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
- width: 7px;
- }
- }
- input[type="radio"] {
- cursor: pointer;
- opacity: 0;
- z-index: 1;
- outline: none !important;
- &:disabled + label {
- opacity: 0.65;
- }
- }
- input[type="radio"]:focus + label {
- &::before {
- outline-offset: -2px;
- outline: 5px auto -webkit-focus-ring-color;
- outline: thin dotted;
- }
- }
- input[type="radio"]:checked + label {
- &::after {
- -ms-transform: scale(1, 1);
- -o-transform: scale(1, 1);
- -webkit-transform: scale(1, 1);
- transform: scale(1, 1);
- }
- }
- input[type="radio"]:disabled + label {
- &::before {
- cursor: not-allowed;
- }
- }
- }
- .radio.radio-inline {
- margin-top: 0;
- }
- .radio.radio-single {
- label {
- height: 17px;
- }
- }
- .radio-primary {
- input[type="radio"] + label {
- &::after {
- background-color: $primary;
- }
- }
- input[type="radio"]:checked + label {
- &::before {
- border-color: $primary;
- }
- &::after {
- background-color: $primary;
- }
- }
- }
- .radio-danger {
- input[type="radio"] + label {
- &::after {
- background-color: $danger;
- }
- }
- input[type="radio"]:checked + label {
- &::before {
- border-color: $danger;
- }
- &::after {
- background-color: $danger;
- }
- }
- }
- .radio-info {
- input[type="radio"] + label {
- &::after {
- background-color: $info;
- }
- }
- input[type="radio"]:checked + label {
- &::before {
- border-color: $info;
- }
- &::after {
- background-color: $info;
- }
- }
- }
- .radio-warning {
- input[type="radio"] + label {
- &::after {
- background-color: $warning;
- }
- }
- input[type="radio"]:checked + label {
- &::before {
- border-color: $warning;
- }
- &::after {
- background-color: $warning;
- }
- }
- }
- .radio-success {
- input[type="radio"] + label {
- &::after {
- background-color: $success;
- }
- }
- input[type="radio"]:checked + label {
- &::before {
- border-color: $success;
- }
- &::after {
- background-color: $success;
- }
- }
- }
- .radio-purple {
- input[type="radio"] + label {
- &::after {
- background-color: $purple;
- }
- }
- input[type="radio"]:checked + label {
- &::before {
- border-color: $purple;
- }
- &::after {
- background-color: $purple;
- }
- }
- }
- .radio-red {
- input[type="radio"] + label {
- &::after {
- background-color: $danger;
- }
- }
- input[type="radio"]:checked + label {
- &::before {
- border-color: $danger;
- }
- &::after {
- background-color: $danger;
- }
- }
- }
- /* File Upload */
- .fileupload {
- overflow: hidden;
- position: relative;
- input.upload {
- cursor: pointer;
- filter: alpha(opacity=0);
- font-size: 20px;
- margin: 0;
- opacity: 0;
- padding: 0;
- position: absolute;
- right: 0;
- top: 0;
- }
- }
- /**
- Models
- **/
- .model_img {
- cursor:pointer;
- }
- /*Nestable*/
- .myadmin-dd {
- .dd-list {
- .dd-item {
- .dd-handle {
- background: $white;
- border: 1px solid $border;
- padding: 8px 16px;
- height: auto;
- font-weight:$font-bold;
- border-radius:$radius;
- &:hover {
- color: $info;
- }
- }
- button {
- height: auto;
- font-size: 17px;
- margin: 8px auto;
- color: $dark;
- width: 30px;
- }
- }
- }
- }
- .myadmin-dd-empty {
- .dd-list {
- .dd3-handle {
- border: 1px solid $border;
- border-bottom:0px;
- background: $white;
- height: 36px;
- width: 36px;
- &:before {
- color: inherit;
- top: 7px;
- }
- &:hover {
- color: $info;
- }
- }
- .dd3-content {
- height: auto;
- border: 1px solid $border;
- padding: 8px 16px 8px 46px;
- background: $white;
- font-weight: $font-bold;
- &:hover {
- color: $info;
- }
- }
- button {
- width: 26px;
- height: 26px;
- font-size: 16px;
- font-weight: $font-bold;
- }
- }
- }
- /*Setting box*/
- .settings_box{
- position:absolute;
- top:75px;
- right:0px;
- z-index:100;
- a {
- background:$white;
- padding:15px;
- display:inline-block;
- vertical-align:top;
- i {
- display:block;
- -webkit-animation-name: rotate;
- -webkit-animation-duration: 2s;
- -moz-animation-name: rotate;
- -moz-animation-duration: 2s;
- -moz-animation-iteration-count: infinite;
- -moz-animation-timing-function: linear;
- animation-name: rotate;
- font-size:16px;
- animation-duration: 1s;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
- }
- }
- }
- @-webkit-keyframes rotate {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(360deg);
- }
- }
- @-moz-keyframes rotate {
- from {-moz-transform: rotate(0deg);}
- to {-moz-transform: rotate(360deg);}
- }
- @keyframes rotate {
- from {transform: rotate(0deg);}
- to {transform: rotate(360deg);}
- }
- .theme_color{
- margin:0px;
- padding:0px;
- display:inline-block;
- overflow:hidden;
- width:0px;
- transition:0.5s ease-out;
- background:$white;
- li{
- list-style:none;
- width:30%;
- float:left;
- margin:0 1.5%;
- a{
- padding:5px;
- height:50px;
- display:block;
- }
- a.theme-green{ background:$success}
- a.theme-red{ background:$danger}
- a.theme-dark{ background:$inverse}
- }
- }
- .theme_block{
- width:200px;
- padding:30px;
- }
- /*Common Ul*/
- ul.common li {
- display: inline-block;
- line-height: 40px;
- list-style: outside none none;
- width: 48%;
- a {
- color: $bodytext;
- &:hover {
- color: $info;
- }
- }
- }
|