base.css 385 B

123456789101112131415161718192021
  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. }
  12. .auth_button {
  13. color: #ffffff;
  14. font-size: 1.5vw;
  15. transition: font-size 0.5s ease-in, text-shadow 1s ease-in;
  16. }
  17. .auth_button:hover {
  18. font-size: 1.55vw;
  19. color: #ffffff;
  20. text-shadow: 0px 0px 20px #ffffff;
  21. }