main.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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. .btn-link{
  72. color: #248aaa;
  73. }
  74. .btn-link:hover{
  75. color: #207089;
  76. }
  77. .bg-white {
  78. background-color: #f9fafc !important;
  79. }
  80. .bg-dimmed {
  81. background-color: #e5e9f2;
  82. }
  83. .anchor {
  84. padding-top: 3.5rem;
  85. }
  86. img.center {
  87. display: block;
  88. margin-left: auto;
  89. margin-right: auto;
  90. }
  91. img.left {
  92. display: block;
  93. margin-right: auto;
  94. }
  95. img.right {
  96. display: block;
  97. margin-left: auto;
  98. }
  99. .card {
  100. box-shadow: none;
  101. transition: all 0.3s ease-out;
  102. overflow: hidden;
  103. }
  104. .card-img-sm {
  105. width: 32px;
  106. height: 32px;
  107. }
  108. .card-img-xs {
  109. width: 24px;
  110. height: 24px;
  111. }
  112. .card:hover,
  113. .card:focus {
  114. box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
  115. border: 1px solid #fff;
  116. transition: all 0.3s ease-out;
  117. }
  118. .card .card-head {
  119. height: 172px;
  120. -o-object-fit: cover;
  121. object-fit: cover;
  122. overflow: hidden;
  123. }
  124. .card-img-top {
  125. transition: all 0.3s ease-out !important;
  126. }
  127. .card:hover .card-head .card-img-top,
  128. .card:focus .card-head .card-img-top {
  129. transition: all 0.3s ease-out;
  130. 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. }
  153. .footer a:hover {
  154. margin-left: 5px;
  155. transition: all 0.3s ease-out;
  156. }
  157. .footer ul {
  158. list-style: none;
  159. padding-left: 0;
  160. }
  161. .footer li {
  162. margin-top: 5px;
  163. }
  164. .footer hr {
  165. background-color: #8392a5;
  166. }
  167. .footer p:first-child {
  168. color: #c0ccda;
  169. }
  170. .footer input {
  171. background-color: #c0ccda;
  172. }
  173. .footer input:focus {
  174. background-color: #e5e9f2;
  175. }
  176. .footer #theme {
  177. color: #c0ccda;
  178. }
  179. .footer #theme img {
  180. width: 32px;
  181. }
  182. .footer #hugo:hover {
  183. margin-right: 5px;
  184. transition: all 0.3s ease-out;
  185. }
  186. /* --- FOOTER END ---- */
  187. /* ============= Device specific fixes ======= */
  188. /* Large screens such as TV */
  189. @media only screen and (min-width: 1824px) {
  190. }
  191. /* Extra large devices (large desktops, 1200px and up) */
  192. @media (max-width: 1400px) {
  193. }
  194. @media (max-width: 1200px) {
  195. }
  196. /* IPad Pro */
  197. @media (max-width: 1024px) {
  198. .content-section .languageSelector {
  199. position: fixed;
  200. right: 0.5rem;
  201. bottom: 1rem;
  202. z-index: 10000000;
  203. background-color: #f9fafc;
  204. box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
  205. }
  206. }
  207. /* Large devices (desktops, 992px and up) */
  208. @media (max-width: 992px) {
  209. }
  210. /* Medium devices (tablets, 768px and up) */
  211. @media only screen and (max-width: 768px) {
  212. }
  213. /* Small devices (landscape phones, 576px and up) */
  214. @media only screen and (max-width: 576px) {
  215. .skills-section .container,
  216. .projects-section .container {
  217. padding-left: 0.3rem;
  218. padding-right: 0.3rem;
  219. }
  220. .section-holder {
  221. padding-left: 5px;
  222. padding-right: 5px;
  223. }
  224. .skills-section,
  225. .projects-section,
  226. .recent-posts-section,
  227. .achievements-section {
  228. padding-left: 0;
  229. padding-right: 0;
  230. }
  231. }
  232. /* iPhoneX, iPhone 6,7,8 */
  233. @media only screen and (max-width: 375px) {
  234. }
  235. /* Galaxy S5, Moto G4 */
  236. @media only screen and (max-width: 360px) {
  237. }
  238. /* iPhone 5 or before */
  239. @media only screen and (max-width: 320px) {
  240. }