base.css 893 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. #navbar {
  14. position: fixed;
  15. width: 100%;
  16. transition: top 0.3s;
  17. opacity: .9;
  18. border-bottom: 1px solid #bf9c81;
  19. }
  20. .auth_button {
  21. color: #ffffff;
  22. font-size: 1.5vw;
  23. transition: color 0.5s ease-in, border-bottom 0.5s ease-in;
  24. }
  25. .auth_button:hover {
  26. color: #694a2d;
  27. border-bottom: 3px solid #f3c79e;
  28. text-decoration: none;
  29. }
  30. .footer {
  31. background-color: #171717;
  32. height: 15vw;
  33. }
  34. .footer_block {
  35. height: 100%;
  36. width: 90%;
  37. margin-left: 5%;
  38. display: flex;
  39. align-content: center;
  40. align-items: center;
  41. }
  42. .footer_logo {
  43. width: 7vw;
  44. height: 7vw;
  45. }
  46. .footer_rights {
  47. color: #ffffff;
  48. font-size: 1.5vw;
  49. width: 85%;
  50. text-align: center;
  51. }