Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

headings.scss 747 B

You have to be logged in to leave a comment. Sign In
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
  1. h1,
  2. h2,
  3. h3 {
  4. a {
  5. color: var(--color-auto-gray-9);
  6. }
  7. }
  8. // all h2 headers that are links should be blue-500
  9. h2 a {
  10. color: var(--color-auto-blue-5);
  11. }
  12. // ... except those on each product's toc
  13. .product-landing h2 a {
  14. color: var(--color-auto-gray-9);
  15. }
  16. .markdown-body {
  17. h1,
  18. h2,
  19. h3,
  20. h4,
  21. h5 {
  22. font-family: $font-mktg;
  23. font-weight: $font-weight-semibold;
  24. padding-top: $spacer-3;
  25. }
  26. h2 {
  27. font-size: 1.25em;
  28. }
  29. #article-contents h2:not(.link-with-intro-title) {
  30. padding-bottom: 0;
  31. border-bottom: none;
  32. }
  33. h3 {
  34. font-size: 1em;
  35. }
  36. }
  37. // needs specificity to override
  38. .markdown-body .lead-mktg p {
  39. color: var(--color-auto-gray-9);
  40. }
  41. .product-callout p,
  42. .contributor-callout p {
  43. margin: 0;
  44. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...