_about.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. // Styling for the About section
  2. /*====================================================
  3. ABOUT
  4. ======================================================*/
  5. .app-about {
  6. .row.first {
  7. margin-bottom: 100px;
  8. }
  9. img.first {
  10. margin-top: 50px;
  11. box-shadow:2px 3px 14px 0px rgba(70, 68, 68, 0.45);
  12. margin-left: 150px;
  13. opacity: 0.6;
  14. width: 80%;
  15. border-radius:10px;
  16. }
  17. img.second {
  18. position: absolute;
  19. top: 0;
  20. width: 80%;
  21. box-shadow:4px 4px 10px 2px rgba(70, 68, 68, 0.58);
  22. border-radius:10px;
  23. }
  24. .app-about-cont {
  25. margin-left: 150px;
  26. i {
  27. font-size: 20px;
  28. margin-bottom: 15px;
  29. border:1px solid $gray-300;
  30. border-radius:50%;
  31. height: 38px;
  32. width: 38px;
  33. line-height: 38px;
  34. text-align:center;
  35. box-shadow:0px 0px 14px -1px rgba(101, 99, 99, 0.35);
  36. color:$primary-col;
  37. }
  38. h3 {
  39. color:$gray-600;
  40. }
  41. p {
  42. color: $gray-500;
  43. }
  44. }
  45. img.third {
  46. margin-top: 50px;
  47. box-shadow:2px 3px 14px 0px rgba(70, 68, 68, 0.45);
  48. margin-left: -100px;
  49. opacity: 0.6;
  50. width: 80%;
  51. border-radius:10px;
  52. }
  53. img.fourth {
  54. position: absolute;
  55. top: 0;
  56. margin-left: -150px;
  57. width: 80%;
  58. box-shadow:4px 4px 10px 2px rgba(70, 68, 68, 0.58);
  59. border-radius:10px;
  60. }
  61. .app-about-cont.right {
  62. margin-left: 0;
  63. margin-right: 150px;
  64. text-align: right;
  65. }
  66. @media (max-width:767px) {
  67. .row.first {
  68. margin-bottom: 0px;
  69. }
  70. img.first {
  71. margin-top: 30px;
  72. margin-left: 35%;
  73. box-shadow:2px 3px 14px 0px rgba(70, 68, 68, 0.45);
  74. opacity: 0.6;
  75. width: 50%;
  76. border-radius:10px;
  77. }
  78. img.second {
  79. position: absolute;
  80. top: 0;
  81. left: 15%;
  82. width: 50%;
  83. box-shadow:4px 4px 10px 2px rgba(70, 68, 68, 0.58);
  84. border-radius:10px;
  85. }
  86. .app-about-cont {
  87. margin:80px auto;
  88. }
  89. .app-about-cont.right {
  90. margin-left: 0;
  91. margin:50px auto;
  92. text-align: right;
  93. }
  94. img.third {
  95. margin-top: 50px;
  96. box-shadow:2px 3px 14px 0px rgba(70, 68, 68, 0.45);
  97. margin-left: 20%;
  98. opacity: 0.6;
  99. width: 50%;
  100. border-radius:10px;
  101. }
  102. img.fourth {
  103. position: absolute;
  104. top: 0;
  105. margin-left: -25%;
  106. width: 50%;
  107. box-shadow:4px 4px 10px 2px rgba(70, 68, 68, 0.58);
  108. border-radius:10px;
  109. }
  110. }
  111. }