Sidebar.scss 1.6 KB

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