admin.css 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .admin_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. }
  8. .admin_block {
  9. width: 90%;
  10. height: 35vw;
  11. background-color: #EDCBB0;
  12. border-radius: 2vw;
  13. overflow-y: auto;
  14. overflow-x: hidden;
  15. }
  16. .admin_block::-webkit-scrollbar {
  17. width: 0.8vw; /* ширина scrollbar */
  18. }
  19. .admin_block::-webkit-scrollbar-thumb {
  20. background-color: #d49d51; /* цвет плашки */
  21. border-radius: 5vw; /* закругления плашки */
  22. border: 0.25vw solid #ffffff;
  23. }
  24. .users_block {
  25. margin: 20px;
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. }
  30. .user {
  31. width: 90%;
  32. height: 5vw;
  33. background-color: #ffffff;
  34. border: 2px solid #9E795A;
  35. border-radius: 3vw;
  36. margin-top: 5px;
  37. display: flex;
  38. align-items: center;
  39. justify-content: flex-start;
  40. flex-direction: row;
  41. }
  42. .user_logo {
  43. margin-left: 3px;
  44. width: 4vw;
  45. height: 4vw;
  46. border-radius: 5vw;
  47. background-color: #000000;
  48. }
  49. .user_names {
  50. margin-left: 9px;
  51. margin-top: 10px;
  52. overflow-x: auto;
  53. color: #000000 !important;
  54. font-size: 2vw;
  55. }
  56. .admine_title {
  57. font-size: 3vw;
  58. }
  59. .link_to_user {
  60. width: 16vw;
  61. height: 3.5vw;
  62. display: flex;
  63. align-items: center;
  64. justify-content: flex-start;
  65. flex-direction: row;
  66. flex-wrap: no-wrap;
  67. text-decoration: none;
  68. }
  69. .link_to_user:hover {
  70. text-decoration: none;
  71. }
  72. .role_div {
  73. width: 8vw;
  74. height: 3vw;
  75. border-radius: 2vw;
  76. }
  77. .save_button {
  78. margin-top: 15px;
  79. width: 35vw;
  80. height: 5vw;
  81. background-color: #000000;
  82. color: #ffffff;
  83. border-radius: 5vw;
  84. vertical-align: middle;
  85. font-size: 1.5vw;
  86. }
  87. .edit_user_form {
  88. width: 90%;
  89. display: flex;
  90. flex-direction: column;
  91. align-items: center;
  92. }
  93. .user_active {
  94. margin-left: 1vw;
  95. }