main.css 4.0 KB

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