generated from zhouhua/obsidian-markdown-media-card
-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
50 lines (44 loc) · 1.13 KB
/
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
/* @settings
name: Sticky Headings
id: sticky-headings
settings:
-
id: sticky-header-indent-width
title: Indent width
description: The indentation width in em units
type: variable-number
default: 1
format: rem
-
id: sticky-header-verticle-offset
title: verticle offset
description: The verticle offset in px units
type: variable-number
default: 0
format: px
-
id: sticky-header-float-background-color
title: float theme background color
description: The float theme background color
type: variable-color
opacity: true
default: #000
format: rgb
-
id: sticky-header-float-text-color
title: float theme text color
description: The float theme text color
type: variable-color
opacity: true
default: #fff
format: rgb
*/
:root {
--sticky-header-indent-width: 1em;
--sticky-header-verticle-offset: 0px;
--sticky-header-float-background-color: #000;
--sticky-header-float-text-color: #fff;
}
.view-content {
position: relative;
}