generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
styles.css
35 lines (31 loc) · 834 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
/*
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.
*/
.obs-sheets_error {
color: rgb(255, 100, 100);
background-color: rgba(240, 128, 128, 20%);
text-rendering: optimizeLegibility;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
color-scheme: dark;
-webkit-user-select: text;
white-space: break-spaces;
word-break: break-word;
overflow-wrap: anywhere;
-webkit-user-modify: read-write-plaintext-only;
tab-size: 4;
box-sizing: border-box;
font-size: var(--code-size);
font-family: var(--font-monospace);
clear: left;
left: 0;
right: 0;
margin: 0 !important;
display: block;
position: relative;
padding: 0;
max-width: var(--file-line-width);
padding-left: var(--size-4-4);
text-align: center;
}