FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
structeezy-docs/src/components/tutorial/PreCheck.astro at main · thewebforge/structeezy-docs · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
thewebforge
/
structeezy-docs
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
0
Code
Issues
8
Pull requests
1
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
structeezy-docs
/
src
/
components
/
tutorial
/
PreCheck.astro
Copy path
More file actions
More file actions
Latest commit
History
History
History
71 lines (62 loc) · 1.42 KB
Breadcrumbs
structeezy-docs
/
src
/
components
/
tutorial
/
PreCheck.astro
Copy path
File metadata and controls
71 lines (62 loc) · 1.42 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
---
import
{
Icon
}
from
"
@astrojs/starlight/components
"
;
import
{
getTranslations
}
from
"
~/utils
"
;
const
{ slug }
=
Astro
.
params
;
const
labels
=
getTranslations
(
slug
);
---
<
div
class
=
"
goals
"
>
<
p
class
=
"
title
"
>
<
span
class
=
"
icon
"
aria-hidden
=
"
true
"
>
<
Icon
name
=
"
approve-check-circle
"
/>
</
span
>
{
labels
[
"
tutorial.getReady
"
]
}
</
p
>
<
slot
/>
</
div
>
<
style
>
.goals {
--o-color-hue: var(--o-hue-green);
padding: 1rem;
background-color: var(--sl-color-accent-low);
color: var(--sl-color-white);
border-left: 0.25rem solid var(--sl-color-accent);
/* Indicates the aside boundaries for forced colors users, transparent is changed to a solid color */
outline: 1px solid transparent;
}
@media (min-width: 50em) {
.goals {
padding: 1em;
margin-inline: 0;
}
}
@media (min-width: 72em) {
.goals {
font-size: 1.125rem;
}
}
.title {
display: grid;
grid-template-columns: auto 1fr;
gap: 0.5rem;
align-items: center;
line-height: 1;
margin-bottom: 1em;
font-size: 1.125em;
letter-spacing: 0.05em;
font-weight: bold;
text-transform: uppercase;
color: var(--sl-color-accent-high);
}
.icon svg {
width: 1.5em;
height: 1.5em;
vertical-align: middle;
fill: currentcolor;
}
.goals > :global(ul) {
padding-inline-start: 1.5em;
}
.goals > :global(ul > * + *) {
margin-top: 0.5em;
}
</
style
>
Back
|
FazBrowse Home
|
New Git URL