-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow.css
60 lines (53 loc) · 1.27 KB
/
window.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
/* fade in - fade out */
@keyframes windowOpen {
from {
opacity: 0;
scale: 0.95;
rotateX: -5;
perspective: 1000px;
}
to {
opacity: 1;
scale: 1;
rotateX: 0;
perspective: 1000px;
}
}
@keyframes windowClose {
from {
opacity: 1;
scale: 1;
rotateX: 0;
perspective: 1000px;
}
to {
opacity: 0;
scale: 0.95;
rotateX: -5;
perspective: 1000px;
}
}
.windowClose {
animation: windowClose 0.2s ease forwards !important;
pointer-events: none !important;
}
.winbox {
background-color: #101010ee;
backdrop-filter: blur(10px);
border: 2px solid #303030;
border-radius: 5px;
box-shadow: 0px 0px 30px #000000;
animation: windowOpen 0.2s ease-out forwards;
}
.wb-body {
/* set the width of window border via margin: */
background: #202020aa;
}
@font-face {
font-family: 'Roboto Regular';
}
.wb-title {
font-size: 13px;
font-weight: 500;
font-family: 'Inter Regular';
}