main.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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. .nav-button {
  38. background-color: transparent;
  39. border: 1px solid transparent;
  40. border-radius: 0.25rem;
  41. color: #8392a5;
  42. }
  43. .btn-dark {
  44. background-color: #3c4858;
  45. border-color: #3c4858;
  46. color: #e5e9f2;
  47. transition: all 0.3s ease-out;
  48. -webkit-transition: all 0.3s ease-out;
  49. }
  50. .btn-dark:hover,
  51. .btn-dark:focus {
  52. background-color: #248aaa;
  53. border-color: #248aaa;
  54. transition: all 0.3s ease-out;
  55. -webkit-transition: all 0.3s ease-out;
  56. }
  57. .btn-outline-info {
  58. color: #2098d1 !important;
  59. border-color: #2098d1 !important;
  60. }
  61. .btn-outline-info:hover {
  62. background-color: #2098d1 !important;
  63. color: #e5e9f2 !important;
  64. }
  65. .btn-info {
  66. background-color: #248aaa !important;
  67. color: #e5e9f2 !important;
  68. }
  69. .btn-info:hover {
  70. background-color: #2098d1 !important;
  71. color: #e5e9f2 !important;
  72. }
  73. .bg-white {
  74. background-color: #f9fafc !important;
  75. }
  76. .bg-dimmed {
  77. background-color: #e5e9f2;
  78. }
  79. .anchor {
  80. padding-top: 3.5rem;
  81. }
  82. img.center {
  83. display: block;
  84. margin-left: auto;
  85. margin-right: auto;
  86. }
  87. img.left {
  88. display: block;
  89. margin-right: auto;
  90. }
  91. img.right {
  92. display: block;
  93. margin-left: auto;
  94. }
  95. .card {
  96. box-shadow: none;
  97. transition: all 0.3s ease-out;
  98. -webkit-transition: all 0.3s ease-out;
  99. overflow: hidden;
  100. }
  101. .card-img-sm {
  102. width: 32px;
  103. height: 32px;
  104. }
  105. .card-img-xs {
  106. width: 24px;
  107. height: 24px;
  108. }
  109. .card:hover,
  110. .card:focus {
  111. box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
  112. border: 1px solid #fff;
  113. transition: all 0.3s ease-out;
  114. -webkit-transition: all 0.3s ease-out;
  115. }
  116. .card .card-head {
  117. height: 172px;
  118. object-fit: cover;
  119. overflow: hidden;
  120. }
  121. .card-img-top {
  122. transition: all 0.3s ease-out !important;
  123. -webkit-transition: all 0.3s ease-out !important;
  124. }
  125. .card:hover .card-head .card-img-top,
  126. .card:focus .card-head .card-img-top {
  127. transition: all 0.3s ease-out;
  128. -webkit-transition: all 0.3s ease-out;
  129. transform: scale(1.2);
  130. -webkit-transform: scale(1.2);
  131. }
  132. .card-body {
  133. text-align: justify;
  134. }
  135. .sub-title {
  136. color: #c0ccda;
  137. font-size: 10pt;
  138. }
  139. /* --- FOOTER START --- */
  140. .footer {
  141. color: #8392a5 !important;
  142. background-color: #1c2d41;
  143. position: relative;
  144. z-index: 9999;
  145. }
  146. .footer h5 {
  147. color: #c0ccda;
  148. }
  149. .footer a {
  150. color: #8392a5;
  151. transition: all 0.3s ease-out;
  152. -webkit-transition: all 0.3s ease-out;
  153. }
  154. .footer a:hover {
  155. margin-left: 5px;
  156. transition: all 0.3s ease-out;
  157. -webkit-transition: all 0.3s ease-out;
  158. }
  159. .footer ul {
  160. list-style: none;
  161. padding-left: 0;
  162. }
  163. .footer li {
  164. margin-top: 5px;
  165. }
  166. .footer hr {
  167. background-color: #8392a5;
  168. }
  169. .footer p:first-child {
  170. color: #c0ccda;
  171. }
  172. .footer input {
  173. background-color: #c0ccda;
  174. }
  175. .footer input:focus {
  176. background-color: #e5e9f2;
  177. }
  178. .footer #theme {
  179. color: #c0ccda;
  180. }
  181. .footer #theme img {
  182. width: 32px;
  183. }
  184. .footer #hugo:hover {
  185. margin-right: 5px;
  186. transition: all 0.3s ease-out;
  187. -webkit-transition: all 0.3s ease-out;
  188. }
  189. /* --- FOOTER END ---- */
  190. /* ============= Device specific fixes ======= */
  191. /* Large screens such as TV */
  192. @media only screen and (min-width: 1824px) {
  193. }
  194. /* Extra large devices (large desktops, 1200px and up) */
  195. @media (max-width: 1400px) {
  196. }
  197. @media (max-width: 1200px) {
  198. }
  199. /* IPad Pro */
  200. @media (max-width: 1024px) {
  201. }
  202. /* Large devices (desktops, 992px and up) */
  203. @media (max-width: 992px) {
  204. }
  205. /* Medium devices (tablets, 768px and up) */
  206. @media only screen and (max-width: 768px) {
  207. }
  208. /* Small devices (landscape phones, 576px and up) */
  209. @media only screen and (max-width: 576px) {
  210. .skills-section .container,
  211. .projects-section .container {
  212. padding-left: 0.3rem;
  213. padding-right: 0.3rem;
  214. }
  215. .section-holder {
  216. padding-left: 5px;
  217. padding-right: 5px;
  218. }
  219. .skills-section,
  220. .projects-section,
  221. .recent-posts-section,
  222. .achievements-section {
  223. padding-left: 0;
  224. padding-right: 0;
  225. }
  226. }
  227. /* iPhoneX, iPhone 6,7,8 */
  228. @media only screen and (max-width: 375px) {
  229. }
  230. /* Galaxy S5, Moto G4 */
  231. @media only screen and (max-width: 360px) {
  232. }
  233. /* iPhone 5 or before */
  234. @media only screen and (max-width: 320px) {
  235. }