Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 2 година
пре 2 година
пре 2 година
пре 2 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. body {
  2. margin: 0;
  3. }
  4. main {
  5. /* background: blue; */
  6. }
  7. main .panel {
  8. height: 100%;
  9. position: absolute;
  10. }
  11. menu.sidebar {
  12. height: calc(100% - 50px);
  13. position: relative;
  14. margin: 0;
  15. padding: 25px 10px;
  16. background: #F7F9FA;
  17. list-style: none;
  18. font-size: 18px;
  19. display: flex;
  20. flex-direction: column;
  21. gap: 20px;
  22. }
  23. menu.sidebar li {
  24. color: #4C555E;
  25. display: flex;
  26. align-items: center;
  27. gap: 10px;
  28. margin: 5px 0;
  29. }
  30. /* The user avatar */
  31. menu.sidebar img {
  32. width: 50px;
  33. height: 50px;
  34. margin: 0 auto;
  35. border-radius: 50%;
  36. }
  37. menu.sidebar li:hover {
  38. color: #1D262E;
  39. cursor: pointer;
  40. }
  41. menu.sidebar svg {
  42. height: 24px;
  43. width: 24px;
  44. }