style.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /* ========= Colors ============
  2. Heading: #1C2D41
  3. Paragraph: #3C4858
  4. Iconography: #8392A5
  5. Secondary: #C0CCDA
  6. Dirty Snow: #E5E9F2
  7. Snow: #F9FAFC
  8. Magenta: #7551E9
  9. Orange: #FF7D51
  10. Pink: #ED63D2
  11. Green: #2DCA73
  12. Yellow: #FFC212
  13. */
  14. body {
  15. background-color: #f9fafc;
  16. font-family: "Muli";
  17. }
  18. h1,
  19. h2,
  20. h3,
  21. h4,
  22. h5 {
  23. color: #1c2d41;
  24. }
  25. p {
  26. color: #3c4858;
  27. }
  28. a {
  29. color: #248aaa;
  30. }
  31. a:hover {
  32. color: #207089;
  33. }
  34. .btn-dark {
  35. background-color: #3c4858;
  36. border-color: #3c4858;
  37. color: #e5e9f2;
  38. transition: all 0.3s ease-out;
  39. -webkit-transition: all 0.3s ease-out;
  40. }
  41. .btn-dark:hover,
  42. .btn-dark:focus {
  43. background-color: #248aaa;
  44. border-color: #248aaa;
  45. transition: all 0.3s ease-out;
  46. -webkit-transition: all 0.3s ease-out;
  47. }
  48. .btn-outline-info {
  49. color: #2098d1 !important;
  50. border-color: #2098d1 !important;
  51. }
  52. .btn-outline-info:hover {
  53. background-color: #2098d1 !important;
  54. color: #e5e9f2 !important;
  55. }
  56. .btn-info {
  57. background-color: #248aaa !important;
  58. color: #e5e9f2 !important;
  59. }
  60. .btn-info:hover {
  61. background-color: #2098d1 !important;
  62. color: #e5e9f2 !important;
  63. }
  64. .bg-white {
  65. background-color: #f9fafc !important;
  66. }
  67. .bg-dimmed {
  68. background-color: #e5e9f2;
  69. }
  70. .anchor {
  71. padding-top: 3.5rem;
  72. }
  73. .card {
  74. box-shadow: none;
  75. transition: all 0.3s ease-out;
  76. -webkit-transition: all 0.3s ease-out;
  77. overflow: hidden;
  78. }
  79. .card-img-sm {
  80. width: 32px;
  81. height: 32px;
  82. }
  83. .card-img-xs {
  84. width: 24px;
  85. height: 24px;
  86. }
  87. .card:hover,
  88. .card:focus {
  89. box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
  90. border: 1px solid #fff;
  91. transition: all 0.3s ease-out;
  92. -webkit-transition: all 0.3s ease-out;
  93. }
  94. .card .card-head {
  95. height: 172px;
  96. object-fit: cover;
  97. overflow: hidden;
  98. }
  99. .card-img-top {
  100. transition: all 0.3s ease-out !important;
  101. -webkit-transition: all 0.3s ease-out !important;
  102. }
  103. .card:hover .card-head .card-img-top,
  104. .card:focus .card-head .card-img-top {
  105. transition: all 0.3s ease-out;
  106. -webkit-transition: all 0.3s ease-out;
  107. transform: scale(1.2);
  108. -webkit-transform: scale(1.2);
  109. }
  110. .card-title {
  111. font-weight: 600;
  112. }
  113. .card-body {
  114. text-align: justify;
  115. }
  116. .sub-title {
  117. color: #c0ccda;
  118. font-size: 10pt;
  119. }
  120. /* --- FOOTER START --- */
  121. .footer {
  122. color: #8392a5 !important;
  123. background-color: #1c2d41;
  124. position: relative;
  125. z-index: 9999;
  126. }
  127. .footer h5 {
  128. color: #c0ccda;
  129. }
  130. .footer a {
  131. color: #8392a5;
  132. transition: all 0.3s ease-out;
  133. -webkit-transition: all 0.3s ease-out;
  134. }
  135. .footer a:hover {
  136. margin-left: 5px;
  137. transition: all 0.3s ease-out;
  138. -webkit-transition: all 0.3s ease-out;
  139. }
  140. .footer ul {
  141. list-style: none;
  142. padding-left: 0;
  143. }
  144. .footer li {
  145. margin-top: 5px;
  146. }
  147. .footer hr {
  148. background-color: #8392a5;
  149. }
  150. .footer p:first-child {
  151. color: #c0ccda;
  152. }
  153. .footer input {
  154. background-color: #c0ccda;
  155. }
  156. .footer input:focus {
  157. background-color: #e5e9f2;
  158. }
  159. .footer #theme {
  160. color: #c0ccda;
  161. }
  162. .footer #theme img {
  163. width: 32px;
  164. }
  165. /* --- FOOTER END ---- */
  166. /* ============= Device specific fixes ======= */
  167. /* Extra small devices (portrait phones, less than 576px) */
  168. /* No media query for `xs` since this is the default in Bootstrap */
  169. /* Extra large devices (large desktops, 1200px and up) */
  170. @media (max-width: 1400px) {
  171. }
  172. @media (max-width: 1200px) {
  173. }
  174. /* Large devices (desktops, 992px and up) */
  175. @media (max-width: 992px) {
  176. }
  177. /* Medium devices (tablets, 768px and up) */
  178. @media only screen and (max-width: 768px) {
  179. }
  180. /* Small devices (landscape phones, 576px and up) */
  181. @media only screen and (max-width: 576px) {
  182. .container-fluid.about,
  183. .container-fluid.skills,
  184. .container-fluid.projects,
  185. .container-fluid.recent-posts,
  186. .container-fluid.achievements {
  187. padding-left: 5px;
  188. padding-right: 5px;
  189. }
  190. }