From c08b0028de43d6a34a28dc55a42fe5aa623a2c97 Mon Sep 17 00:00:00 2001 From: KZacharski Date: Sat, 26 Aug 2023 17:47:05 +0200 Subject: [PATCH] buttons buttons buttons --- .../ic_fluent_chevron_right_24_filled.svg | 1 + docs/docs/introduction.html | 40 ++++++++++++ docs/docs/style.css | 61 +++++++++++++++++++ 3 files changed, 102 insertions(+) create mode 100644 docs/docs/assets/ic_fluent_chevron_right_24_filled.svg diff --git a/docs/docs/assets/ic_fluent_chevron_right_24_filled.svg b/docs/docs/assets/ic_fluent_chevron_right_24_filled.svg new file mode 100644 index 0000000..bdc7e2d --- /dev/null +++ b/docs/docs/assets/ic_fluent_chevron_right_24_filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/docs/introduction.html b/docs/docs/introduction.html index 927988b..85f728c 100644 --- a/docs/docs/introduction.html +++ b/docs/docs/introduction.html @@ -22,6 +22,46 @@

diji currently works on Linux, macOS and Windows, supporting both amd64/i386 and arm64/arm architectures (except for macOS because it doesn't currently support any 32-bit architectures). It's also possible to run it on other operating systems/architectures by building it from source which thanks to it being written in golang is very easy.

Downloading diji

Download the file corresponding with your OS and architecture from GitHub releases then proceed to Installation.

+ + +
+ + + + + +
+ + + + + diff --git a/docs/docs/style.css b/docs/docs/style.css index 5730366..b25706f 100644 --- a/docs/docs/style.css +++ b/docs/docs/style.css @@ -193,12 +193,73 @@ color: white; "getstarted install" "favicon config"; }} + + /* .container2 { display: grid; + + grid-template-columns: 1fr; + grid-template-rows: 1fr 1fr; + gap: 20px 0; + margin-top: 30px; + margin-bottom: 50px; + grid-auto-flow: column; + grid-template-areas: + "prev" + "next"; + } + + @media only screen and (min-width: 25em) { .container2 { + grid-template-columns: 1fr 1fr; + grid-template-rows: 1fr; + gap: 20px 20px; + + + + margin-top: 30px; + grid-auto-flow: row; + grid-template-areas: + "prev next"; + }}*/ + + .container2 { + display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: 1fr; + gap: 0 20px; + margin-top: 30px; + margin-bottom: 50px; + grid-auto-flow: row; + grid-template-areas: + "prev next"; + } .getstarted { grid-area: getstarted; background-color: rgb(0, 0, 0); } + + .prev { grid-area: prev; + background-color: rgb(0, 0, 0); + + + } + .next { grid-area: next; + background-color: rgb(0, 0, 0); + + + } + + @media only screen and (max-width: 25em) { .nep { + font-weight: 400; + font-size:medium; + } + .nepar { + display: none; + } + .nep2 { + height: 25px; + } + } .install { grid-area: install; background-color: #000;}