-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.scss
More file actions
70 lines (56 loc) · 1.05 KB
/
style.scss
File metadata and controls
70 lines (56 loc) · 1.05 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
---
---
//
// 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;
}
.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;
}
.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";