main-page.component.css 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. html,
  2. body {
  3. height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. }
  7. .container {
  8. display: flex;
  9. width: 100%;
  10. }
  11. .margin-column {
  12. flex: 1;
  13. }
  14. .col-left {
  15. flex: 1;
  16. }
  17. .col-right {
  18. flex: 1;
  19. display: flex;
  20. flex-direction: column;
  21. }
  22. .buttons-container {
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: space-between;
  26. height: 100%;
  27. }
  28. .button-row {
  29. display: flex;
  30. justify-content: flex-start; /*allign to the left */
  31. margin-bottom: 10px;
  32. }
  33. .button-row button {
  34. width: 100%;
  35. background-color: orange;
  36. color: black;
  37. margin: 5px;
  38. }
  39. .text-block-row {
  40. flex: 1;
  41. display: flex;
  42. align-items: center;
  43. margin: 5px;
  44. }
  45. .text-block {
  46. flex: 1;
  47. border: 1px solid #ccc;
  48. padding: 10px;
  49. }
  50. .song-list-card {
  51. height: 100%;
  52. display: flex;
  53. flex-direction: column;
  54. }
  55. .song-list {
  56. flex: 1;
  57. overflow-y: auto;
  58. align-items: stretch;
  59. }
  60. .card-title {
  61. color: orange;
  62. }