_root.scss 711 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. html,
  2. body,
  3. #app {
  4. height: 100%;
  5. overflow: hidden;
  6. }
  7. #app {
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. main {
  12. flex: 1;
  13. overflow-y: auto;
  14. }
  15. // Layouts
  16. .view {
  17. display: flex;
  18. flex-direction: column;
  19. height: 100%;
  20. }
  21. .container-fill {
  22. display: flex;
  23. flex-direction: column;
  24. width: 100%;
  25. height: 100%;
  26. }
  27. // TEMP
  28. .text-authors {
  29. font: {
  30. size: 1.2em;
  31. }
  32. }
  33. .text-title {
  34. font: {
  35. size: 1em;
  36. style: italic;
  37. weight: normal;
  38. }
  39. }
  40. .text-edition {
  41. font: {
  42. size: .8em;
  43. weight: normal;
  44. }
  45. }
  46. .clickable {
  47. cursor: pointer;
  48. }
  49. .card-footer {
  50. display: flex;
  51. justify-content: space-between;
  52. }
  53. .tags {
  54. > :not(:last-of-type) {
  55. margin-right: .5rem;
  56. }
  57. }