generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
44 lines (38 loc) · 770 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
/*
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.
*/
.gesture-canvas {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
pointer-events: none; /* Ensure it doesn't block other events */
}
.gesture-overlay {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1001;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
width: 175px;
height: 175px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
color: white;
text-align: center;
font-size: 36px;
}
.gesture-overlay-cancel {
font-size: 50px;
}
.gesture-text {
margin-top: 10px;
font-size: 16px;
}