-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (63 loc) · 1.24 KB
/
style.css
File metadata and controls
73 lines (63 loc) · 1.24 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body::before {
content: "";
position: fixed;
bottom: 0;
right: 0;
width: 40vw;
height: 40vw;
background-image: url("https://storage.googleapis.com/docs-downloads/mintlify-site/background-light.svg");
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
opacity: 0.1;
pointer-events: none;
z-index: 0;
}
.dark body::before {
background-image: url("https://storage.googleapis.com/docs-downloads/mintlify-site/background-dark.svg");
opacity: 0.15;
}
table {
display: table !important;
}
.note-image-wrapper {
position: relative;
display: inline-block;
}
.note-image {
display: block;
}
.note-image-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
opacity: 0.6;
transition: opacity 0.3s;
}
.note-image-wrapper:hover .note-image-overlay {
opacity: 1;
}
@media only screen and (max-width: 768px) {
.note-image-overlay {
width: 70px;
height: 70px;
}
}
@media only screen and (max-width: 400px) {
.note-image-overlay {
width: 56px;
height: 56px;
}
}
@media only screen and (max-width: 400px) {
.note-image-overlay {
width: 32px;
height: 32px;
}
}
h5,
h6 {
font-weight: 600;
}