diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-22 19:19:26 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-22 19:19:26 +0100 |
| commit | d42c8b528eb595101954f478e0024e3f079f6fbf (patch) | |
| tree | 61a528cf94f1f6941f4683ae8736a4a0135c035e /templates/assets/sass/material-kit/_pills.scss | |
| download | minionlivesmatter-d42c8b528eb595101954f478e0024e3f079f6fbf.tar.gz minionlivesmatter-d42c8b528eb595101954f478e0024e3f079f6fbf.zip | |
first implementation of fun stats site
Diffstat (limited to 'templates/assets/sass/material-kit/_pills.scss')
| -rw-r--r-- | templates/assets/sass/material-kit/_pills.scss | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/templates/assets/sass/material-kit/_pills.scss b/templates/assets/sass/material-kit/_pills.scss new file mode 100644 index 0000000..b267b82 --- /dev/null +++ b/templates/assets/sass/material-kit/_pills.scss @@ -0,0 +1,91 @@ +.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; +} |
