diff --git a/angular.json b/angular.json index 933d160..9e9a323 100644 --- a/angular.json +++ b/angular.json @@ -21,7 +21,8 @@ "assets": ["src/favicon.ico", "src/assets"], "styles": [ "src/styles.css", - "node_modules/ng-zorro-antd/ng-zorro-antd.min.css" + "node_modules/ng-zorro-antd/ng-zorro-antd.min.css", + "node_modules/ngx-toastr/toastr.css" ], "scripts": [] }, diff --git a/package-lock.json b/package-lock.json index a1dff48..3e17818 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,6 @@ "ngx-pagination": "^6.0.3", "ngx-toastr": "^17.0.2", "rxjs": "~7.8.0", - "toastr": "^2.1.4", "tslib": "^2.3.0", "zone.js": "~0.13.0" }, @@ -11258,11 +11257,6 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/jquery": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", - "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" - }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -15475,14 +15469,6 @@ "node": ">=8.0" } }, - "node_modules/toastr": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/toastr/-/toastr-2.1.4.tgz", - "integrity": "sha512-LIy77F5n+sz4tefMmFOntcJ6HL0Fv3k1TDnNmFZ0bU/GcvIIfy6eG2v7zQmMiYgaalAiUv75ttFrPn5s0gyqlA==", - "dependencies": { - "jquery": ">=1.12.0" - } - }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", diff --git a/package.json b/package.json index 544fa13..2289094 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,6 @@ "ngx-pagination": "^6.0.3", "ngx-toastr": "^17.0.2", "rxjs": "~7.8.0", - "toastr": "^2.1.4", "tslib": "^2.3.0", "zone.js": "~0.13.0" }, diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 0a17b8f..ce4534f 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -4,8 +4,8 @@ import { CommonModule, registerLocaleData } from '@angular/common'; import { HttpClientModule } from '@angular/common/http'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { AppRoutingModule } from './app-routing.module'; - -import { MaterialModule } from './material-module'; +import { RouterModule } from '@angular/router'; +import { ToastrModule } from 'ngx-toastr'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AngularFireModule } from '@angular/fire/compat'; import { AngularFireStorageModule } from '@angular/fire/compat/storage'; @@ -33,8 +33,6 @@ import { LibModule } from './lib/lib.module'; import { NZ_I18N } from 'ng-zorro-antd/i18n'; import { en_US } from 'ng-zorro-antd/i18n'; import en from '@angular/common/locales/en'; -import { RouterModule } from '@angular/router'; -import { ToastrModule } from 'ngx-toastr'; registerLocaleData(en); @@ -55,13 +53,10 @@ registerLocaleData(en); AuthRoutingModule, ProductDetailModule, ProfileModule, - MaterialModule, PostModule, AngularFireModule.initializeApp(environment.firebaseConfig), AngularFireStorageModule, BrowserAnimationsModule, - // ScrollingModule, - // DragDropModule, ToastrModule.forRoot({ closeButton: true, timeOut: 2000, diff --git a/src/app/cart/gross-product/gross-product.component.html b/src/app/cart/gross-product/gross-product.component.html index de10afe..4915d84 100644 --- a/src/app/cart/gross-product/gross-product.component.html +++ b/src/app/cart/gross-product/gross-product.component.html @@ -1,23 +1,21 @@ - + - - - poster_1_up - - - {{productco.title}} - - + + poster_1_up + + + {{productco.title}} + {{productco.price | currency: 'USD'}}
- +
diff --git a/src/app/cart/gross-product/gross-product.component.ts b/src/app/cart/gross-product/gross-product.component.ts index 4a76406..38513f5 100644 --- a/src/app/cart/gross-product/gross-product.component.ts +++ b/src/app/cart/gross-product/gross-product.component.ts @@ -3,6 +3,7 @@ import { IUser } from 'src/app/model/auth.model'; import { AuthService } from 'src/app/service/auth.service'; import { Product } from 'src/app/model/product.model'; import { CartComponent } from '../cart.component'; +import { ToastrService } from 'ngx-toastr'; @Component({ selector: 'app-gross', @@ -16,13 +17,15 @@ export class GrossProductComponent { constructor( private authService: AuthService, - private cartComponent: CartComponent + private cartComponent: CartComponent, + private toastrService: ToastrService ) { this.user = this.authService.userValue; } removeItem() { this.cartComponent.removeItem(this.productco.id); + this.toastrService.info('Delete Product!'); } onChangeQuantity() { diff --git a/src/app/cart/orther-product/orther-product.component.html b/src/app/cart/orther-product/orther-product.component.html index 8510af5..ed0151d 100644 --- a/src/app/cart/orther-product/orther-product.component.html +++ b/src/app/cart/orther-product/orther-product.component.html @@ -1,12 +1,10 @@
-
- - -

{{product.title}}

-
+
+ +

{{product.title}}

- {{product.price | currency: 'USD'}} + {{product.price | currency: 'USD'}}
diff --git a/src/app/checkout/checkout.module.ts b/src/app/checkout/checkout.module.ts index 074def6..97b20f3 100644 --- a/src/app/checkout/checkout.module.ts +++ b/src/app/checkout/checkout.module.ts @@ -1,4 +1,4 @@ -import { NgModule } from '@angular/core'; +import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { NgOptimizedImage } from '@angular/common'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; @@ -27,6 +27,7 @@ import { ShippingAddressComponent } from './shipping-address/shipping-address.co ], providers: [], bootstrap: [], + schemas: [NO_ERRORS_SCHEMA], exports: [FormsModule], }) export class CheckoutModeule {} diff --git a/src/app/checkout/orther-product/orther-product.component.html b/src/app/checkout/orther-product/orther-product.component.html index 8510af5..ed0151d 100644 --- a/src/app/checkout/orther-product/orther-product.component.html +++ b/src/app/checkout/orther-product/orther-product.component.html @@ -1,12 +1,10 @@
-
- - -

{{product.title}}

-
+
+ +

{{product.title}}

- {{product.price | currency: 'USD'}} + {{product.price | currency: 'USD'}}
diff --git a/src/app/checkout/shipping-address/shipping-address.component.ts b/src/app/checkout/shipping-address/shipping-address.component.ts index 4ef04be..10c7b3c 100644 --- a/src/app/checkout/shipping-address/shipping-address.component.ts +++ b/src/app/checkout/shipping-address/shipping-address.component.ts @@ -68,7 +68,6 @@ export class ShippingAddressComponent implements OnInit { a.push(ifCheckout); localStorage.setItem(ORDER_KEY + this.user?.id, JSON.stringify(a)); this.router.navigate(['/profile']); - this.toastrService.success('Successful Order', 'Success!'); } else { this.toastrService.error( diff --git a/src/app/footertop/footertop.component.css b/src/app/footertop/footertop.component.css index e69de29..08819e5 100644 --- a/src/app/footertop/footertop.component.css +++ b/src/app/footertop/footertop.component.css @@ -0,0 +1,39 @@ +.footer-social a { + background: none repeat scroll 0 0 #1abc9c; + color: #fff; + display: inline-block; + font-size: 20px; + height: 40px; + margin-bottom: 10px; + margin-right: 10px; + padding-top: 5px; + text-align: center; + width: 40px; + border: 1px solid #1abc9c; +} + +.footer-social a:hover { + background-color: #222; + border-color: #666 +} + +.footer-social { + margin-top: 20px +} + +.footer-menu ul { + list-style: outside none none; + margin: 0; + padding: 0; +} + +.footer-menu ul li { + border-bottom: 1px dashed #555; + padding: 5px 0; +} + +.footer-menu a { + display: block; + padding: 5px 0; + color: #999 +} diff --git a/src/app/header/header.component.css b/src/app/header/header.component.css index e69de29..35305f8 100644 --- a/src/app/header/header.component.css +++ b/src/app/header/header.component.css @@ -0,0 +1,24 @@ +.user-menu ul { + list-style: outside none none; + margin: 0; + padding: 0; +} + +.user-menu li { + display: inline-block; +} + +.user-menu li a { + display: block; + font-size: 13px; + margin-right: 5px; + padding: 10px; +} + +.user-menu li a i.fa { + margin-right: 5px; + +} +a{ + color: #3dc6ab;; +} diff --git a/src/app/header/header.component.html b/src/app/header/header.component.html index d435e24..a27b834 100644 --- a/src/app/header/header.component.html +++ b/src/app/header/header.component.html @@ -8,12 +8,12 @@
  • Login
  • -
  • My Account
  • -
  • My Cart
  • -
  • Checkout
  • -
  • Logout
  • -
    - +
  • My Account
  • +
  • My Cart
  • +
  • Checkout
  • +
  • Logout
  • +
    diff --git a/src/app/home/bestproduct/recently-viewed/recently-viewed.component.html b/src/app/home/bestproduct/recently-viewed/recently-viewed.component.html index 1b9214d..23b7db0 100644 --- a/src/app/home/bestproduct/recently-viewed/recently-viewed.component.html +++ b/src/app/home/bestproduct/recently-viewed/recently-viewed.component.html @@ -1,14 +1,15 @@ -
    - -

    {{productco.title}}

    -
    - - - - - -
    -
    - {{productco.price | currency: 'USD'}} -
    + diff --git a/src/app/home/home.module.ts b/src/app/home/home.module.ts index d075d60..572bdc9 100644 --- a/src/app/home/home.module.ts +++ b/src/app/home/home.module.ts @@ -15,6 +15,7 @@ import { ProductComponent } from './newproduct/product/product.component'; import { TopSellersComponent } from './bestproduct/top-sellers/top-sellers.component'; import { RecentlyViewedComponent } from './bestproduct/recently-viewed/recently-viewed.component'; import { TopNewComponent } from './bestproduct/top-new/top-new.component'; +import { LibModule } from '../lib/lib.module'; @NgModule({ declarations: [ @@ -36,6 +37,7 @@ import { TopNewComponent } from './bestproduct/top-new/top-new.component'; NgOptimizedImage, CarouselModule, NgxPaginationModule, + LibModule, ], providers: [], bootstrap: [], diff --git a/src/app/home/newproduct/product/product.component.css b/src/app/home/newproduct/product/product.component.css index 3c385c3..199045f 100644 --- a/src/app/home/newproduct/product/product.component.css +++ b/src/app/home/newproduct/product/product.component.css @@ -79,3 +79,13 @@ form { .single-product:hover .product-hover:after { left: 0 } +.product-carousel-price ins { + color: #1abc9c; + font-weight: 700; + margin-right: 5px; + text-decoration: none; +} +.product-carousel-price{ + color: #1abc9c ; + cursor: pointer +} diff --git a/src/app/home/newproduct/product/product.component.html b/src/app/home/newproduct/product/product.component.html index 691808a..e39c108 100644 --- a/src/app/home/newproduct/product/product.component.html +++ b/src/app/home/newproduct/product/product.component.html @@ -8,10 +8,10 @@ details
    - + diff --git a/src/app/home/newproduct/product/product.component.ts b/src/app/home/newproduct/product/product.component.ts index d4a1dae..d9e2ec5 100644 --- a/src/app/home/newproduct/product/product.component.ts +++ b/src/app/home/newproduct/product/product.component.ts @@ -21,9 +21,9 @@ export class ProductComponent { constructor( private formBuilder: FormBuilder, private authService: AuthService, - private toastrService: ToastrService, private route: ActivatedRoute, - private router: Router + private router: Router, + private toastrService: ToastrService ) { this.user = this.authService.userValue; } diff --git a/src/app/lib/lib.module.ts b/src/app/lib/lib.module.ts index 17ca548..5391351 100644 --- a/src/app/lib/lib.module.ts +++ b/src/app/lib/lib.module.ts @@ -1,7 +1,19 @@ import { NgModule } from '@angular/core'; +import { MatFormFieldModule } from '@angular/material/form-field'; +import { MatInputModule } from '@angular/material/input'; +import { MatTableModule } from '@angular/material/table'; +import { MatTabsModule } from '@angular/material/tabs'; import { NzRateModule } from 'ng-zorro-antd/rate'; +import { ToastrModule } from 'ngx-toastr'; @NgModule({ - exports: [NzRateModule], + exports: [ + NzRateModule, + MatInputModule, + MatFormFieldModule, + MatTableModule, + MatTabsModule, + ToastrModule, + ], }) export class LibModule {} diff --git a/src/app/material-module.ts b/src/app/material-module.ts deleted file mode 100644 index f6fc2b9..0000000 --- a/src/app/material-module.ts +++ /dev/null @@ -1,92 +0,0 @@ -import { NgModule } from '@angular/core'; -import { A11yModule } from '@angular/cdk/a11y'; -import { DragDropModule } from '@angular/cdk/drag-drop'; -import { PortalModule } from '@angular/cdk/portal'; -import { ScrollingModule } from '@angular/cdk/scrolling'; -import { CdkStepperModule } from '@angular/cdk/stepper'; -import { CdkTableModule } from '@angular/cdk/table'; -import { CdkTreeModule } from '@angular/cdk/tree'; -import { MatAutocompleteModule } from '@angular/material/autocomplete'; -import { MatBadgeModule } from '@angular/material/badge'; -import { MatBottomSheetModule } from '@angular/material/bottom-sheet'; -import { MatButtonModule } from '@angular/material/button'; -import { MatButtonToggleModule } from '@angular/material/button-toggle'; -import { MatCardModule } from '@angular/material/card'; -import { MatCheckboxModule } from '@angular/material/checkbox'; -import { MatChipsModule } from '@angular/material/chips'; -import { MatStepperModule } from '@angular/material/stepper'; -import { MatDatepickerModule } from '@angular/material/datepicker'; -import { MatDialogModule } from '@angular/material/dialog'; -import { MatDividerModule } from '@angular/material/divider'; -import { MatExpansionModule } from '@angular/material/expansion'; -import { MatGridListModule } from '@angular/material/grid-list'; -import { MatIconModule } from '@angular/material/icon'; -import { MatInputModule } from '@angular/material/input'; -import { MatListModule } from '@angular/material/list'; -import { MatMenuModule } from '@angular/material/menu'; -import { MatNativeDateModule, MatRippleModule } from '@angular/material/core'; -import { MatPaginatorModule } from '@angular/material/paginator'; -import { MatProgressBarModule } from '@angular/material/progress-bar'; -import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; -import { MatRadioModule } from '@angular/material/radio'; -import { MatSelectModule } from '@angular/material/select'; -import { MatSidenavModule } from '@angular/material/sidenav'; -import { MatSliderModule } from '@angular/material/slider'; -import { MatSlideToggleModule } from '@angular/material/slide-toggle'; -import { MatSnackBarModule } from '@angular/material/snack-bar'; -import { MatSortModule } from '@angular/material/sort'; -import { MatTableModule } from '@angular/material/table'; -import { MatTabsModule } from '@angular/material/tabs'; -import { MatToolbarModule } from '@angular/material/toolbar'; -import { MatTooltipModule } from '@angular/material/tooltip'; -import { MatTreeModule } from '@angular/material/tree'; -import { MatFormFieldModule } from '@angular/material/form-field'; - -@NgModule({ - exports: [ - A11yModule, - CdkStepperModule, - CdkTableModule, - CdkTreeModule, - DragDropModule, - MatAutocompleteModule, - MatBadgeModule, - MatBottomSheetModule, - MatButtonModule, - MatButtonToggleModule, - MatCardModule, - MatCheckboxModule, - MatChipsModule, - MatStepperModule, - MatDatepickerModule, - MatDialogModule, - MatDividerModule, - MatExpansionModule, - MatGridListModule, - MatIconModule, - MatInputModule, - MatListModule, - MatMenuModule, - MatNativeDateModule, - MatPaginatorModule, - MatProgressBarModule, - MatProgressSpinnerModule, - MatRadioModule, - MatRippleModule, - MatSelectModule, - MatSidenavModule, - MatSliderModule, - MatSlideToggleModule, - MatSnackBarModule, - MatSortModule, - MatTableModule, - MatTabsModule, - MatToolbarModule, - MatTooltipModule, - MatTreeModule, - PortalModule, - ScrollingModule, - MatFormFieldModule, - ], -}) -export class MaterialModule {} diff --git a/src/app/posts/posts.component.css b/src/app/posts/posts.component.css index e69de29..5b44073 100644 --- a/src/app/posts/posts.component.css +++ b/src/app/posts/posts.component.css @@ -0,0 +1,6 @@ +nz-rate>.ant-rate-star-first { + top: 21%; +} +.ng-star-inserted { + top: 21% +} diff --git a/src/app/posts/posts.component.html b/src/app/posts/posts.component.html index 12843de..81cfe2a 100644 --- a/src/app/posts/posts.component.html +++ b/src/app/posts/posts.component.html @@ -29,7 +29,7 @@

    {{posts.body}}

    - Reactions: +
    diff --git a/src/app/product-detail/decription-product/decription-product.component.css b/src/app/product-detail/decription-product/decription-product.component.css index e69de29..bc8c8cf 100644 --- a/src/app/product-detail/decription-product/decription-product.component.css +++ b/src/app/product-detail/decription-product/decription-product.component.css @@ -0,0 +1,3 @@ +a{ + color:#3dc6ab ; +} diff --git a/src/app/product-detail/decription-product/decription-product.component.html b/src/app/product-detail/decription-product/decription-product.component.html index f828c6d..6e582ba 100644 --- a/src/app/product-detail/decription-product/decription-product.component.html +++ b/src/app/product-detail/decription-product/decription-product.component.html @@ -1,8 +1,8 @@
    diff --git a/src/app/product-detail/related-product/related-product.component.css b/src/app/product-detail/related-product/related-product.component.css index f77ea88..588d593 100644 --- a/src/app/product-detail/related-product/related-product.component.css +++ b/src/app/product-detail/related-product/related-product.component.css @@ -76,3 +76,9 @@ img { .single-product:hover .product-hover:after { left: 0 } +.product-sidebar-price>ins { + color: #1abc9c; + font-weight: 700; + margin-right: 10px; + text-decoration: none; +} diff --git a/src/app/product-detail/related-product/related-product.component.html b/src/app/product-detail/related-product/related-product.component.html index 691808a..e2c1db6 100644 --- a/src/app/product-detail/related-product/related-product.component.html +++ b/src/app/product-detail/related-product/related-product.component.html @@ -8,10 +8,10 @@ details
    - +

    {{product.title}}

    -
    +
    diff --git a/src/app/product-detail/similiar-product/similiar-product.component.html b/src/app/product-detail/similiar-product/similiar-product.component.html index 0c56a97..1888e9f 100644 --- a/src/app/product-detail/similiar-product/similiar-product.component.html +++ b/src/app/product-detail/similiar-product/similiar-product.component.html @@ -1,12 +1,10 @@
    -
    - - -

    {{productco.title}}

    -
    +
    + +

    {{productco.title}}

    - {{productco.price | currency: 'USD'}} + {{productco.price | currency: 'USD'}}
    diff --git a/src/app/profile-user/order-detail/order-detail.component.html b/src/app/profile-user/order-detail/order-detail.component.html index 4056adf..2d137df 100644 --- a/src/app/profile-user/order-detail/order-detail.component.html +++ b/src/app/profile-user/order-detail/order-detail.component.html @@ -77,7 +77,7 @@

    Order Information

    Sub-Total - {{orders.totalAmount | currency: 'USD' }} + {{orders.totalAmount | currency: 'USD' }} @@ -118,8 +118,7 @@

    Order Status

    -
    Back -
    +
    diff --git a/src/app/profile-user/profile-user.component.ts b/src/app/profile-user/profile-user.component.ts index 6c0df8d..b8546f0 100644 --- a/src/app/profile-user/profile-user.component.ts +++ b/src/app/profile-user/profile-user.component.ts @@ -1,10 +1,10 @@ import { Component } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; -import { ToastrService } from 'ngx-toastr'; import { ORDER_KEY, USER_KEY } from 'src/helpers/localStorage'; import { IUser } from '../model/auth.model'; import { AuthService } from '../service/auth.service'; import { Order } from '../model/product.model'; +import { ToastrService } from 'ngx-toastr'; @Component({ selector: 'app-profile-user', diff --git a/src/app/profile-user/profile-user.module.ts b/src/app/profile-user/profile-user.module.ts index 906b2fb..99a5b18 100644 --- a/src/app/profile-user/profile-user.module.ts +++ b/src/app/profile-user/profile-user.module.ts @@ -3,12 +3,12 @@ import { CommonModule } from '@angular/common'; import { HttpClientModule } from '@angular/common/http'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { BrowserModule } from '@angular/platform-browser'; -import { MaterialModule } from '../material-module'; import { RouterModule } from '@angular/router'; import { ProfileUserComponent } from './profile-user.component'; import { provideAnimations } from '@angular/platform-browser/animations'; import { OrderDetailComponent } from './order-detail/order-detail.component'; +import { LibModule } from '../lib/lib.module'; @NgModule({ declarations: [ProfileUserComponent, OrderDetailComponent], @@ -19,7 +19,7 @@ import { OrderDetailComponent } from './order-detail/order-detail.component'; FormsModule, ReactiveFormsModule, HttpClientModule, - MaterialModule, + LibModule, ], providers: [provideAnimations()], bootstrap: [], diff --git a/src/app/shop/product/product.component.html b/src/app/shop/product/product.component.html index f970dc3..a7528ec 100644 --- a/src/app/shop/product/product.component.html +++ b/src/app/shop/product/product.component.html @@ -1,7 +1,7 @@
    - +
    diff --git a/src/app/shop/product/product.component.ts b/src/app/shop/product/product.component.ts index 29ff0b5..1bdffd8 100644 --- a/src/app/shop/product/product.component.ts +++ b/src/app/shop/product/product.component.ts @@ -21,9 +21,9 @@ export class ProductComponent implements OnInit { constructor( private formBuilder: FormBuilder, private authService: AuthService, - private toastrService: ToastrService, private route: ActivatedRoute, - private router: Router + private router: Router, + private toastrService: ToastrService ) { this.user = this.authService.userValue; } @@ -63,6 +63,7 @@ export class ProductComponent implements OnInit { 'The product ' + this.productco.title + ' has been added to cart!', 'Success!' ); + console.log('this.toastrService'); } else { this.router.navigate(['/signin'], { relativeTo: this.route }); } diff --git a/src/app/shop/shop.module.ts b/src/app/shop/shop.module.ts index b5e9117..ce98424 100644 --- a/src/app/shop/shop.module.ts +++ b/src/app/shop/shop.module.ts @@ -1,4 +1,4 @@ -import { NgModule } from '@angular/core'; +import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core'; import { CommonModule } from '@angular/common'; import { HttpClientModule } from '@angular/common/http'; import { NgxPaginationModule } from 'ngx-pagination'; @@ -22,6 +22,7 @@ import { ShopComponent } from './shop.component'; ], providers: [], bootstrap: [], + schemas: [NO_ERRORS_SCHEMA], exports: [FormsModule], }) export class ShopModule {} diff --git a/src/styles.css b/src/styles.css index 107c900..2656700 100644 --- a/src/styles.css +++ b/src/styles.css @@ -58,27 +58,6 @@ body { color: #888; } -.user-menu ul { - list-style: outside none none; - margin: 0; - padding: 0; -} - -.user-menu li { - display: inline-block; -} - -.user-menu li a { - display: block; - font-size: 13px; - margin-right: 5px; - padding: 10px; -} - -.user-menu li a i.fa { - margin-right: 5px; -} - .header-right ul.list-inline { margin: 0; text-align: right; @@ -559,31 +538,6 @@ body { color: #999 } - -.footer-social a { - background: none repeat scroll 0 0 #1abc9c; - color: #fff; - display: inline-block; - font-size: 20px; - height: 40px; - margin-bottom: 10px; - margin-right: 10px; - padding-top: 5px; - text-align: center; - width: 40px; - border: 1px solid #1abc9c; -} - -.footer-social a:hover { - background-color: #222; - border-color: #666 -} - -.footer-social { - margin-top: 20px -} - - .newsletter-form input[type="email"] { background: none repeat scroll 0 0 #fff; border: medium none; @@ -748,6 +702,7 @@ button[type=submit]:hover { .thubmnail-recent { margin-bottom: 30px; overflow: hidden; + cursor: pointer } .recent-thumb {