-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.scss
More file actions
113 lines (94 loc) · 1.89 KB
/
Copy pathstyle.scss
File metadata and controls
113 lines (94 loc) · 1.89 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
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
---
---
//
// IMPORTS
//
@import "variables";
body {
line-height: 1;
}
summary {
list-style: none;
}
summary::-webkit-details-marker {
display: none;
}
details[open] .faq-marker {
transform: rotate(45deg);
}
.faq-marker {
display: inline-block;
transition: transform 0.15s ease;
}
.pricing-tooltip {
position: relative;
display: inline-flex;
}
.pricing-tooltip__label {
cursor: help;
text-decoration: underline;
text-decoration-style: dotted;
text-underline-offset: 0.25rem;
}
.pricing-tooltip__label:focus {
outline: 2px solid #4f46e5;
outline-offset: 2px;
}
.pricing-tooltip__body {
position: absolute;
left: 0;
top: 100%;
z-index: 50;
display: none;
width: 16rem;
margin-top: 0.5rem;
padding: 0.5rem 0.75rem;
border-radius: 0.375rem;
background: #111827;
color: #ffffff;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
font-size: 0.75rem;
font-weight: 400;
line-height: 1.25rem;
pointer-events: none;
}
.pricing-tooltip:hover .pricing-tooltip__body,
.pricing-tooltip:focus-within .pricing-tooltip__body {
display: block;
}
.hero-headline-line {
min-height: 1.2em;
}
.hero-headline-shell {
position: relative;
display: block;
}
.hero-headline-sizer {
display: block;
visibility: hidden;
}
.hero-headline-live {
position: absolute;
inset: 0;
opacity: 1;
transition: opacity 0.5s ease;
}
.hero-headline-caret {
display: inline-block;
width: 0.08em;
height: 0.95em;
margin-left: 0.08em;
vertical-align: -0.08em;
background: currentColor;
animation: hero-caret-blink 1s steps(1) infinite;
}
@keyframes hero-caret-blink {
50% {
opacity: 0;
}
}
// Syntax highlighting @import is at the bottom of this file
// Settled on moving the import of syntax highlighting to the bottom of the CSS
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
@import "highlights";
@import "svg-icons";