123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- .sidebar {
- background : darken($primary, 10%);
- position : fixed;
- left : 0px;
- height : calc(100% - 20px);
- width : $sidebar-width;
- top : 0px;
- z-index : 3;
- bottom : 0px;
- border-radius : 0px;
- box-shadow : $shadow;
- // border-right : 1px solid $border-color;
-
-
- // @include respond("tab-port") {
- // width: $sidebar-width;
- // }
-
- @include respond("phone-land") {
- top : auto;
- bottom : 0;
- width : 100%;
- height : 50px;
- left : 0;
- border-radius: 0px;
-
- }
-
-
-
- }
-
- .brand-logo {
- text-align: center;
- margin : 20px 20px 20px;
-
- img {
- // max-width: 35px;
- // filter: brightness(100);
- }
-
- // .mini-logo {
- // display: none;
- // }
-
- // @include respond("tab-port") {
- // text-align: center;
-
- // .full-logo {
- // display: none;
- // }
-
- // .mini-logo {
- // display: block;
- // }
- // }
-
- @include respond("phone-land") {
- display: none;
- }
- }
-
- .menu {
- margin-top: 30px;
- padding : 20px;
- position : relative;
-
- @include respond("phone-land") {
- margin-top: 0px;
- padding : 0px;
- background: $primary;
- }
-
- ul {
- @include respond("phone-land") {
- display : flex;
- justify-content: space-around;
- align-items : center;
- }
-
- li {
- // text-align: center;
- margin-bottom: 8px;
- border-radius: $radius;
-
-
-
- &:hover,
- &:focus,
- &:active {
-
- // background: lighten($dark, 0%);
- a {
- color: $white;
-
- .nav-text {
- display : block;
- background: white;
- color : $primary;
-
- @include respond("tab-port") {
- display: none;
-
- }
- }
- }
-
- i {
- color : $white;
- opacity: 1;
- }
- }
-
- &.active {
- // background: $white;
-
- i {
- color : $white;
- opacity: 1;
- }
-
- span {
- color: $white;
- }
- }
-
- i {
- color : $white;
- font-size : 20px;
- opacity : 0.6;
- margin-right: 15px;
- line-height : 0px;
-
-
- @include respond("tab-port") {
- margin-right: 0px;
-
- }
- }
-
- a {
- padding : 5px 8px;
- display : flex;
- align-items : center;
- min-height : 3.5rem;
- // font-weight : 600;
- color : $body-color;
- // justify-content: center;
-
- @include respond("tab-port") {
- justify-content: center;
- }
-
- .nav-text {
- display : none;
- padding : 3px 8px;
- border-radius: 4px;
- box-shadow : $shadow;
-
- @include respond("tab-port") {
- display: none;
-
- }
- }
-
-
- }
-
- &.logout {
- position: fixed;
- bottom : 50px;
- left : 0;
- right : 0;
- width : 80px;
-
- a {
- padding-left: 30px;
- }
-
- @include respond("tab-port") {
- right : auto;
- justify-content: center;
- left : 10px;
- width : auto;
- }
-
- @include respond("phone-land") {
- position: relative;
- bottom : 0;
- left : auto;
- right : auto;
- width : auto;
-
- a {
- padding-left: 0px;
- }
- }
- }
- }
- }
-
- }
-
- .card-limit-progress {
- display: none;
-
- @include respond("tab-land") {
- display: none;
- }
-
- // background : lighten($secondary, 5%);
- background : url('/images/bg/6.jpg');
- position : absolute;
- bottom : 150px;
- padding : 15px 20px;
- margin : 20px;
- left : 0;
- right : 0;
- border-radius: $radius;
-
- h5 {
- font-size: 14px;
- color : $white;
- }
-
- p {
- font-size: 12px;
-
- strong {
- color: $white;
- }
- }
-
- .progress {
- height : 6px;
- background-color: darken($light, 10%);
- }
- }
|