-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathextra.css
More file actions
59 lines (50 loc) · 1.85 KB
/
extra.css
File metadata and controls
59 lines (50 loc) · 1.85 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
/* Sets the style for annotation index numbers, displaying their corresponding data-md-annotation-id attribute */
.md-typeset .md-annotation__index > ::before {
content: attr(data-md-annotation-id);
}
/* Removes any transformations applied to the annotation index numbers when the element is focused */
.md-typeset :focus-within > .md-annotation__index > ::before {
transform: none;
}
/* Sets the primary color for the content area */
.md-content {
--md-typeset-a-color: #002b9e;
}
/* Applies specific styles when the .md-button--ydata class is used */
@media {
.md-button--ydata {
--md-primary-fg-color: #E32212;
--md-primary-bg-color: #E32212;
}
}
/* Sets the default color shades for the primary and accent colors, as well as code blocks, footer, and YouTube elements */
:root {
/* Primary color shades */
--md-primary-fg-color: #040404;
--md-primary-fg-color--light: #040404;
--md-primary-fg-color--dark: #040404;
--md-primary-bg-color: hsla(0, 0%, 100%, 1);
--md-primary-bg-color--light: hsla(0, 0%, 100%, 0.7);
--md-text-link-color: #E32212;
/* Accent color shades */
--md-accent-fg-color: #E32212;
--md-accent-fg-color--transparent: hsla(189, 100%, 37%, 0.1);
--md-accent-bg-color: hsla(0, 0%, 100%, 1);
--md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7);
}
/* Applies specific styles for code blocks */
:root > * {
/* Code block color shades */
--md-code-bg-color: hsla(0, 0%, 96%, 1);
--md-code-fg-color: hsla(200, 18%, 26%, 1);
/* Footer styles */
--md-footer-bg-color: #040404;
--md-footer-bg-color--dark: hsla(0, 0%, 0%, 0.32);
--md-footer-fg-color: hsla(0, 0%, 100%, 1);
--md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7);
--md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.3);
}
/* Sets the color for YouTube elements */
.youtube {
color: #EE0F0F;
}