generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyles.css
55 lines (48 loc) · 1.08 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
54
55
.chartsview-donation {
width: fit-content;
margin: 25px auto;
text-align: center;
position: absolute;
left: 200px;
right: 0;
bottom: 0;
}
.chartsview-donation a.paypal {
display: inline-block;
}
.chartsview-thumbnail-container.is-selected .chartsview-thumbnail {
display: unset;
position: fixed;
top: 0;
right: 0;
}
.chartsview-thumbnail-container .chartsview-thumbnail {
display: none;
}
/* #### Desktops #### */
@media screen and (min-width: 1024px) {
.chartsview-thumbnail-container .chartsview-thumbnail img {
width: 500px;
}
}
/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px) {
.chartsview-thumbnail-container .chartsview-thumbnail img {
width: 300px;
}
}
.chartsview-export-button {
padding: 5px;
position: relative;
width: fit-content;
display: flex;
opacity: 0;
transition: opacity 500ms;
background-color: var(--interactive-accent);
color: var(--text-on-accent);
border-radius: 5px;
cursor: pointer;
}
.block-language-chartsview:hover .chartsview-export-button {
opacity: 1;
}