| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- :host {
- position: relative;
- display: block;
- min-height: 100vh;
- background: #f4eee4;
- color: #2f2720;
- }
-
- .event-page {
- display: grid;
- grid-template-columns: 172px minmax(0, 1fr);
- gap: 20px;
- padding: 0 38px 36px 0;
- background: #f4eee4;
- }
-
- .event-main {
- min-width: 0;
- box-sizing: border-box;
- }
-
- .event-panel {
- min-height: 760px;
- padding: 34px 42px 40px;
- background: #ffffff;
- border: 2px solid #d8caba;
- border-radius: 64px;
- box-sizing: border-box;
- }
-
- .page-title-row {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- gap: 24px;
- margin-bottom: 22px;
- }
-
- .title-filter-area {
- display: grid;
- gap: 12px;
- min-width: 0;
- }
-
- .page-title-row h1 {
- margin: 0;
- color: #2f2720;
- font-size: 34px;
- line-height: 1.1;
- font-weight: 800;
- }
-
- .filter-row {
- display: flex;
- align-items: flex-end;
- gap: 14px 18px;
- flex-wrap: wrap;
- width: 100%;
- }
-
- .filter-field,
- .search-field {
- display: grid;
- gap: 6px;
- }
-
- .filter-field label,
- .search-field label {
- color: #4b3c31;
- font-size: 14px;
- font-weight: 800;
- }
-
- .filter-field select,
- .search-field input {
- height: 46px;
- padding: 0 14px;
- border: 2px solid #d8caba;
- border-radius: 8px;
- background: #fffdf9;
- color: #2f2720;
- font-size: 15px;
- font-weight: 700;
- box-sizing: border-box;
- outline: none;
- }
-
- .filter-field select {
- width: 148px;
- cursor: pointer;
- }
-
- .search-field {
- flex: 1 1 260px;
- min-width: 260px;
- }
-
- .search-field input {
- width: 100%;
- }
-
- .filter-field select:focus,
- .search-field input:focus {
- border-color: #8a6543;
- box-shadow: 0 0 0 3px rgba(138, 101, 67, 0.12);
- }
-
- .list-header-row {
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- margin: 18px 0 10px;
- }
-
- .list-header-row h2 {
- margin: 0;
- color: #2f2720;
- font-size: 22px;
- font-weight: 800;
- }
-
- .list-header-row p {
- margin: 0;
- color: #7b6b5c;
- font-size: 14px;
- }
-
- .event-table-section {
- margin-top: 8px;
- }
-
- .event-table {
- display: grid;
- gap: 0;
- border: 2px solid #d8c2aa;
- border-radius: 8px;
- overflow: hidden;
- }
-
- .event-table-header,
- .event-table-row {
- display: grid;
- grid-template-columns: 1.25fr 0.95fr 0.68fr 0.95fr 0.82fr 1fr 96px;
- align-items: center;
- gap: 12px;
- }
-
- .event-table-header {
- min-height: 40px;
- padding: 0 14px;
- background: #efe4d6;
- color: #111111;
- font-size: 14px;
- font-weight: 800;
- box-sizing: border-box;
- }
-
- .event-table-row {
- min-height: 62px;
- padding: 10px 14px;
- border-top: 1px solid #d8c2aa;
- background: #fffdf9;
- color: #111111;
- font-size: 15px;
- box-sizing: border-box;
- }
-
- .event-table-row:hover {
- background: #fff8ee;
- }
-
- .person-name,
- .event-type {
- margin: 0;
- font-weight: 800;
- }
-
- .person-sub,
- .person-date {
- margin: 0;
- }
-
- .person-sub {
- margin-top: 4px;
- color: #111111;
- font-size: 13px;
- line-height: 1.35;
- }
-
- .person-date {
- color: #111111;
- font-size: 15px;
- }
-
- .event-type {
- color: #111111;
- }
-
- .status-select {
- width: 90px;
- height: 34px;
- padding: 0 10px;
- border: 2px solid #d8caba;
- border-radius: 8px;
- background: #ffffff;
- color: #111111;
- font-size: 14px;
- font-weight: 800;
- box-sizing: border-box;
- cursor: pointer;
- outline: none;
- }
-
- .status-select.sent {
- border-color: #8a6543;
- background: #f1e7d8;
- color: #111111;
- }
-
- .status-select:focus {
- border-color: #8a6543;
- box-shadow: 0 0 0 3px rgba(138, 101, 67, 0.15);
- }
-
- .empty-message {
- min-height: 58px;
- padding: 18px 20px;
- background: #fffdf9;
- color: #7b6b5c;
- font-size: 15px;
- font-weight: 700;
- box-sizing: border-box;
- }
-
- @media (max-width: 1100px) {
- .event-page {
- grid-template-columns: 1fr;
- padding: 0 24px 32px;
- }
-
- .event-panel {
- min-height: auto;
- border-radius: 28px;
- padding: 28px 24px 32px;
- }
-
- .page-title-row {
- flex-direction: column;
- }
-
- .event-table {
- overflow-x: auto;
- }
-
- .event-table-header,
- .event-table-row {
- min-width: 980px;
- }
- }
-
- @media (max-width: 800px) {
- .page-title-row h1 {
- font-size: 26px;
- }
-
- .filter-row {
- align-items: flex-start;
- flex-direction: column;
- gap: 14px;
- }
-
- .filter-field,
- .filter-field select,
- .search-field {
- width: 100%;
- }
-
- .list-header-row {
- align-items: flex-start;
- flex-direction: column;
- gap: 8px;
- }
- }
|