main.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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. -o-object-fit: cover;
  115. object-fit: cover;
  116. overflow: hidden;
  117. }
  118. .card-img-top {
  119. transition: all 0.3s ease-out !important;
  120. }
  121. .card:hover .card-head .card-img-top,
  122. .card:focus .card-head .card-img-top {
  123. transition: all 0.3s ease-out;
  124. 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. }
  147. .footer a:hover {
  148. margin-left: 5px;
  149. transition: all 0.3s ease-out;
  150. }
  151. .footer ul {
  152. list-style: none;
  153. padding-left: 0;
  154. }
  155. .footer li {
  156. margin-top: 5px;
  157. }
  158. .footer hr {
  159. background-color: #8392a5;
  160. }
  161. .footer p:first-child {
  162. color: #c0ccda;
  163. }
  164. .footer input {
  165. background-color: #c0ccda;
  166. }
  167. .footer input:focus {
  168. background-color: #e5e9f2;
  169. }
  170. .footer #theme {
  171. color: #c0ccda;
  172. }
  173. .footer #theme img {
  174. width: 32px;
  175. }
  176. .footer #hugo:hover {
  177. margin-right: 5px;
  178. transition: all 0.3s ease-out;
  179. }
  180. /* --- FOOTER END ---- */
  181. /* ============= Device specific fixes ======= */
  182. /* Large screens such as TV */
  183. @media only screen and (min-width: 1824px) {
  184. }
  185. /* Extra large devices (large desktops, 1200px and up) */
  186. @media (max-width: 1400px) {
  187. }
  188. @media (max-width: 1200px) {
  189. }
  190. /* IPad Pro */
  191. @media (max-width: 1024px) {
  192. .content-section .languageSelector {
  193. position: fixed;
  194. right: 0.5rem;
  195. bottom: 1rem;
  196. z-index: 10000000;
  197. background-color: #f9fafc;
  198. box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
  199. }
  200. }
  201. /* Large devices (desktops, 992px and up) */
  202. @media (max-width: 992px) {
  203. }
  204. /* Medium devices (tablets, 768px and up) */
  205. @media only screen and (max-width: 768px) {
  206. }
  207. /* Small devices (landscape phones, 576px and up) */
  208. @media only screen and (max-width: 576px) {
  209. .skills-section .container,
  210. .projects-section .container {
  211. padding-left: 0.3rem;
  212. padding-right: 0.3rem;
  213. }
  214. .section-holder {
  215. padding-left: 5px;
  216. padding-right: 5px;
  217. }
  218. .skills-section,
  219. .projects-section,
  220. .recent-posts-section,
  221. .achievements-section {
  222. padding-left: 0;
  223. padding-right: 0;
  224. }
  225. }
  226. /* iPhoneX, iPhone 6,7,8 */
  227. @media only screen and (max-width: 375px) {
  228. }
  229. /* Galaxy S5, Moto G4 */
  230. @media only screen and (max-width: 360px) {
  231. }
  232. /* iPhone 5 or before */
  233. @media only screen and (max-width: 320px) {
  234. }