| 1 |
@import "tailwindcss" source(none) important; |
| 2 |
@import "../tailwind.css" source(none); |
| 3 |
@source "."; |
| 4 |
|
| 5 |
:root { |
| 6 |
color-scheme: only light; |
| 7 |
} |
| 8 |
|
| 9 |
.completion:after { |
| 10 |
content: ""; |
| 11 |
display: block; |
| 12 |
position: sticky; |
| 13 |
bottom: 0; |
| 14 |
left: 0; |
| 15 |
width: 100%; |
| 16 |
height: 1em; |
| 17 |
background: linear-gradient( |
| 18 |
to bottom, |
| 19 |
rgba(240, 240, 240, 0), |
| 20 |
rgb(240, 240, 240) |
| 21 |
); |
| 22 |
pointer-events: none; |
| 23 |
} |
| 24 |
|
| 25 |
.completion h1 { |
| 26 |
font-size: 1em; |
| 27 |
font-weight: 600; |
| 28 |
margin-top: 0.67em; |
| 29 |
margin-bottom: 0.67em; |
| 30 |
line-height: 1em; |
| 31 |
} |
| 32 |
|
| 33 |
.completion h1:first-child { |
| 34 |
margin-top: 0; |
| 35 |
} |
| 36 |
|
| 37 |
.completion h2 { |
| 38 |
font-size: 1em; |
| 39 |
font-weight: 600; |
| 40 |
margin-top: 0.67em; |
| 41 |
margin-bottom: 0.67em; |
| 42 |
line-height: 1em; |
| 43 |
} |
| 44 |
|
| 45 |
.completion h3 { |
| 46 |
font-size: 1em; |
| 47 |
font-weight: 600; |
| 48 |
margin-top: 0.67em; |
| 49 |
margin-bottom: 0.67em; |
| 50 |
line-height: 1em; |
| 51 |
text-transform: none; |
| 52 |
} |
| 53 |
|
| 54 |
.completion p:last-child { |
| 55 |
margin-bottom: 0; |
| 56 |
} |
| 57 |
/* no-prefix */ |
| 58 |
#extendify-draft\:draft, |
| 59 |
.extendify-draft.h-full { |
| 60 |
/* minus the bottom status bar */ |
| 61 |
height: calc(100% - 25px) !important; |
| 62 |
} |
| 63 |
|
| 64 |
@keyframes extendifyDraftPulse { |
| 65 |
0%, |
| 66 |
100% { |
| 67 |
opacity: 1; |
| 68 |
} |
| 69 |
50% { |
| 70 |
opacity: 0.5; |
| 71 |
} |
| 72 |
} |
| 73 |
@keyframes extendifyDraftCallout { |
| 74 |
0%, |
| 75 |
100% { |
| 76 |
opacity: 1; |
| 77 |
transform: scale(1); |
| 78 |
} |
| 79 |
50% { |
| 80 |
opacity: 0.7; |
| 81 |
transform: scale(1.01); |
| 82 |
} |
| 83 |
} |
| 84 |
|
| 85 |
.animate-pulse { |
| 86 |
animation: extendifyDraftPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; |
| 87 |
} |
| 88 |
.animate-pulse-flash { |
| 89 |
animation: extendifyDraftCallout 0.5s cubic-bezier(0.42, 0, 0.58, 1); |
| 90 |
} |
| 91 |
|