style.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. 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. 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: 3rem;
  72. }
  73. .card {
  74. box-shadow: none;
  75. transition: all 0.3s ease-out;
  76. overflow: hidden;
  77. }
  78. .card-img-sm {
  79. width: 32px;
  80. height: 32px;
  81. }
  82. .card-img-xs {
  83. width: 24px;
  84. height: 24px;
  85. }
  86. .card:hover,
  87. .card:focus {
  88. box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
  89. border: 1px solid #fff;
  90. transition: all 0.3s ease-out;
  91. }
  92. .card .card-head {
  93. height: 172px;
  94. object-fit: cover;
  95. overflow: hidden;
  96. }
  97. .card-img-top {
  98. transition: all 0.3s ease-out!important;
  99. }
  100. .card:hover .card-head .card-img-top,
  101. .card:focus .card-head .card-img-top {
  102. transition: all 0.3s ease-out;
  103. transform: scale(1.2);
  104. }
  105. .card-title {
  106. font-weight: 600;
  107. }
  108. .card-body {
  109. text-align: justify;
  110. }
  111. .sub-title {
  112. color: #c0ccda;
  113. font-size: 10pt;
  114. }
  115. /* --- FOOTER START --- */
  116. .footer {
  117. color: #8392a5 !important;
  118. background-color: #1c2d41;
  119. position: relative;
  120. z-index: 9999;
  121. }
  122. .footer h5 {
  123. color: #c0ccda;
  124. }
  125. .footer a {
  126. color: #8392a5;
  127. transition: all 0.3s ease-out;
  128. transition: all 0.3s ease-out;
  129. }
  130. .footer a:hover {
  131. margin-left: 5px;
  132. transition: all 0.3s ease-out;
  133. transition: all 0.3s ease-out;
  134. }
  135. .footer ul {
  136. list-style: none;
  137. padding-left: 0;
  138. }
  139. .footer li {
  140. margin-top: 5px;
  141. }
  142. .footer hr {
  143. background-color: #8392a5;
  144. }
  145. .footer p:first-child {
  146. color: #c0ccda;
  147. }
  148. .footer input {
  149. background-color: #c0ccda;
  150. }
  151. .footer input:focus {
  152. background-color: #e5e9f2;
  153. }
  154. .footer #theme {
  155. color: #c0ccda;
  156. }
  157. /* --- FOOTER END ---- */
  158. /* ============= Device specific fixes ======= */
  159. /* Extra small devices (portrait phones, less than 576px) */
  160. /* No media query for `xs` since this is the default in Bootstrap */
  161. /* Extra large devices (large desktops, 1200px and up) */
  162. @media (max-width: 1400px) {
  163. }
  164. @media (max-width: 1200px) {
  165. }
  166. /* Large devices (desktops, 992px and up) */
  167. @media (max-width: 992px) {
  168. }
  169. /* Medium devices (tablets, 768px and up) */
  170. @media only screen and (max-width: 768px) {
  171. }
  172. /* Small devices (landscape phones, 576px and up) */
  173. @media only screen and (max-width: 576px) {
  174. .container-fluid.about, .container-fluid.skills, .container-fluid.projects, .container-fluid.recent-posts, .container-fluid.achievements{
  175. padding-left: 5px;
  176. padding-right: 5px;
  177. }
  178. }