journal-character.component.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .header {
  2. display: flex;
  3. justify-content: space-between;
  4. height: 6.5rem;
  5. background-color: var(--header);
  6. box-shadow: var(--shadow);
  7. .header-data {
  8. margin: 0 5rem;
  9. display: flex;
  10. flex-direction: column;
  11. justify-content: center;
  12. align-items: center;
  13. height: 100%;
  14. input {
  15. width: 6rem;
  16. border: none;
  17. background: none;
  18. font-size: 1.75rem;
  19. font-weight: 600;
  20. text-align: center;
  21. }
  22. input[type="number"]::-webkit-inner-spin-button,
  23. input[type="number"]::-webkit-outer-spin-button {
  24. -webkit-appearance: none;
  25. margin: 0;
  26. }
  27. input[type="number"] {
  28. -moz-appearance: textfield;
  29. appearance: textfield;
  30. }
  31. }
  32. .name {
  33. text-align: center;
  34. font-size: 3em;
  35. font-weight: bold;
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. height: 100%;
  40. }
  41. .horizontal-ruler {
  42. width: 8rem;
  43. height: 1px;
  44. border-top: 1px solid var(--border-color);
  45. }
  46. }
  47. .character-body {
  48. height: calc(100vh - 6.5rem);
  49. .navigation-bar {
  50. padding-top: 1.5rem;
  51. gap: 2rem;
  52. box-shadow: var(--shadow);
  53. height: 100%;
  54. align-items: center;
  55. .nav-link {
  56. width: 90%;
  57. border-radius: 10px;
  58. transition: all 0.25s ease-in-out;
  59. font-size: 1.25rem;
  60. font-weight: 600;
  61. color: var(--text);
  62. &.active,
  63. &:hover {
  64. background-color: var(--tab-active);
  65. box-shadow: var(--shadow);
  66. }
  67. }
  68. .disabled-button {
  69. border: none;
  70. font-size: 1.25rem;
  71. font-weight: 600;
  72. color: black;
  73. cursor: not-allowed;
  74. }
  75. }
  76. .outlet {
  77. margin: 2.5rem 2.5rem 0 2.5rem;
  78. width: 100%;
  79. }
  80. .d-flex {
  81. height: 100%;
  82. }
  83. ::ng-deep .tab-pane {
  84. height: 100%;
  85. width: 100%;
  86. }
  87. }