-
Notifications
You must be signed in to change notification settings - Fork 7
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
4c73d80
commit 0aee85a
Showing
3 changed files
with
187 additions
and
80 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 |
---|---|---|
@@ -1,46 +1,55 @@ | ||
.walkthrough { | ||
border: solid 3px var(--color-secondary); | ||
:host .walkthrough { | ||
padding: 30px; | ||
margin: 30px auto; | ||
border-radius: 10px; | ||
width: 60%; | ||
min-height: 300px; | ||
border-radius: var(--radius-5); | ||
width: 98%; | ||
min-height: 1000px; | ||
color: var(--color-white); | ||
background-color: var(--color-accent); | ||
background-color: var(--color-secondary); | ||
} | ||
|
||
.walkthrough h3 { | ||
padding: 0 20px; | ||
display: block; | ||
font-size: 1.5em; | ||
text-align: center; | ||
width: 90%; | ||
margin: 10px auto; | ||
.row { | ||
display: flex; | ||
} | ||
|
||
.walkthrough div pre { | ||
display: inline-block; | ||
.column-left { | ||
flex: 40%; | ||
} | ||
|
||
.column-right { | ||
flex: 60%; | ||
width: 60%; | ||
border-radius: 10px; | ||
background-color: var(--color-secondary); | ||
padding: 15px; | ||
overflow: auto; | ||
} | ||
|
||
.walkthrough ol { | ||
list-style-type: none; | ||
display: inline-block; | ||
width: 30%; | ||
vertical-align: top; | ||
font-size: 1.5rem; | ||
.card { | ||
border-radius: var(--radius-4); | ||
padding: 5px; | ||
} | ||
|
||
.walkthrough ol li { | ||
h2 { | ||
font-size: var(--font-size-fluid-3); | ||
font-weight: bold; | ||
} | ||
|
||
h3 { | ||
color: var(--color-gray); | ||
} | ||
|
||
h4 { | ||
font-size: var(--font-size-fluid-1); | ||
font-weight: bold; | ||
margin: 5px 0; | ||
cursor: pointer; | ||
} | ||
|
||
.walkthrough ol li.active { | ||
background-color: var(--color-secondary); | ||
border-radius: 5px; | ||
padding-left: 5px; | ||
p { | ||
margin: 0; | ||
padding: 15px; | ||
width: 90%; | ||
text-align: left; | ||
font-size: var(--font-size-1); | ||
background-color: #151818; | ||
min-height: 100px; | ||
color: var(--color-gray); | ||
border-radius: var(--radius-2); | ||
} |
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
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