-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmodal.css
More file actions
122 lines (105 loc) · 1.79 KB
/
modal.css
File metadata and controls
122 lines (105 loc) · 1.79 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
.modal {
position: fixed;
top: 0;
left: 0;
width:100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
}
.modal-main {
position:fixed;
background: white;
height: 200px;
width: 500px;
top:50%;
left:50%;
transform: translate(-50%,-50%);
border-radius: 0.31rem;
}
.warning-container{
display: flex;
align-items: center;
justify-content: center;
padding-right: 10px;
}
.war-icon{
color: rgb(230, 57, 57);
}
.display-block {
display: block;
}
.display-none {
display: none;
}
/* button {
} */
.btn-container{
display: flex;
align-items: center;
justify-content: center;
}
.btn-1:hover {
background-color: #044ab3;
}
.btn-2:hover {
background-color: #37393c;
}
.heading-popup{
text-align: center;
margin-left: 10px;
}
.subheading-popup{
text-align: center;
font-size: large;
font-weight: 200;
}
.btn-2{
color: #fff;
background-color: #5c636a;
border-color: #565e64;
}
.btn-1{
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
button{
margin: .25rem;
display: inline-block;
font-weight: 400;
line-height: 1.5;
text-align: center;
text-decoration: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
user-select: none;
-webkit-appearance: button;
text-transform: none;
margin: 20px 50px 10px 50px;
width: 70px;
cursor: pointer;
}
@media (max-width:414px){
.modal-main {
padding: 8px;
height: 140px;
width: 200px;
top: 40%;
}
.btn-container{
height: 35px;
}
button{
line-height: 1;
margin: 3px;
}
.warning-container{
height: 39px;
}
.subheading-popup{
font-weight:lighter;
}
}