Sidebar.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. @import './adaptivefont.scss';
  2. .sidebar {
  3. background-color: #1e1d45;
  4. width: 30%;
  5. overflow:auto;
  6. &__link {
  7. @include adaptive-font(20, 13);
  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. width: 100%;
  23. border-style: none;
  24. padding: 10px;
  25. &:active {
  26. background-color: #05f09b;
  27. color: #0e6147;
  28. }
  29. }
  30. &__addpanel {
  31. display: flex;
  32. width: 95%;
  33. margin: 0 auto;
  34. border: 1px solid #05f09b;
  35. padding: 0.5%;
  36. input {
  37. @include adaptive-font(20, 12);
  38. //font-size: medium;
  39. outline: none;
  40. background-color: transparent;
  41. width: 80%;
  42. color: #05f09b;
  43. border-style: none;
  44. }
  45. .btnWrapper {
  46. display: inline-block;
  47. width: 20%;
  48. border: none;
  49. button {
  50. border: none;
  51. background-color: transparent;
  52. font-size: large;
  53. padding: 4% 5% 2% 5%;
  54. margin: 0 2%;
  55. }
  56. }
  57. }
  58. &__profile {
  59. margin: 0 auto;
  60. h3 {
  61. font-size: large;
  62. }
  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. }