generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
44 lines (36 loc) · 938 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.
*/
.html-tabs {
display: flex;
margin-left: .5rem;
margin-right: .5rem;
margin-bottom: 1rem;
font-size: 1.25rem;
/* line-height: 3rem; */
border-bottom-width: 1px;
border-bottom-style: solid;
border-color: hsla(226, 232, 240, 1);
cursor: pointer;
}
.html-tab {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.html-tab:hover {
color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.75);
}
.html-tab-not-first {
margin-left: 1rem;
}
.html-tab-active {
color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 1);
border-bottom-width: 1px;
border-bottom-style: solid;
border-color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 1);
}
.html-tab-content {
padding: 0.5rem;
}