Skip to content

Commit

Permalink
Add content right sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
sheilagomes committed Oct 4, 2023
1 parent 898dd33 commit fc99624
Show file tree
Hide file tree
Showing 6 changed files with 756 additions and 494 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
--bg-1: #F8F7FC;
--bg-2: #1155CC;
--bg-3: #F71963;
--bg-4: #5E6E84;
--bg-4: #5E6E84;
--bg-5: #A1AAB7;
--ff-regular: "VTEXTrust Regular";
}

Expand All @@ -21,6 +22,8 @@

body {
background: var(--bg-1);
padding: 2rem;
line-height: 1.6;
}

h1 {
Expand All @@ -38,26 +41,30 @@ h3 {
}

.text-link {
text-decoration-skip-ink: none;
-webkit-text-decoration-skip: none;
color: var(--bg-2);
text-decoration: underline;
}

.wrapper {
display: grid;
grid-template-columns: auto auto auto auto auto auto;
grid-gap: 0.2rem;
}

.doc-content {
padding: 6rem;
line-height: 1.5;
padding: 0 1rem;
grid-area: 1 / 1 / span 5 / span 1;
}

.intro-content {
padding: 1rem 0rem;
}

.italic-font{
.italic-font {
font-style: italic;
}

.bold-font {
.bold-text {
font-weight: bolder;
}

Expand All @@ -77,23 +84,43 @@ table {
font-size: 0.85rem;
}

.column-one {
width: 10.5rem;
li {
font-size: 0.9rem;
}

.column-two {
width: 4.3rem;
.bullet {
margin-left: 3rem;
}

.column-three {
width: 23rem;
aside {
position: sticky;
right: 0;
top: 0;
}

li {
.aside-content {
grid-area: 1 / 2 / span 1 / span 1;
padding: 0.5rem;
font-size: 0.8rem;
color: var(--bg-5);
line-height: 1.7;
}

.content {
font-size: 0.9rem;
font-weight: bold;
}

.bullet {
margin-left: 3rem;
line-height: 1.6;
.aside-list {
padding-left: 1rem;
border-left: 1px solid var(--bg-5);
list-style: none;
}

.aside-item {
color: var(--bg-5);
}

.aside-list a:hover {
color: var(--bg-3);
}
Loading

0 comments on commit fc99624

Please sign in to comment.