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

footer.css 2.9 KB

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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  1. #merch-store {
  2. background-image: -webkit-linear-gradient(left, white 25%, #fde071 37.5%, #ef9671, #996a6e 62.5%, var(--secondary-200) 75%);
  3. background-image: linear-gradient(90deg, white 25%, #fde071 37.5%, #ef9671, #996a6e 62.5%, var(--secondary-200) 75%);
  4. background-position: right center;
  5. background-size: 400% auto;
  6. -webkit-background-clip: text;
  7. background-clip: text;
  8. color: #ef9671;
  9. -webkit-text-fill-color: transparent;
  10. transition: color 200ms linear;
  11. }
  12. #merch-store:hover {
  13. background-position: left center;
  14. color: #ef9671;
  15. transition: background-position 2000ms ease-out;
  16. }
  17. .dagshub-footer {
  18. font-family: 'Inter', sans-serif;
  19. font-style: normal;
  20. font-size: 14px;
  21. line-height: 17px;
  22. font-weight: 500;
  23. display: flex;
  24. flex-wrap: wrap;
  25. justify-content: space-between;
  26. background: var(--dark-900);
  27. padding: 32px 182px 16px;
  28. gap: 22px;
  29. }
  30. @media screen and (max-width: 1200px) {
  31. .dagshub-footer {
  32. flex-direction: column;
  33. align-items: center;
  34. text-align: center;
  35. padding: 32px;
  36. }
  37. .dagshub-footer #footer-logo {
  38. order: 0;
  39. }
  40. .dagshub-footer h2 {
  41. order: 1;
  42. }
  43. .dagshub-footer #footer-social {
  44. order: 2;
  45. margin: auto;
  46. }
  47. .dagshub-footer .links {
  48. order: 3;
  49. font-weight: 700;
  50. font-size: 14px;
  51. color: var(--white);
  52. }
  53. .dagshub-footer .legal {
  54. order: 4;
  55. display: block !important;
  56. }
  57. }
  58. .dagshub-footer i,
  59. .dagshub-footer a,
  60. .dagshub-footer svg,
  61. .dagshub-footer img {
  62. color: var(--secondary-200);
  63. fill: var(--secondary-200);
  64. font-weight: 600;
  65. }
  66. .dagshub-footer i:hover,
  67. .dagshub-footer a:hover,
  68. .dagshub-footer svg:hover,
  69. .dagshub-footer img:hover {
  70. color: var(--secondary-400);
  71. fill: var(--secondary-400);
  72. }
  73. .dagshub-footer p {
  74. color: var(--secondary-200);
  75. }
  76. .dagshub-footer #footer-logo {
  77. max-width: 200px;
  78. }
  79. .dagshub-footer .legal {
  80. display: inline-flex;
  81. gap: 1em;
  82. margin-top: 1.1em;
  83. align-items: center;
  84. }
  85. .dagshub-footer .legal .footer-item {
  86. color: rgba(220, 222, 243, 0.5);
  87. margin: auto 24px;
  88. }
  89. .dagshub-footer #footer-social {
  90. margin-right: auto;
  91. display: flex;
  92. margin-top: 4px;
  93. }
  94. .dagshub-footer h2 {
  95. font-family: 'Inter';
  96. font-style: normal;
  97. font-weight: 500;
  98. font-size: 14px;
  99. line-height: 20px;
  100. margin-top: 7px;
  101. width: 100%;
  102. /* identical to box height, or 143% */
  103. /* Secondary/State 200 */
  104. color: var(--secondary-200);
  105. }
  106. .dagshub-footer .links {
  107. display: flex;
  108. flex-direction: inherit;
  109. gap: 1em;
  110. }
  111. .dagshub-footer .social_link {
  112. padding: 11px;
  113. margin-right: 4px;
  114. }
  115. .dagshub-footer .social_link svg{
  116. height: 21px;
  117. width: 25px;
  118. fill: currentcolor;
  119. }
  120. /* MKDOCS CUSTOMIZATION STYLES */
  121. [data-md-color-scheme=default] .md-footer {
  122. background-color: #dfdfdf;
  123. color: var(--md-typeset-color);
  124. }
Tip!

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

Comments

Loading...