-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBaseModal.module.css
More file actions
102 lines (93 loc) · 1.63 KB
/
BaseModal.module.css
File metadata and controls
102 lines (93 loc) · 1.63 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
.modalOverlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.modalContent {
background-color: #f7f2ec;
padding: 50px 20px 20px;
border-radius: 12px;
width: 85%;
max-width: 370px;
min-height: 30px;
max-height: 550px;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
text-align: center;
}
.closeButton {
position: absolute;
top: 15px;
right: 15px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #888;
}
.title {
font-size: 18px;
color: #000;
margin-bottom: 10px;
font-weight: 500;
}
.text {
font-size: 14px;
color: #3e524d;
margin: 0 7%;
font-weight: 400;
line-height: 20px;
}
.continueButton {
background-color: #2f4f4f;
color: #fff;
border: none;
padding: 15px 0;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
min-height: 50px;
position: relative;
}
.continueButton:hover {
background-color: #1e4d3f;
}
.modalContent ul {
list-style-type: none;
padding-left: 0;
}
.modalContent li {
color: #3e524d;
position: relative;
padding-left: 15px;
margin: 15px 0;
font-size: 14px;
line-height: 20px;
text-align: left;
}
.modalContent li::before {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 5px;
height: 5px;
background-color: #073b36;
border-radius: 50%;
}