-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (42 loc) · 1.1 KB
/
style.css
File metadata and controls
46 lines (42 loc) · 1.1 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
/* BEGIN-H2 */
/* Style all H2 elements.
* Because this is a very loose selector, we need to override the MyST styles with !important
*/
h2 {
background-image: url(https://media.giphy.com/media/26BROrSHlmyzzHf3i/giphy.gif) !important;
background-size: cover !important;
color: transparent !important;
-moz-background-clip: text !important;
-webkit-background-clip: text !important;
}
/* END-H2 */
/* BEGIN-BLOCK */
/* Style an element within a particular block */
.styled-block
/* Select figcaptions that follow block-quotes */
blockquote + figcaption {
-webkit-text-stroke: 0.25px #d6f4f4;
color: transparent;
text-shadow:
1px 1px 0px #07bccc,
1.5px 1.5px 0px #e601c0,
2px 2px 0px #e9019a,
2.5px 2.5px 0px #f40468,
4.5px 4.5px 1px #482896;
cursor: pointer;
}
/* END-BLOCK */
/* BEGIN-NOTE */
.styled-note {
box-shadow: 0 0 20px 5px oklch(0.707 0.165 254.624);
}
.dark .styled-note {
box-shadow: 0 0 20px 5px oklch(0.379 0.146 265.522);
}
/* END-NOTE */
.by-position
/* BEGIN-BY-POSITION */
li:nth-child(4) {
color: oklch(0.707 0.165 254.624);
}
/* END-BY-POSITION */