-
Notifications
You must be signed in to change notification settings - Fork 1
/
nw-splasher.css
61 lines (54 loc) · 1 KB
/
nw-splasher.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
html,
body,
.wrapper {
height: 100%;
box-sizing: border-box;
}
body {
background: transparent;
border: 4px solid #222;
border-radius: 20px;
margin: 0px;
padding: 00px;
color: #DEDEDE;
font-family: sans-serif;
text-align: center;
}
.wrapper {
background: linear-gradient(300deg, hsla(0, 0%, 18%, 1), hsla(0, 0%, 22%, 0.3));
border-radius: 10px;
padding: 20px;
}
.drag-enable {
-webkit-app-region: drag;
}
.drag-disable {
-webkit-app-region: no-drag;
}
.close {
position: absolute;
top: 3px;
right: 12px;
font-size: 30px;
cursor: pointer;
}
@keyframes spin {
0% {
transform: rotateZ(0deg);
}
45% {
background-color: rgba(168, 225, 136, 0.95)
}
100% {
transform: rotateZ(719deg);
}
}
.spinner {
display: block;
width: 100px;
height: 100px;
background: rgba(168, 180, 136, 0.95);
border-radius: 10px;
margin: 50px auto;
animation: spin 4s ease 0s infinite normal;
}