style.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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. strong{
  26. color: #1c2d41!important;
  27. }
  28. p {
  29. color: #3c4858;
  30. }
  31. a {
  32. color: #248aaa;
  33. }
  34. a:hover {
  35. color: #207089;
  36. }
  37. .btn-dark {
  38. background-color: #3c4858;
  39. border-color: #3c4858;
  40. color: #e5e9f2;
  41. transition: all 0.3s ease-out;
  42. -webkit-transition: all 0.3s ease-out;
  43. }
  44. .btn-dark:hover,
  45. .btn-dark:focus {
  46. background-color: #248aaa;
  47. border-color: #248aaa;
  48. transition: all 0.3s ease-out;
  49. -webkit-transition: all 0.3s ease-out;
  50. }
  51. .btn-outline-info {
  52. color: #2098d1 !important;
  53. border-color: #2098d1 !important;
  54. }
  55. .btn-outline-info:hover {
  56. background-color: #2098d1 !important;
  57. color: #e5e9f2 !important;
  58. }
  59. .btn-info {
  60. background-color: #248aaa !important;
  61. color: #e5e9f2 !important;
  62. }
  63. .btn-info:hover {
  64. background-color: #2098d1 !important;
  65. color: #e5e9f2 !important;
  66. }
  67. .bg-white {
  68. background-color: #f9fafc !important;
  69. }
  70. .bg-dimmed {
  71. background-color: #e5e9f2;
  72. }
  73. .anchor {
  74. padding-top: 3.5rem;
  75. }
  76. img.center{
  77. display: block;
  78. margin-left: auto;
  79. margin-right: auto;
  80. }
  81. img.left{
  82. display: block;
  83. margin-right: auto;
  84. }
  85. img.right{
  86. display: block;
  87. margin-left: auto;
  88. }
  89. .card {
  90. box-shadow: none;
  91. transition: all 0.3s ease-out;
  92. -webkit-transition: all 0.3s ease-out;
  93. overflow: hidden;
  94. }
  95. .card-img-sm {
  96. width: 32px;
  97. height: 32px;
  98. }
  99. .card-img-xs {
  100. width: 24px;
  101. height: 24px;
  102. }
  103. .card:hover,
  104. .card:focus {
  105. box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
  106. border: 1px solid #fff;
  107. transition: all 0.3s ease-out;
  108. -webkit-transition: all 0.3s ease-out;
  109. }
  110. .card .card-head {
  111. height: 172px;
  112. object-fit: cover;
  113. overflow: hidden;
  114. }
  115. .card-img-top {
  116. transition: all 0.3s ease-out !important;
  117. -webkit-transition: all 0.3s ease-out !important;
  118. }
  119. .card:hover .card-head .card-img-top,
  120. .card:focus .card-head .card-img-top {
  121. transition: all 0.3s ease-out;
  122. -webkit-transition: all 0.3s ease-out;
  123. transform: scale(1.2);
  124. -webkit-transform: scale(1.2);
  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. .section-holder {
  196. padding-left: 5px;
  197. padding-right: 5px;
  198. }
  199. #skills-template,
  200. #projects-template,
  201. #recent-posts-template,
  202. #achievements-template{
  203. padding-left: 0;
  204. padding-right: 0;
  205. }
  206. }