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

product-sublanding.scss 962 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
50
51
52
53
54
  1. .feature-track {
  2. li {
  3. width: 280px;
  4. }
  5. }
  6. .learning-track {
  7. &--description {
  8. min-height: 1em * $body-line-height * 3;
  9. }
  10. }
  11. .learning-track-container {
  12. width: 440px;
  13. }
  14. .step-circle-text {
  15. color: var(--color-auto-purple-5);
  16. }
  17. .description-text {
  18. opacity: 0.7;
  19. line-height: 1.8em;
  20. }
  21. .uppercase-category-text {
  22. letter-spacing: 0.08em;
  23. font-size: 0.8em;
  24. }
  25. @mixin truncate($maxLine) {
  26. .truncate-overflow-#{$maxLine} {
  27. display: -webkit-box;
  28. -webkit-line-clamp: $maxLine;
  29. -webkit-box-orient: vertical;
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. }
  33. }
  34. @include truncate(3);
  35. @include truncate(8);
  36. .fade-background-left {
  37. background: linear-gradient(to right, var(--color-bg-tertiary), transparent);
  38. }
  39. .fade-background-right {
  40. background: linear-gradient(to left, var(--color-bg-tertiary), transparent);
  41. }
  42. .fade-background-bottom {
  43. background: linear-gradient(to top, var(--color-bg-tertiary), transparent);
  44. }
Tip!

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

Comments

Loading...