No Description
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.

event.scss 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. :host {
  2. position: relative;
  3. display: block;
  4. min-height: 100vh;
  5. background: #f4eee4;
  6. color: #2f2720;
  7. }
  8. .event-page {
  9. display: flex;
  10. align-items: flex-start;
  11. gap: 8px;
  12. background: #f4eee4;
  13. }
  14. .event-main {
  15. flex: 1;
  16. padding-right: 34px;
  17. box-sizing: border-box;
  18. }
  19. .event-panel {
  20. min-height: 650px;
  21. padding: 26px 34px 36px;
  22. background: #ffffff;
  23. border: 2px solid #d8caba;
  24. border-radius: 76px;
  25. box-sizing: border-box;
  26. }
  27. .page-title-row {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: flex-start;
  31. gap: 24px;
  32. margin-bottom: 22px;
  33. }
  34. .title-filter-area {
  35. display: grid;
  36. gap: 12px;
  37. min-width: 0;
  38. }
  39. .page-title-row h1 {
  40. margin: 0;
  41. color: #2f2720;
  42. font-size: 32px;
  43. line-height: 1.2;
  44. font-weight: 800;
  45. letter-spacing: 0.02em;
  46. }
  47. .filter-row {
  48. display: flex;
  49. align-items: flex-end;
  50. gap: 14px 18px;
  51. flex-wrap: wrap;
  52. width: 100%;
  53. }
  54. .filter-field,
  55. .search-field {
  56. display: grid;
  57. gap: 6px;
  58. }
  59. .filter-field label,
  60. .search-field label {
  61. color: #4b3c31;
  62. font-size: 14px;
  63. font-weight: 800;
  64. }
  65. .filter-field select,
  66. .search-field input {
  67. height: 38px;
  68. padding: 0 14px;
  69. border: 2px solid #d8caba;
  70. border-radius: 8px;
  71. background: #fffdf9;
  72. color: #2f2720;
  73. font-size: 15px;
  74. font-weight: 700;
  75. box-sizing: border-box;
  76. outline: none;
  77. }
  78. .filter-field select {
  79. width: 148px;
  80. cursor: pointer;
  81. }
  82. .search-field {
  83. flex: 1 1 260px;
  84. min-width: 260px;
  85. }
  86. .search-field input {
  87. width: 100%;
  88. }
  89. .filter-field select:focus,
  90. .search-field input:focus {
  91. border-color: #8a6543;
  92. box-shadow: 0 0 0 3px rgba(138, 101, 67, 0.12);
  93. }
  94. .list-header-row {
  95. display: flex;
  96. justify-content: space-between;
  97. align-items: flex-end;
  98. margin: 18px 0 10px;
  99. }
  100. .list-header-row h2 {
  101. margin: 0;
  102. color: #2f2720;
  103. font-size: 26px;
  104. font-weight: 800;
  105. }
  106. .list-header-row p {
  107. margin: 0;
  108. color: #7b6b5c;
  109. font-size: 14px;
  110. }
  111. .event-table-section {
  112. margin-top: 8px;
  113. }
  114. .event-table {
  115. display: grid;
  116. gap: 0;
  117. border: 2px solid #d8c2aa;
  118. border-radius: 8px;
  119. overflow: hidden;
  120. }
  121. .event-table-header,
  122. .event-table-row {
  123. display: grid;
  124. grid-template-columns: 1.25fr 0.95fr 0.68fr 0.95fr 0.82fr 1fr 96px;
  125. align-items: center;
  126. gap: 12px;
  127. }
  128. .event-table-header {
  129. min-height: 46px;
  130. padding: 0 14px;
  131. background: #efe4d6;
  132. color: #111111;
  133. font-size: 14px;
  134. font-weight: 800;
  135. box-sizing: border-box;
  136. }
  137. .event-table-row {
  138. min-height: 78px;
  139. padding: 10px 14px;
  140. border-top: 1px solid #d8c2aa;
  141. background: #fffdf9;
  142. color: #111111;
  143. font-size: 15px;
  144. box-sizing: border-box;
  145. }
  146. .event-table-row:hover {
  147. background: #fff8ee;
  148. }
  149. .person-name,
  150. .event-type {
  151. margin: 0;
  152. font-weight: 800;
  153. }
  154. .person-sub,
  155. .person-date {
  156. margin: 0;
  157. }
  158. .person-sub {
  159. margin-top: 4px;
  160. color: #111111;
  161. font-size: 13px;
  162. line-height: 1.35;
  163. }
  164. .person-date {
  165. color: #111111;
  166. font-size: 15px;
  167. }
  168. .event-type {
  169. color: #111111;
  170. }
  171. .status-select {
  172. width: 90px;
  173. height: 34px;
  174. padding: 0 10px;
  175. border: 2px solid #d8caba;
  176. border-radius: 8px;
  177. background: #ffffff;
  178. color: #111111;
  179. font-size: 14px;
  180. font-weight: 800;
  181. box-sizing: border-box;
  182. cursor: pointer;
  183. outline: none;
  184. }
  185. .status-select.sent {
  186. border-color: #8a6543;
  187. background: #f1e7d8;
  188. color: #111111;
  189. }
  190. .status-select:focus {
  191. border-color: #8a6543;
  192. box-shadow: 0 0 0 3px rgba(138, 101, 67, 0.15);
  193. }
  194. .empty-message {
  195. min-height: 58px;
  196. padding: 18px 20px;
  197. background: #fffdf9;
  198. color: #7b6b5c;
  199. font-size: 15px;
  200. font-weight: 700;
  201. box-sizing: border-box;
  202. }
  203. @media (max-width: 1100px) {
  204. .page-title-row {
  205. flex-direction: column;
  206. }
  207. .event-table {
  208. overflow-x: auto;
  209. }
  210. .event-table-header,
  211. .event-table-row {
  212. min-width: 980px;
  213. }
  214. }
  215. @media (max-width: 800px) {
  216. .event-page {
  217. flex-direction: column;
  218. }
  219. .event-main {
  220. width: 100%;
  221. padding: 16px 20px 32px;
  222. }
  223. .event-panel {
  224. padding: 24px 20px 30px;
  225. border-radius: 32px;
  226. }
  227. .page-title-row h1 {
  228. font-size: 26px;
  229. }
  230. .filter-row {
  231. align-items: flex-start;
  232. flex-direction: column;
  233. gap: 14px;
  234. }
  235. .filter-field,
  236. .filter-field select,
  237. .search-field {
  238. width: 100%;
  239. }
  240. .list-header-row {
  241. align-items: flex-start;
  242. flex-direction: column;
  243. gap: 8px;
  244. }
  245. }