generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyles.css
53 lines (45 loc) · 1.14 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
51
52
53
.rulesets-menu-content {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: flex-start;
gap: 0.3rem;
}
.add-ruleset-button, .apply-ruleset-button {
height: 3.3em;
font-size: large;
font-weight: 800;
background-color: transparent !important;
color: var(--interactive-accent);
box-sizing: border-box;
margin: 6px 6px 6px 0;
}
.add-ruleset-button:hover, .apply-ruleset-button:hover {
font-size: large;
box-shadow: 0 0 1px 3px var(--interactive-accent-hover) inset;
color: var(--interactive-accent-hover);
}
.ruleset-creation-content {
display: flex;
flex-direction: column;
}
.ruleset-creation-content h4 {
margin: 12px 0 6px 0;
}
.ruleset-creation-content button {
margin: 12px 0 0 0;
}
.ruleset-creation-content input {
background-color: transparent;
box-shadow: 0 0 1px 2px var(--interactive-accent) inset;
}
.ruleset-creation-content textarea {
background-color: transparent;
box-shadow: 0 0 1px 2px var(--interactive-accent) inset;
}
.rulesets-menu-title {
display: flex;
flex-direction: row;
}