-
Notifications
You must be signed in to change notification settings - Fork 0
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
cd496e2
commit b8bfc19
Showing
12 changed files
with
103 additions
and
43 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
<link href="/static/style.css" rel="stylesheet" /> | ||
<link href="/static/style.css" rel="stylesheet" /> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
label: Glossary | ||
icon: "../static/img/glossary_icon.svg" | ||
icon: typography | ||
expanded: false | ||
order: 200 | ||
--- | ||
|
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,6 +1,6 @@ | ||
--- | ||
label: Metadata | ||
icon: project-roadmap | ||
icon: code-square | ||
expanded: false | ||
order: 500 | ||
--- | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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,14 +1,67 @@ | ||
.nav { | ||
background-color: #004900; /*Whatever color you want goes here, but in Hexadecimal form*/ | ||
color: #1122cc; /*The color of your font also goes here, but in hexadecimal form*/ | ||
a { | ||
text-align: left; | ||
color: #009100 | ||
} | ||
|
||
#docs-app { | ||
font-family: "Titillium Web", sans-serif; | ||
} | ||
|
||
#docs-app a { | ||
list-style-type: none; | ||
color: #009400; | ||
} | ||
|
||
#docs-site-header { | ||
background-image: url("./img/header.svg"); | ||
background-position: right; /* Center the image */ | ||
background-repeat: no-repeat; /* Do not repeat the image */ | ||
background-size: cover; /* Resize the background image to cover the entire container */ | ||
background-color: #effaefd2; | ||
|
||
} | ||
|
||
#docs-app nav { | ||
color: #a9ac01; | ||
font-weight: 300; | ||
} | ||
.sidebar { | ||
background-color: #FF7777; /*Whatever color you want goes here, but in Hexadecimal form*/ | ||
|
||
|
||
|
||
#docs-app aside { | ||
background-color: #454645; | ||
color: #ffffff; | ||
} | ||
|
||
#docs-app aside div { | ||
background-color:#454645; | ||
color: #ffffff; | ||
} | ||
|
||
|
||
#docs-app aside a { | ||
color: #ffffff; | ||
} | ||
|
||
|
||
|
||
#docs-app aside a:hover, #docs-app aside button:hover { | ||
color: #009100; | ||
|
||
} | ||
|
||
|
||
#sidebar-footer { | ||
background-color: #FF4900; /*Whatever color you want goes here, but in Hexadecimal form*/ | ||
color: #1122cc; /*The color of your font also goes here, but in hexadecimal form*/ | ||
} | ||
|
||
a | ||
{ | ||
text-align: left; | ||
color: #004900 | ||
} | ||
|
||
|
||
|
||
/* | ||
#docs-app #docs-sidebar-right { | ||
margin-top: 0; | ||
background-color: #e0e0e0; | ||
} | ||
*/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
module.exports = { | ||
content: ["./src/**/*.{html,js}"], | ||
theme: { | ||
extend: {}, | ||
}, | ||
plugins: [], | ||
} | ||
|