Skip to content

Commit ce0237a

Browse files
committed
WIP
1 parent 9c8a642 commit ce0237a

2 files changed

Lines changed: 76 additions & 2 deletions

File tree

assets/scss/common/_variables.scss

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ $color-btn-text: $white;
3535
$starfleit: #642EFF;
3636
$starfleit-primary: #00ffd1;
3737
$starfleit-haze: #d4ceff;
38+
$starfleit-lighten: lighten($starfleit, 5%);
3839
$primary: $starfleit-primary;
3940

4041
// Options
@@ -203,9 +204,54 @@ body {
203204
}
204205

205206
body .navbar {
206-
z-index: 1000;
207207
background-color: rgba(100, 46, 255, 0.95);
208-
border-bottom: 1px solid $gray-200;
208+
border-bottom: 1px solid $starfleit-lighten;
209+
}
210+
211+
body .offcanvas-header {
212+
border-bottom: 1px solid $starfleit-lighten;
213+
}
214+
215+
body .footer {
216+
border-top: 1px solid $starfleit-lighten;
217+
}
218+
219+
body .docs-navigation {
220+
border-top: 1px solid $starfleit-lighten;
221+
}
222+
223+
body .page-links li:not(:first-child) {
224+
border-top: 1px dashed $starfleit-lighten;
225+
}
226+
227+
body .docs-sidebar {
228+
border-right: 1px solid $starfleit-lighten;
229+
}
230+
231+
body .docs-links,
232+
body .docs-toc {
233+
scrollbar-width: thin;
234+
scrollbar-color: $starfleit;
235+
}
236+
237+
body .docs-links::-webkit-scrollbar-track,
238+
body .docs-toc::-webkit-scrollbar-track {
239+
background: $starfleit;
240+
}
241+
242+
body .docs-links::-webkit-scrollbar-thumb,
243+
body .docs-toc::-webkit-scrollbar-thumb {
244+
background: $starfleit;
245+
}
246+
247+
body .docs-links:hover::-webkit-scrollbar-thumb,
248+
body .docs-toc:hover::-webkit-scrollbar-thumb {
249+
background: $starfleit-primary;
250+
}
251+
252+
body .docs-links::-webkit-scrollbar-thumb:hover,
253+
body .docs-toc::-webkit-scrollbar-thumb:hover {
254+
background: $starfleit-primary;
209255
}
210256

211257
body .form-control.is-search {
@@ -242,3 +288,7 @@ body .text-muted {
242288
body .btn-toggle:before {
243289
content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280, 255, 209, 0.75%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
244290
}
291+
292+
body .alert-doks {
293+
background-color: $starfleit-haze;
294+
}

content/en/docs/introduction/about.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,30 @@ weight: 10
66
STARFLEIT is a [Uniswap](https://uniswap.org/)-inspired automated market-maker (AMM) protocol implemented with smart contracts on the Fetch.ai blockchain. This enables a decentralized on-chain exchange for the various assets involved in Fetch.ai ecosystem.
77
***
88

9+
{{< alert >}}
10+
**Normal**
11+
12+
STARFLEIT is ...
13+
{{< /alert >}}
14+
15+
{{< alert context="info" >}}
16+
**Info**
17+
18+
STARFLEIT is ...
19+
{{< /alert >}}
20+
21+
{{< alert context="warning" >}}
22+
**Warning**
23+
24+
STARFLEIT is ...
25+
{{< /alert >}}
26+
27+
{{< alert context="danger" >}}
28+
**Danger**
29+
30+
STARFLEIT is ...
31+
{{< /alert >}}
32+
933
## Participants
1034

1135
Users can participate in STARFLEIT as traders, liquidity providers, or both.

0 commit comments

Comments
 (0)