base.css 760 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. html {
  2. background-color: #fdf5e6;
  3. height: 100%;
  4. }
  5. body {
  6. min-height: 100%;
  7. }
  8. .navbar {
  9. background-color: #dcb495;
  10. display: inline-flex;
  11. height: 8vw;
  12. }
  13. .auth_button {
  14. color: #ffffff;
  15. font-size: 1.5vw;
  16. transition: font-size 0.5s ease-in, text-shadow 1s ease-in;
  17. }
  18. .auth_button:hover {
  19. font-size: 1.55vw;
  20. color: #ffffff;
  21. text-shadow: 0px 0px 20px #ffffff;
  22. }
  23. .footer {
  24. background-color: #171717;
  25. height: 15vw;
  26. }
  27. .footer_block {
  28. height: 100%;
  29. width: 90%;
  30. margin-left: 5%;
  31. display: flex;
  32. align-content: center;
  33. align-items: center;
  34. }
  35. .footer_logo {
  36. width: 7vw;
  37. height: 7vw;
  38. }
  39. .footer_rights {
  40. color: #ffffff;
  41. font-size: 1.5vw;
  42. width: 85%;
  43. text-align: center;
  44. }