main.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* Global */
  2. body {
  3. padding-top: 5rem;
  4. background-color: rgb(230, 255, 230);
  5. }
  6. .focus-center {
  7. padding: 3rem 1.5rem;
  8. text-align: center;
  9. }
  10. @media (min-width: 576px) {
  11. h1 {
  12. font-size: 5em;
  13. }
  14. }
  15. h3 {
  16. border-bottom: 4px #28a745 solid;
  17. }
  18. h4 {
  19. color: #0b2e13;
  20. }
  21. /* Navigation bar bigger title */
  22. @media (min-width: 576px) {
  23. .navbar-brand {
  24. font-size: 2em;
  25. }
  26. }
  27. /* Jovian custom color */
  28. .bg-jovian {
  29. background-color: #004D40;
  30. }
  31. /* Dropdown acive color */
  32. .dropdown-item.active {
  33. background-color: #28a745;
  34. border-color: #28a745;
  35. }
  36. .dropdown-item:active {
  37. background-color: rgb(70, 197, 99);
  38. border-color: rgb(40, 167, 69);
  39. }
  40. /* Expand button */
  41. @keyframes pop-menu-anim {
  42. from {
  43. background-color: rgb(230, 255, 230);
  44. transform: rotate(90deg);
  45. }
  46. to {
  47. background-color: #eee;
  48. transform: rotate(0deg);
  49. }
  50. }
  51. .jovian-toggler {
  52. background-color: rgb(230, 255, 230);
  53. transform: rotate(90deg);
  54. }
  55. .jovian-toggler:hover {
  56. background-color: #eee;
  57. transform: rotate(0deg);
  58. animation-name: pop-menu-anim;
  59. animation-duration: 0.4s;
  60. }
  61. .jovian-toggler:active {
  62. background-color: #fff;
  63. transform: rotate(0deg);
  64. }
  65. @media (min-width: 768px) {
  66. .navbar-expand-md .jovian-toggler {
  67. display: none;
  68. }
  69. }
  70. /* CV */
  71. .city {
  72. font-style: italic;
  73. color: #4e555b;
  74. }
  75. .middle-info {
  76. color: black;
  77. }
  78. .lead strong {
  79. color: black;
  80. }
  81. /* Link color */
  82. main a {
  83. color: #1e7e34;
  84. }
  85. /* Footer */
  86. .footer a {
  87. color: #1c7430;
  88. }