-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
2406 lines (2105 loc) · 55.4 KB
/
main.css
File metadata and controls
2406 lines (2105 loc) · 55.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
.btn-primary {
background-color: #7F56D9; /* 버튼 배경색 변경 */
border-color: #7F56D9; /* 버튼 테두리 색 변경 */
color: #ffffff; /* 버튼 텍스트 흰색 */
}
.btn-primary:hover {
background-color: #6b46b0; /* 호버 시 더 어두운 색상 */
border-color: #6b46b0;
}
.custom-btn {
background-color: #7F56D9; /* 커스텀 배경색 */
color: #ffffff; /* 흰색 텍스트 */
border: none;
padding: 0.5rem 1rem;
border-radius: 0.25rem;
}
.custom-btn:hover {
background-color: #6b46b0; /* 호버 시 색상 */
}
.buttons {
display: flex;
flex-direction: column; /* 세로로 배치 */
gap: 16px; /* 버튼 사이 여백 */
}
.btn {
background-color: #7F56D9; /* 버튼 배경색 */
color: #ffffff; /* 버튼 텍스트 색상 */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.primary-btn {
background-color: #7F56D9; /* 버튼 배경색 */
color: white; /* 버튼 글자색 */
border: none; /* 테두리 없음 */
border-radius: 8px; /* 둥글게 */
padding: 1rem 1rem; /* 상하 패딩 1.2rem, 좌우 패딩 1rem */
margin-bottom: 12px; /* 아래 버튼과의 간격 */
transition: background-color 0.3s ease; /* 호버 시 배경색 전환 효과 */
width: auto; /* 자동 크기 조정 */
font-size: 16px;
font-style: normal;
font-weight: 800;
line-height: 24px; /* 150% */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.secondary-btn {
background-color: white; /* 두 번째 버튼 배경색 */
color: #344054; /* 두 번째 버튼 글자색 */
border: 1px solid #D0D5DD; /* 테두리 색상 */
border-radius: 8px; /* 둥글게 */
padding: 1rem 1rem; /* 상하 패딩 1.2rem, 좌우 패딩 1rem */
width: auto; /* 자동 크기 조정 */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.primary-btn:hover {
background-color: #6b46b0; /* 호버 시 색상 */
}
/* 버튼 스타일 */
.btn-custom-purple {
height: 44px;
display: flex;
padding: 16px 28px;
justify-content: center;
align-items: center;
gap: 8px;
border-radius: 8px;
background: var(--Primary-600, #7f56d9);
color: var(--White, #fff);
font-size: 18px;
font-weight: 600;
line-height: 28px;
border: none;
margin-bottom: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.btn-custom-white {
height: 44px;
display: flex;
padding: 16px 28px;
justify-content: center;
align-items: center;
gap: 8px;
color: var(#344054);
font-size: 16px;
font-weight: 600;
line-height: 28px;
margin-bottom: 12px;
border-radius: 8px;
border: 1px solid var(--Gray-300, #D0D5DD);
background: var(--White, #FFF);
/* Shadow/xs */
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.btn-custom-purple:hover {
background-color: #6941C6;
color: white;
}
.btn-custom-purple:disabled {
background-color: #E9D7FE !important; /* disabled 상태의 배경색 */
color: white !important; /* disabled 상태의 텍스트 색상 */
cursor: not-allowed;
}
.modal .btn-custom-purple {
padding: 10px 18px;
font-size: 16px;
line-height: 24px;
font-weight: 500;
}
.btn-agreement {
background: white;
border: 1px solid #D0D5DD;
color: #344054;
width: 120px;
font-size: 16px;
padding: 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.btn-agreement:hover {
background: #F9FAFB;
border-color: #D0D5DD;
color: #344054;
}
/* 파일 업로드 버튼 스타일 */
.file-upload-btn {
border: 1px solid #D0D5DD;
border-radius: 8px;
color: #344054;
background-color: #ffffff;
font-style: 14px;
font-weight: 700;
padding: 8px 16px;
display: inline-flex;
align-items: center;
gap: 8px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.file-reset-btn {
border-radius: 8px;
border: 1px solid #F9F5FF; /* 기본 색상으로 변경 */
background: #F9F5FF; /* 배경색을 원하는 색상으로 변경 */
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
font-weight: 800;
color: #6941C6; /* 텍스트 색상 */
padding: 8px 14px;
margin-top: 5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
/* 파일명 표시 스타일 */
.file-name {
display: none; /* Initially hidden */
position: relative;
display: flex;
align-items: center;
border: 1px solid transparent; /* No border initially */
}
.file-name.active {
display: flex; /* Show when active */
border: 1px solid var(--Gray-300, #D0D5DD); /* Add border when active */
}
.file-name {
margin-top: 5px;
color: #101828; /* 텍스트 색상 */
display: flex;
padding: 8px 14px;
justify-content: center;
align-items: center;
border-radius: 8px;
border: 1px solid var(--Gray-300, #D0D5DD);
background: var(--White, #FFF);
/* Shadow/xs */
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.primary-btn-new {
padding: 8px; /* 버튼의 상하좌우 여백 */
font-size: 14px;
width: 108px;
background-color: #7F56D9; /* 버튼 배경색 */
color: #ffffff; /* 버튼 텍스트 색상 */
border: none; /* 테두리 제거 */
border-radius: 8px; /* 모서리 둥글게 */
cursor: pointer; /* 커서 포인터 */
font-family: Pretendard;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 20px; /* 142.857% */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.secondary-btn-new {
padding: 8px; /* 버튼의 상하좌우 여백 */
font-size: 14px;
width: 108px;
background-color: #ffffff; /* 버튼 배경색 */
color: #344054; /* 버튼 텍스트 색상 */
border: 1px solid var(--Gray-300, #D0D5DD); /* 테두리 */
border-radius: 8px; /* 모서리 둥글게 */
cursor: pointer; /* 커서 포인터 */
font-family: Pretendard;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 20px; /* 142.857% */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.button-group {
display: flex;
gap: 12px;
}
.btn-view {
border-radius: 8px;
border: 1px solid var(--Brand-600, #7F56D9);
background: var(--Brand-600, #7F56D9);
color: #FFFFFF; /* 버튼 텍스트 색상 */
padding: 8px 16px; /* 버튼 패딩 */
cursor: pointer; /* 커서 포인터로 변경 */
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); /* 그림자 효과 */
transition: background 0.3s; /* 배경색 변화에 대한 트랜지션 */
font-weight: 800;
margin-top: 16px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.btn-view:hover {
background: var(--Brand-500, #9E77ED); /* 호버 시 배경색 변화 */
}
.btn-view:disabled {
background: #E9D7FE;
border-color: #E9D7FE;
color: #FFFFFF;
cursor: not-allowed;
}
.btn-view.completed:disabled,
.btn-view.completed {
background: var(--Success-50, #ECFDF3);
border-color: var(--Success-50, #ECFDF3);
color: var(--Success-700, #027A48);
}
.btn-more {
border-radius: 8px;
border: 1px solid var(--Gray-300, #D0D5DD);
background: var(--White, #FFF);
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
color: var(--Gray-700, #344054);
font-size: 16px;
font-style: normal;
font-weight: 800;
line-height: 24px; /* 150% */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: fit-content;
}
.type-select-btn {
background-color: #FFFFFF;
border: 1px solid #D0D5DD;
border-radius: 8px;
transition: all 0.2s ease;
}
.type-select-btn:hover {
border-color: #7F56D9;
background-color: #F9F5FF;
}
.type-select-btn h5 {
color: #344054;
font-weight: 600;
}
.type-select-btn p {
font-size: 14px;
}
/* 주소 검색 버튼 스타일 */
.btn-outline-secondary {
background-color: white;
border: 1px solid #D0D5DD;
color: #344054;
}
.btn-outline-secondary:hover {
background-color: #F9FAFB;
border: 1px solid #D0D5DD;
color: #344054;
}
/* 주소 검색 모달 크기 조정 */
.address-search-modal {
max-width: 800px; /* 원하는 넓이로 조정 가능 */
width: 100%;
}
/* 검색 입력 영역 넓이 조정 */
.search-input-wrapper {
display: flex; /* Ensure the wrapper uses flexbox */
align-items: center; /* Align items vertically in the center */
width: 100%;
}
.search-input-wrapper .input-group {
width: 100%;
}
.search-input-wrapper .form-control {
flex: 1; /* Input takes maximum space */
margin-right: 0; /* Remove any right margin */
border: none; /* 테두리 없음 */
outline: none; /* 포커스 시 아웃라인 없음 */
font-size: 16px; /* 폰트 크기 */
}
/* 검색 버튼 최소 넓이 설정 */
.search-input-wrapper .btn {
margin-left: 0; /* Remove any left margin */
display: flex; /* Ensure button is a flex container */
align-items: center; /* Center the icon vertically */
min-width: auto; /* 버튼이 내용만큼만 차지하도록 설정 */
white-space: nowrap;
}
/* 전체 폰트 설정 */
body {
font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', sans-serif;
background-color: #F9FAFB;
margin: 0;
}
/* Header 스타일 */
.container-mybox {
background-color: #FFFFFF;
display: flex;
max-width: 1280px;
padding: 32px;
flex-direction: column;
gap: 32px;
flex: 1 0 0;
margin: 0 auto;
margin-bottom: 60px; /* 푸터 높이만큼 마진 추가 */
height: auto; /* 높이를 자동으로 조정 */
min-height: calc(100vh - 60px); /* 푸터 높이를 제외한 최소 높이 */
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
align-self: stretch;
}
.navbar {
background-color: #6941C6 !important; /* 상단 네비게이션 배경색 강제 적용 */
padding: 1rem;
}
.navbar-nav .nav-link {
color: #ffffff !important; /* 네비게이션 링크 흰색 강제 적용 */
font-weight: bold;
margin-right: 1rem;
position: relative;
padding: 10px 12px;
text-decoration: none;
}
.navbar-nav .nav-link:hover {
color: #eeeeee !important; /* 링크 호버 색상 */
}
.navbar-nav .nav-link.active {
background-color: #7f56d9;
color: #f4ebff;
border-radius: 6px;
padding: 10px 20px;
}
.navbar-brand img {
width: 150px; /* 로고 크기 */
}
/* 네비게이션 바 */
.navbar {
background-color: #7F56D9;
padding: 16px 32px;
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar-nav {
list-style-type: none;
display: flex;
padding: 0;
}
.nav-right {
display: flex;
align-items: center;
margin-left: auto; /* 오른쪽으로 밀기 */
}
.notification-btn {
background: none;
border: none;
margin-right: 16px;
}
.username {
color: #ffffff;
}
/* 메인 타이틀 및 텍스트 스타일 */
h1, h3 {
color: #333333;
font-weight: bold;
margin-bottom: 1rem;
}
h2 {
color: #333333;
font-weight: bold;
}
p {
color: #666666;
font-size: 1.1rem;
line-height: 1.6;
}
/* 체크리스트 스타일 */
.checkitems {
margin-top: 2rem;
}
.checkitems .rowcheckmark {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.checkitems .checkmark_one {
background-color: #7F56D9; /* 버튼 배경색 #7F56D9 */
border: none;
border-radius: 50%;
padding: 0.5rem;
margin-right: 1rem;
}
.checkitems .checkmark_one img {
width: 20px;
height: 20px;
}
.checkitems p {
color: #333333;
font-size: 1rem;
margin: 0;
}
/* 로그인 모듈 스타일 */
.login-module {
width: 360px; /* 고정 너비 */
background-color: #ffffff;
}
/* 전체 배경색을 설정하고 가운데 정렬을 위해 컨테이너 스타일 */
body, html {
height: 100%;
margin: 0;
}
/* 푸터 스타일 */
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #FFFFFF;
color: #344054;
height: 60px; /* 푸터 높이 고정 */
display: flex;
align-items: center;
justify-content: center;
border-top: 1px solid var(--Gray-200, #EAECF0);
z-index: 1000;
}
/* 환영 메시지 스타일 */
.welcome-message {
font-size: 14px; /* 폰트 크기 설정 */
color: #344054; /* 텍스트 색상 설정 */
margin: 0 0 1rem 0; /* 아래쪽 마진 추가 */
}
/* 레이블 스타일 */
.id-label, .password-label {
font-size: 14px; /* 폰트 크기 설정 */
color: #344054; /* 텍스트 색상 설정 */
}
/* 이용 약관 동의 모듈 스타일 */
.terms-module {
width: 360px; /* 고정 너비 */
background-color: #ffffff; /* 배경색 설정 */
}
/* 체크박스 그룹 스타일 */
.checkbox-group {
display: flex;
align-items: center;
}
/* 커스텀 체크박스 스타일 */
.custom-checkbox {
display: flex;
align-items: center;
cursor: pointer;
}
.checkbox-input {
width: 16px; /* 체크박스 너비 */
height: 16px; /* 체크박스 높이 */
appearance: none !important;
background-color: #ffffff; /* 체크박스 배경색 */
border: 1px solid #D0D5DD; /* 체크박스 테두리 색상 */
border-radius: 4px !important; /* 체크박스 모서리 둥글게 - 항상 강제 적용 */
margin-right: 8px; /* 체크박스와 레이블 간격 */
position: relative; /* 크 모양을 위한 위치 설정 */
transition: none !important; /* 트랜지션 효과 제거 */
outline: none !important; /* 클릭 시 아웃라인도 제거 */
}
/* 체크된 상태 스타일 */
.checkbox-input:checked {
background-color: #F9F5FF; /* 체크된 배경색 */
border-color: #7F56D9; /* 체크된 테두리 색상 */
border-radius: 4px !important; /* 추가: 체크 시에도 사각형 유지 - 항상 강제 적용 */
}
/* 호버, 포커스, 액티브 상태에서도 사각형 유지 */
.checkbox-input:hover,
.checkbox-input:focus,
.checkbox-input:active,
.checkbox-input:checked:hover,
.checkbox-input:checked:focus,
.checkbox-input:checked:active {
border-radius: 4px !important; /* 항상 사각형 - 강제 적용 */
outline: none !important;
}
/* 특정 상태 조합에서도 확실히 사각형 유지 */
.checkbox-input:not(:checked),
.checkbox-input:not(:checked):hover,
.checkbox-input:not(:checked):focus,
.checkbox-input:not(:checked):active,
.checkbox-input:checked,
.checkbox-input:checked:hover,
.checkbox-input:checked:focus,
.checkbox-input:checked:active {
border-radius: 4px !important;
transition: none !important;
}
/* 체크 표시 추가 */
.checkbox-input:checked::after {
content: ''; /* 체크 마크의 내용 */
position: absolute; /* 체크 마크의 위치 설정 */
left: 4px; /* 체크 마크의 왼쪽 여백 */
top: 2px; /* 체크 마크의 위쪽 여백 */
width: 5px; /* 체크 표시의 너비 */
height: 8px; /* 체크 표시의 높이 */
border: solid #7F56D9; /* 체크 표시의 색상 */
border-width: 0 2px 2px 0; /* 체크 표시의 두께 조정 */
transform: rotate(45deg); /* 체크 모양을 대각선으로 회전 */
border-radius: 0 !important; /* 체크 표시는 완전한 사각형 - 항상 강제 적용 */
transition: none !important;
}
/* 체크박스 레이블 스타일 */
.checkbox-label {
color: #344054; /* 텍스트 색상 */
}
.consent-checkbox {
width: 16px;
height: 16px;
border-radius: 4px !important;
border: 1px solid #D0D5DD;
appearance: none !important;
background-color: #ffffff;
position: relative;
}
.consent-checkbox:checked {
background-color: #F9F5FF !important;
border-color: #7F56D9 !important;
border-radius: 4px !important;
}
.consent-checkbox:checked::after {
content: '';
position: absolute;
left: 4px;
top: 2px;
width: 5px;
height: 8px;
border: solid #7F56D9;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
border-radius: 0 !important;
}
/* 구분선 스타일 */
.divider {
background-color: #EAECF0; /* 구분선 색상 */
width: 360px; /* 너비 */
height: 1px; /* 높이 */
margin: 16px 0; /* 위아래 여백 */
}
/* 약관 목록 스타일 */
.terms-list {
list-style-type: none; /* 리스트 스타일 제거 */
padding-left: 0; /* 왼쪽 패딩 제거 */
}
.terms-list li {
margin-bottom: 16px; /* 항목 간격 */
display: flex;
align-items: center;
gap: 8px;
}
/* 하이퍼링크 스타일 */
a {
color: #7F56D9; /* 하이퍼링크 색상 */
text-decoration: none; /* 밑줄 제거 */
}
a:hover {
text-decoration: underline; /* 호버 시 밑줄 추가 (선택 사항) */
}
.terms-agreement {
display: flex;
flex-direction: column; /* 세로 방향으로 배치 */
justify-content: space-between; /* 위쪽과 아래쪽 요소 간의 공간 균등 배분 */
height: 100%; /* 전체 높이를 차지하게 설정 */
}
.agree-button {
background-color: #7F56D9; /* 버튼 배경색 */
color: #ffffff; /* 버튼 텍스트 색상 */
border: none; /* 테두리 제거 */
border-radius: 4px; /* 모서리 둥글게 */
padding: 10px 20px; /* 여백 */
font-size: 16px; /* 폰트 크기 */
cursor: pointer; /* 포인터 커서 */
margin-top: auto; /* 자동 마진으로 하단으로 밀기 */
}
.agree-button:hover {
background-color: #6b46b0; /* 호버 시 배경색 변경 */
}
/* 메인 컨테이너 */
.main-container {
display: flex;
justify-content: center;
align-items: flex-start; /* 상단 정렬로 변경 */
padding: 32px 0;
background-color: #FFFFFF;
max-width: 1280px;
margin: 0 auto;
width: 100%;
height: 100%;
}
.main-container-v {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
padding: 0px 32px;
background-color: #FFFFFF;
max-width: 1280px;
margin: 0 auto;
width: 100%;
height: 100%;
gap: 24px;
overflow-y: auto; /* 세로 스크롤 추가 */
min-height: calc(100vh - 60px); /* 푸터 높이를 제외한 최소 높이 */
}
.main-container-v > * {
width: 100%;
margin-bottom: 16px;
}
.content-header {
margin-bottom: 32px; /* 간격 설정 */
}
.heading-title {
color: #101828;
margin-bottom: 16px; /* 간격 설정 */
}
.content-box {
display: flex;
padding: 24px 0px 96px 0px;
flex-direction: column;
justify-content: center;
align-items: left;
gap: 64px;
align-self: stretch;
background-color: white;
border-radius: 8px;
padding: 32px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content-header {
margin-bottom: 32px; /* 간격 설정 */
}
.heading-title {
color: #101828;
margin-bottom: 16px; /* 간격 설정 */
}
.content-text {
color: #344054;
margin-bottom: 32px; /* 간격 설정 */
}
.feature-list {
list-style-type: none;
padding: 0;
margin-bottom: 32px; /* 간격 설정 */
}
.feature-list li {
margin-bottom: 12px; /* 간격 설정 */
}
.call-to-action {
margin-bottom: 40px; /* 간격 설정 */
}
.title {
color: #101828; /* 타이틀 색상 */
margin-bottom: 32px; /* 아래 여백 */
}
.description {
color: #344054; /* 본문 색상 */
font-size: 16px;
line-height: 1.5;
text-align: left;
margin-bottom: 2rem;
}
.features {
list-style-type: none; /* 리스트 스타일 제거 */
padding: 0; /* 패딩 제거 */
margin-bottom: 32px; /* 아래 여백 */
}
.features li {
margin-bottom: 16px; /* 각 항목 사이 여백 */
}
.features li {
margin-bottom: 16px; /* 각 항목 사이 여백 */
display: flex; /* Flexbox로 설 */
align-items: center; /* 수직 정렬 */
}
.check-icon {
margin-right: 12px; /* 이미지와 텍스트 사이의 간격 */
}
.ngs-title {
font-size: 36px;
font-style: normal;
font-weight: 800;
line-height: 44px; /* 122.222% */
letter-spacing: -0.72px;
color: #101828; /* 제목 색상, 필요에 따라 조정 */
margin-bottom: 32px; /* 하단 여백, 필요에 따라 조정 */
}
.patient-list-title {
font-size: 24px; /* 타이틀 폰트 크기 */
font-weight: 700; /* 타이틀 폰트 두께 */
text-align: left; /* 좌측 정렬 */
margin: 0;
}
.table-container {
margin-top: 0; /* 여백 제거 */
overflow-x: auto; /* 테이블이 화면 너비를 초과할 경우 스크롤 추가 */
border: 1px solid var(--Gray-200, #EAECF0);
border-radius: 8px;
padding: 0 0 24px 0; /* 상단 0, 좌우 0, 하단 24px */
}
.button-container {
display: flex;
align-items: center;
justify-content: space-between;
height: 73px;
padding: 0px 24px;
box-sizing: border-box;
}
.search-container {
margin-top: 32px; /* 타이틀과 검색창 간의 여백 */
}
.search-box {
display: flex; /* 플렉스 박스로 설정 */
padding-top: 10px;
padding-bottom: 10px;
padding-left:14px;
padding-right:14px;
height: 44px; /* 검색창 높이 */
justify-content: center; /* 가운데 정렬 */
align-items: center; /* 수직 가운데 정렬 */
border-radius: 8px; /* 둥글 */
border: 1px solid var(--Gray-300, #D0D5DD); /* 테두리 색상 */
background: var(--White, #FFF); /* 배경색 */
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); /* 그림자 효과 */
}
.search-icon {
margin-right: 8px; /* 아이콘과 입력창 간의 간격 */
}
.search-input {
width: 100%; /* 입력창 너비 100% */
height: 100%; /* 입력창 높이 100% */
border: none; /* 테두리 없음 */
outline: none; /* 포커스 시 아웃라인 없음 */
font-size: 16px; /* 폰트 크기 */
}
.table {
width: 100%;
border-collapse: collapse;
}
table th,
.table th,
th.th,
.th {
height: 44px;
padding: 12px 24px;
border-bottom: 1px solid var(--Gray-200, #EAECF0) !important;
background: var(--Gray-50, #F9FAFB) !important;
font-size: 14px;
font-style: normal;
font-weight: 700;
color: #101828;
text-align: left;
}
table td,
.table td,
td.td,
.td {
font-size: 16px;
font-style: normal;
font-weight: 400;
color: #101828;
padding: 12px 24px;
}
.pagination {
display: flex;
gap: 8px;
margin-top: 16px;
align-items: center;
justify-content: center; /* 가운데 정렬 추가 */
}
.page-btn {
padding: 8px 12px;
border: 1px solid #D0D5DD;
background-color: #fff;
cursor: pointer;
font-size: 14px;
color: #333;
border-radius: 4px;
}
.page-btn:hover {
background-color: #f0f4f8;
}
.page-btn:focus {
outline: none;
border-color: #007BFF;
}
/* 회원가입 모듈 스타일 */
.join-module {
background-color: #FFFFFF;
max-width: 600px;
margin: 2rem auto;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* 제목 섹션 스타일 */
.title-section {
text-align: center;
margin-bottom: 2rem;
}
.join-type-module {
background-color: #FFFFFF;
max-width: 500px;
width: 100%;
box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1);