base.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. html {
  2. background-color: #fdf5e6;
  3. height: 100%;
  4. }
  5. body {
  6. min-height: 100%;
  7. }
  8. .navbar {
  9. margin-top: -1.1vw;
  10. background-color: #dcb495;
  11. display: inline-flex;
  12. height: 8vw;
  13. }
  14. #navbar {
  15. position: fixed;
  16. width: 100%;
  17. transition: top 0.3s;
  18. opacity: .9;
  19. border-bottom: 1px solid #bf9c81;
  20. }
  21. .auth_button {
  22. color: #ffffff;
  23. font-size: 1.5vw;
  24. transition: color 0.5s ease-in, border-bottom 0.5s ease-in;
  25. }
  26. .auth_button:hover {
  27. color: #694a2d;
  28. border-bottom: 3px solid #f3c79e;
  29. text-decoration: none;
  30. }
  31. .footer {
  32. background-color: #171717;
  33. height: 15vw;
  34. }
  35. .footer_block {
  36. height: 100%;
  37. width: 90%;
  38. margin-left: 5%;
  39. display: flex;
  40. align-content: center;
  41. align-items: center;
  42. }
  43. .footer_logo, .nav_logo {
  44. width: 7vw;
  45. height: 6vw;
  46. }
  47. .footer_rights {
  48. color: #ffffff;
  49. font-size: 1.5vw;
  50. width: 85%;
  51. text-align: center;
  52. }
  53. .nav_panel {
  54. width: 100%;
  55. display: inline-flex;
  56. justify-content: center;
  57. }
  58. .nav_user {
  59. display: flex;
  60. flex-direction: row;
  61. justify-content: center;
  62. height: 100%;
  63. align-items: center;
  64. }
  65. .nav_user_name {
  66. margin-left: 1vw;
  67. align-self: center;
  68. }
  69. .nav_chapter_text {
  70. height: 100%;
  71. font-family: Georgia, 'Times New Roman', Times, serif;
  72. font-style: bold;
  73. color: #946137;
  74. font-size: 2vw;
  75. transition: color 0.3s ease-in;
  76. }
  77. .nav_chapter_text:hover {
  78. color: #f3d5be;
  79. }
  80. .nav_chapter {
  81. text-align: center;
  82. width: 30%;
  83. border-bottom: 0.2vw solid #d49d51;
  84. transition: border-bottom 0.3s ease-in;
  85. }
  86. .nav_chapter:hover {
  87. text-decoration: none;
  88. border-bottom: 0.2vw solid #face7d;
  89. }
  90. .nav_user_name_div {
  91. height: 100%;
  92. }
  93. body::-webkit-scrollbar {
  94. width: 0.8vw; /* ширина scrollbar */
  95. }
  96. body::-webkit-scrollbar-thumb {
  97. background-color: #d49d51; /* цвет плашки */
  98. border-radius: 5vw; /* закругления плашки */
  99. border: 0.25vw solid #ffffff;
  100. }