-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOutputDialog.css
52 lines (47 loc) · 981 Bytes
/
OutputDialog.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
#popUpBox {
width: 80%;
margin: auto;
overflow: hidden;
background: #cc13ff;
box-shadow: 0 0 10px black;
border-radius: 10px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 5555;
padding: 10px;
box-sizing: border-box;
text-align: center;
display: none;
animation-name: anim;
animation-duration: .9s;
}
@keyframes anim {
from {
transform: scale(0) translate(-100%, -100%);
}
to {
transform: scale(1) translate(-50%, -50%);
}
}
#boxtitle {
color: white;
font-weight: bolder;
font-family: Arial, Helvetica, sans-serif;
}
.okbtn {
outline: none;
border: 1px solid white;
padding: 5px 30px;
margin-top: 10px;
font-size: 1.1rem;
border-radius: 20px;
color: white;
background-color: transparent;
font-weight: bolder;
transition: .5s ease;
}
.okbtn:hover {
background-color: #ffffff88;
}