Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

add grpc document #170

Merged
merged 1 commit into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion website/_data/learn_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- doc: committee
- doc: parameters

- title: Transactions
- title: Transaction
path: learn/transaction
items:
- doc: format
Expand All @@ -32,6 +32,11 @@
- doc: unbond
- doc: withdraw

- title: API Reference
path: learn/api
items:
- doc: grpc

# - title: Smart Contract
# path: learn/smart-contract
# items:
Expand Down
31 changes: 20 additions & 11 deletions website/_sass/_styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ $prefix: "pa-";
// @import "../../node_modules/bootstrap/scss/breadcrumb";
// @import "../../node_modules/bootstrap/scss/accordion";
// @import "../../node_modules/bootstrap/scss/pagination";
// @import "../../node_modules/bootstrap/scss/badge";
@import "../../node_modules/bootstrap/scss/badge";
@import "../../node_modules/bootstrap/scss/alert";
// @import "../../node_modules/bootstrap/scss/progress";
// @import "../../node_modules/bootstrap/scss/list-group";
// @import "../../node_modules/bootstrap/scss/close";
// @import "../../node_modules/bootstrap/scss/toasts";
// @import "../../node_modules/bootstrap/scss/modal"; // Requires transitions
@import "../../node_modules/bootstrap/scss/tooltip";
// @import "../../node_modules/bootstrap/scss/tooltip";
// @import "../../node_modules/bootstrap/scss/popover";
// @import "../../node_modules/bootstrap/scss/carousel";
// @import "../../node_modules/bootstrap/scss/spinners";
// @import "../../node_modules/bootstrap/scss/offcanvas"; // Requires transitions
// @import "../../node_modules/bootstrap/scss/placeholders";

// Helpers
// @import "../../node_modules/bootstrap/scss/helpers";
@import "../../node_modules/bootstrap/scss/helpers";

// Utilities
@import "../../node_modules/bootstrap/scss/utilities/api";
Expand Down Expand Up @@ -79,7 +79,7 @@ a {
text-decoration: none;

a:hover:not(.btn) {
color: $primary-color !important;
color: $primary-color !important;
}
}

Expand All @@ -95,6 +95,10 @@ h1 {
font-weight: 600;
}

h3 {
padding-top: 16px;
}

.motto {
.title {
font-weight: 600;
Expand Down Expand Up @@ -126,12 +130,12 @@ h1 {

.footer {
.text-muted {
color: $bg-color !important;
color: $bg-color !important;
font-size: 12px;
border-radius: 15px 50px 30px 5px;

a {
color: $bg-color !important;
color: $bg-color !important;
}
}
}
Expand Down Expand Up @@ -183,17 +187,21 @@ h1 {

&:not(.active):hover {
background-color: #808080 !important;
color: $bg-color !important;
color: $bg-color !important;
}
}

.active {
color: $bg-color !important;
color: $bg-color !important;
background-color: #404040 !important;
}
}

table {
thead {
font-weight: 700 !important;
}

tbody tr:nth-child(2n + 1) td {
background-color: #eee;
}
Expand All @@ -203,7 +211,7 @@ blockquote {
background: #eee;
border-left: 10px solid #ccc;
padding: 16px;
quotes: "\201C""\201D""\2018""\2019";
quotes: "\201C" "\201D" "\2018" "\2019";

&:before {
color: #ccc;
Expand All @@ -225,8 +233,8 @@ blockquote {
}

.footer {
background-color: $primary-color !important;
color: $bg-color !important;
background-color: $primary-color !important;
color: $bg-color !important;

.section {
font-size: 1.75rem;
Expand Down Expand Up @@ -292,6 +300,7 @@ blockquote {
padding-bottom: 10px;
color: #808080;
}

.content {
padding-top: 22px;
min-height: 600px;
Expand Down
4 changes: 3 additions & 1 deletion website/_sass/dark_mode.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@
}
}

.fa-linux { color: #ffffff; }
.fa-linux {
color: #ffffff;
}
}
Loading
Loading