main.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. /* Dropdown acive color */
  28. .dropdown-item.active {
  29. background-color: #28a745;
  30. border-color: #28a745;
  31. }
  32. .dropdown-item:active {
  33. background-color: rgb(70, 197, 99);
  34. border-color: rgb(40, 167, 69);
  35. }
  36. /* Expand button */
  37. @keyframes pop-menu-anim {
  38. from {
  39. background-color: rgb(230, 255, 230);
  40. transform: rotate(90deg);
  41. }
  42. to {
  43. background-color: #eee;
  44. transform: rotate(0deg);
  45. }
  46. }
  47. .jovian-toggler {
  48. background-color: rgb(230, 255, 230);
  49. transform: rotate(90deg);
  50. }
  51. .jovian-toggler:hover {
  52. background-color: #eee;
  53. transform: rotate(0deg);
  54. animation-name: pop-menu-anim;
  55. animation-duration: 0.4s;
  56. }
  57. .jovian-toggler:active {
  58. background-color: #fff;
  59. transform: rotate(0deg);
  60. }
  61. @media (min-width: 768px) {
  62. .navbar-expand-md .jovian-toggler {
  63. display: none;
  64. }
  65. }
  66. /* CV */
  67. .city {
  68. font-style: italic;
  69. color: #4e555b;
  70. }
  71. .middle-info {
  72. color: black;
  73. }
  74. .lead strong {
  75. color: black;
  76. }
  77. /* Link color */
  78. main a {
  79. color: #1e7e34;
  80. }
  81. /* Footer */
  82. .footer a {
  83. color: #1c7430;
  84. }