show_modal.less
1.04 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
@charset "UTF-8";
.show-modal {
.layer-box {
position: fixed;
top: 0;
left: 0;
z-index: 150;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
.box {
background-color: #F8F8FA;
width: 540px;
border-radius: 10px;
.title {
}
.content {
padding: 60px 0 50px 0;
text-align: center;
color: #000000;
font-size: 30px;
font-weight: 500;
line-height: 42px;
letter-spacing: 1px;
}
.buttons-box {
display: flex;
justify-content: space-evenly;
.btn {
display: flex;
justify-content: center;
align-items: center;
height: 104px;
border-top: 1px solid #EBEBEB;
& + .btn {
border-left: 1px solid #EBEBEB;
}
&.btn-okay {
flex: 1;
color: #6B7698;
font-size: 30px;
letter-spacing: 1px;
}
&.btn-cancel {
flex: 1;
color: #000000;
font-size: 30px;
letter-spacing: 1px;
}
}
}
}
}
}