summaryrefslogtreecommitdiff
path: root/templates/assets/sass/material-kit/_pills.scss
diff options
context:
space:
mode:
Diffstat (limited to 'templates/assets/sass/material-kit/_pills.scss')
-rw-r--r--templates/assets/sass/material-kit/_pills.scss91
1 files changed, 0 insertions, 91 deletions
diff --git a/templates/assets/sass/material-kit/_pills.scss b/templates/assets/sass/material-kit/_pills.scss
deleted file mode 100644
index b267b82..0000000
--- a/templates/assets/sass/material-kit/_pills.scss
+++ /dev/null
@@ -1,91 +0,0 @@
-.nav-pills{
-
- > li {
- > a{
- line-height: $mdb-btn-font-size-base * 2;
- text-transform: uppercase;
- font-size: $mdb-btn-font-size-base;
- font-weight: $font-weight-bold;
- min-width: 100px;
- text-align: center;
- color: $gray;
- transition: all .3s;
-
- &:hover{
- background-color: rgba(200, 200, 200, 0.2);
- }
- }
-
- i{
- display: block;
- font-size: 30px;
- padding: 15px 0;
- }
-
- &.active > a{
- &,
- &:focus,
- &:hover{
- background-color: $brand-primary;
- color: $white-color;
- @include shadow-big-color($brand-primary);
- }
- }
-
- }
-
- &.nav-pills-info{
- > li {
- &.active > a{
- &,
- &:focus,
- &:hover{
- background-color: $brand-info;
- @include shadow-big-color($brand-info);
- }
- }
- }
- }
-
- &.nav-pills-success{
- > li {
- &.active > a{
- &,
- &:focus,
- &:hover{
- background-color: $brand-success;
- @include shadow-big-color($brand-success);
- }
- }
- }
- }
-
- &.nav-pills-warning{
- > li {
- &.active > a{
- &,
- &:focus,
- &:hover{
- background-color: $brand-warning;
- @include shadow-big-color($brand-warning);
- }
- }
- }
- }
-
- &.nav-pills-danger{
- > li {
- &.active > a{
- &,
- &:focus,
- &:hover{
- background-color: $brand-danger;
- @include shadow-big-color($brand-danger);
- }
- }
- }
- }
-}
-.tab-space{
- padding: 20px 0 50px 0px;
-}