123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*******************************
- hero-side-category style
- *******************************/
- .hero-side-category {
- width: 100%;
- position: relative;
- .category-toggle {
- padding: 10px 20px;
- background-color: $color-white;
- color: $color-dark;
- font-size: 14px;
- text-transform: uppercase;
- font-weight: fontweight(medium);
- line-height: 24px;
- width: 100%;
- text-align: left;
- border: 2px solid $border-color2;
- border-radius: 5px;
- position: relative;
-
- i {
- display: inline-block;
- margin-right: 10px;
- text-align: center;
- font-size: 18px;
- @include transform(translate(0, 2px));
- }
- }
-
- .category-menu {
- background-color: $color-white;
- width: 100%;
- left: 0;
- top: 110%;
- border: 1px solid $border-color;
- position: absolute;
- display: none;
- z-index: 2;
- height: 500px;
- overflow-x: auto;
- @include border-radius(5px);
- }
-
- .category-menu {
- li {
- a {
- display: block;
- padding: 10px 25px;
- line-height: 30px;
- font-size: 14px;
- color: $focus-color;
- font-weight: fontweight(regular);
- position: relative;
- border-bottom: 1px solid $border-color;
- i {
- position: absolute;
- right: 30px;
- }
- }
- .category-mega-menu {
- display: none;
- a {
- padding: 10px 25px 10px 35px;
- line-height: 30px;
- font-size: 14px;
- font-weight: fontweight(regular);
- color: $focus-color;
- position: relative;
- margin: 0;
- text-transform: inherit;
- }
- }
- }
- }
- }
-
- .hero-side-category {
- .category-menu {
- li {
- #more-btn {
- font-weight: fontweight(medium);
- padding-left: 45px;
- i {
- right: auto;
- left: 30px;
- }
- }
- }
- }
- }
- // category-menu
- // theme1
- .theme1 {
- .category-menu {
- li {
- &:hover > {
- a {
- color: $theme-color;
- }
- }
- }
- }
- }
-
-
-
- /***********************************
- hero-side-category style END
- ***********************************/
|