-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
331ddd4
commit 941cb01
Showing
2 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.example { | ||
h2, | ||
h3 { | ||
color: var(--color-text); | ||
margin-bottom: 10px; | ||
} | ||
|
||
p { | ||
color: var(--color-text); | ||
line-height: 1.6; | ||
margin-bottom: 20px; | ||
} | ||
|
||
ul { | ||
padding-left: 20px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
ul li { | ||
list-style-type: disc; | ||
margin-bottom: 5px; | ||
color: var(--primary); | ||
font-weight: bold; | ||
} | ||
|
||
code { | ||
background-color: var(--vtl-background); | ||
padding: 3px 6px; | ||
border-radius: 4px; | ||
font-size: 14px; | ||
font-family: "Courier New", Courier, monospace; | ||
color: var(--primary); | ||
font-weight: bold; | ||
} | ||
|
||
pre { | ||
background-color: var(--vtl-background-solid); | ||
padding: 15px; | ||
border-radius: 8px; | ||
overflow-x: auto; | ||
margin-bottom: 20px; | ||
border: 1px solid var(--vtl-background); | ||
box-shadow: 0 0 0 1px #fff3; | ||
} | ||
|
||
pre code { | ||
color: var(--primary); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters