Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_media.scss 866B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*************************************
  2. media CSS
  3. *************************************/
  4. .static-media {
  5. &.me-50 {
  6. @include max-screen(1200, 1399) {
  7. margin-right: 25px;
  8. }
  9. @include max-screen(992, 1199) {
  10. margin-right: 30px;
  11. }
  12. }
  13. }
  14. .phone {
  15. line-height: 1;
  16. font-size: 14px;
  17. @include max-screen(767) {
  18. font-size: 13px;
  19. }
  20. a {
  21. &:hover {
  22. color: $theme-color !important;
  23. }
  24. }
  25. span {
  26. line-height: 1;
  27. font-size: 14px;
  28. }
  29. strong {
  30. line-height: 1;
  31. }
  32. .email {
  33. line-height: 2rem;
  34. }
  35. }
  36. // theme1
  37. .theme1 {
  38. .phone {
  39. a {
  40. &:hover {
  41. color: $theme-color !important;
  42. }
  43. }
  44. &.modify{a {
  45. &:hover {
  46. color: $color-white !important;
  47. }
  48. }}
  49. }
  50. }
  51. /*************************************
  52. media CSS ENd
  53. *************************************/