forked from caronchen/obsidian-chartsview-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
38 lines (33 loc) · 754 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
.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;
}
}