generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
61 lines (55 loc) · 990 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
51
52
53
54
55
56
57
58
59
60
61
.slide-note-loading-hook {
display: flex;
width: 100%;
height: 300px;
color: black;
align-items: center;
justify-content:center;
border-radius: 8px;
background-image: linear-gradient(to bottom right, #5761B2, #1FC5A8);
}
.loader {
display: inline-block;
width: 80px;
height: 80px;
}
.loader:after {
content: " ";
display: block;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 50%;
border: 6px solid dodgerblue;
border-color: #305293 transparent #CCEEFFFF transparent;
animation: loader 1.2s linear infinite;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.slide-note-canvas-layer {
cursor: default;
}
.slide-note-text-layer {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: hidden;
opacity: 0.8;
line-height: 1.0;
}
.slide-note-text-layer > span {
cursor: text;
color: transparent;
position: absolute;
overflow: hidden;
white-space: nowrap;
transform-origin: 0% 0%;
}