style.css 3.8 KB

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