base.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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, .nav_logo {
  43. width: 7vw;
  44. height: 6vw;
  45. }
  46. .footer_rights {
  47. color: #ffffff;
  48. font-size: 1.5vw;
  49. width: 85%;
  50. text-align: center;
  51. }
  52. .nav_panel {
  53. width: 100%;
  54. display: inline-flex;
  55. justify-content: center;
  56. }
  57. .nav_user {
  58. display: flex;
  59. flex-direction: row;
  60. justify-content: center;
  61. height: 100%;
  62. align-items: center;
  63. }
  64. .nav_user_name {
  65. margin-left: 10px;
  66. align-self: center;
  67. }
  68. .nav_chapter_text {
  69. height: 100%;
  70. font-family: Georgia, 'Times New Roman', Times, serif;
  71. font-style: bold;
  72. color: #946137;
  73. font-size: 2vw;
  74. transition: color 0.3s ease-in;
  75. }
  76. .nav_chapter_text:hover {
  77. color: #f3d5be;
  78. }
  79. .nav_chapter {
  80. text-align: center;
  81. width: 30%;
  82. border-bottom: 0.2vw solid #d49d51;
  83. transition: border-bottom 0.3s ease-in;
  84. }
  85. .nav_chapter:hover {
  86. text-decoration: none;
  87. border-bottom: 0.2vw solid #face7d;
  88. }
  89. .nav_user_name_div {
  90. height: 100%;
  91. }