_download-app.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Styling for the download section
  2. /*====================================================
  3. DOWNLOAD
  4. ======================================================*/
  5. .download-app {
  6. background: $primary-col;
  7. h1, p {
  8. color:$white;
  9. }
  10. .apple {
  11. text-align: right;
  12. img {
  13. height: 63px;
  14. }
  15. }
  16. .android {
  17. text-align: left;
  18. img {
  19. height: 63px;
  20. }
  21. }
  22. @media (max-width:767px) {
  23. .apple {
  24. text-align: center;
  25. img {
  26. height: 63px;
  27. margin-bottom: 30px;
  28. }
  29. }
  30. .android {
  31. text-align: center;
  32. img {
  33. height: 63px;
  34. }
  35. }
  36. }
  37. .device-container {
  38. width: 300px;
  39. max-height: 350px;
  40. overflow: hidden;
  41. margin:0 auto;
  42. }
  43. }