-
Notifications
You must be signed in to change notification settings - Fork 2
/
modal.css
84 lines (70 loc) · 1.18 KB
/
modal.css
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
.k-modal {}
.k-modal.open .k-modal-overlay,
.k-modal.open .k-modal-window {
opacity: 1;
z-index: 1000;
}
.k-modal-window, .k-modal-overlay {
opacity: 0;
z-index: -1;
}
.k-modal-overlay {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
background: rgba(0, 0, 0, 0.5);
}
.k-modal-window {
width: 300px;
border-radius: 10px;
background: #fff;
margin: 200px auto;
padding: 20px;
}
.k-modal-window p {
font-family: Raleway medium;
font-size: 20px;
}
.k-modal-header {
font-family: Raleway medium;
font-size: 20px;
padding: 5px 10px;
display: flex;
justify-content: space-between;
}
.k-modal-close {
cursor: pointer;
}
.k-modal-body {
padding: 10px;
}
.k-modal-body input {
font-family: Lato regular;
font-size: 16px;
width: 250px;
margin: 0 0 15px 0;
}
.k-modal-body input:last-child {
margin: 0;
}
.k-modal-footer{
display: flex;
justify-content: center;
padding: 5px 10px;
}
.k-modal-footer button {
font-family: Raleway regular;
color: #fff;
width: 100px;
font-size: 20px;
border: none;
background: #262626;
}
.k-modal-footer .k-disable-btn {
background: #606060;
}
.k-modal-footer .k-active-btn:hover {
background: #ff0036;
}