Sidebar.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .sidebar {
  2. background-color: #1e1d45;
  3. width: 30%;
  4. overflow:auto;
  5. &__link {
  6. font-size: medium;
  7. display: block;
  8. text-decoration: none;
  9. border-left: 5px solid #05f09b;
  10. background-color: #100d23;
  11. color: #05f09b;
  12. margin: 5px;
  13. padding: 5px;
  14. &:hover {
  15. background-color: #323151;
  16. }
  17. }
  18. &__button {
  19. font-size: medium;
  20. width: 100%;
  21. border-style: none;
  22. padding: 10px;
  23. &:active {
  24. background-color: #05f09b;
  25. color: #0e6147;
  26. }
  27. }
  28. &__addpanel {
  29. display: flex;
  30. width: 95%;
  31. margin: 0 auto;
  32. border: 1px solid #05f09b;
  33. padding: 0.5%;
  34. input {
  35. font-size: medium;
  36. outline: none;
  37. background-color: transparent;
  38. width: 80%;
  39. color: #05f09b;
  40. border-style: none;
  41. }
  42. .btnWrapper {
  43. display: inline-block;
  44. width: 20%;
  45. border: none;
  46. button {
  47. border: none;
  48. background-color: transparent;
  49. font-size: large;
  50. padding: 4% 5% 2% 5%;
  51. margin: 0 2%;
  52. }
  53. }
  54. }
  55. &__profile {
  56. margin: 0 auto;
  57. img {
  58. max-width: 100px;
  59. height: auto;
  60. border-radius: 10%;
  61. border: 2px solid #70b2e7;
  62. box-shadow: 0 0 15px black;
  63. }
  64. }
  65. }