forked from rpggio/obsidian-chat-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (43 loc) · 987 Bytes
/
styles.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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/*
.loading.time::after {
content: "🕐\A🕑\A🕒\A🕓\A🕔\A🕕\A🕖\A🕗\A🕘\A🕙\A🕚\A🕛";
animation: spin12 3s steps(12) infinite;
width: 1.3em;
position: relative;
z-index: 999;
right: 0;
bottom: 0;
}
.canvas-node::after {
width: 8px;
height: 48px;
display: inline-block;
position: relative;
border-radius: 4px;
color: #FFF;
box-sizing: border-box;
animation: animloader 0.6s linear infinite;
}
@keyframes animloader {
0% {
box-shadow: 20px -10px, 40px 10px, 60px 0px;
}
25% {
box-shadow: 20px 0px, 40px 0px, 60px 10px;
}
50% {
box-shadow: 20px 10px, 40px -10px, 60px 0px;
}
75% {
box-shadow: 20px 0px, 40px 0px, 60px -10px;
}
100% {
box-shadow: 20px -10px, 40px 10px, 60px 0px;
}
}
*/