sercices.component.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .dashboard {
  2. width: 100%;
  3. margin-top: -5px;
  4. padding: 40px 0;
  5. }
  6. .dashboard h1{
  7. text-align: right;
  8. font-size: 18px;
  9. margin: 10px 0;
  10. padding: 10px 0;
  11. }
  12. .dashboardItem-w {
  13. width: 90%;
  14. height: 180px;
  15. background-color: #f1f1f1;
  16. border-radius: 10px;
  17. color: #bda380;
  18. border: 1px solid #bda380;
  19. border-top: 0;
  20. font-family: 'Cairo', sans-serif;
  21. transition: all 05s;
  22. }
  23. .dashboardItem-w:hover img {
  24. -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  25. filter: grayscale(100%);
  26. }
  27. .dashboardItem-w:hover h1 {
  28. color: #cdcdcd;
  29. }
  30. .dashboardItem-w h1 {
  31. font-size: 15px;
  32. margin: 5px 0;
  33. padding: 20px;
  34. background-color: #bda380;
  35. color: #fff;
  36. border-radius: 5px 5px 0 0;
  37. font-weight: bold;
  38. }
  39. .mainFooter-w {
  40. width: 100%;
  41. height: 288px;
  42. background: url('../../assets/image/footer.png') no-repeat center center;
  43. background-size: cover;
  44. margin-top: -13px;
  45. position: relative;
  46. direction: rtl;
  47. font-family: 'Cairo', sans-serif;
  48. }
  49. .serviceIcon-w {
  50. width: 50px;
  51. margin: 30px auto;
  52. height: 50px;
  53. }
  54. .serviceIcon-w img{
  55. width: 100%;
  56. height: 100%;
  57. transition: all 0.5s;
  58. }
  59. @media(max-width: 767px){
  60. .dashboardItem-w {
  61. width: 100%;
  62. }
  63. .dashboardItem-w h1 {
  64. font-size: 9px;
  65. }
  66. }
  67. @media(min-width: 768px) and (max-width: 991px) {
  68. .dashboardItem-w {
  69. width: 100%;
  70. }
  71. .dashboardItem-w h1 {
  72. font-size: 16px;
  73. }
  74. }
  75. /* @media(min-width: 992px) {
  76. .dashboardItem-w h1 {
  77. font-size: 20px;
  78. }
  79. } */