-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/SK-728 | Move Studio docs to Fedn docs #555
Merged
Merged
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
8866489
added custom.css and logo
niklastheman 71eb1f3
refactor
niklastheman d9dfcac
links fit content
niklastheman 314b1a8
changed layout
niklastheman c3b5680
apiclient
niklastheman 5fa16d7
Api client docs updated
niklastheman 2506d92
Studio docs added
niklastheman e5bc634
added favicon
niklastheman 31cf908
merge
niklastheman 4752f6a
use svg logo
niklastheman a82d9d9
updates after comments
niklastheman 45b24dc
update from comments
niklastheman dca9012
studio docs update
niklastheman 9524a0c
start training session
niklastheman 9aa1e17
correct spelling
niklastheman 0d54291
Update studio.rst
ahellander File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* inputs */ | ||
|
||
.wy-side-nav-search input[type=text] { | ||
box-shadow: 0 0 6px 0px var(--scaleout-grey-6); | ||
border-color: var(--scaleout-grey-6); | ||
} | ||
|
||
/* lists */ | ||
|
||
.rst-content .section ul, | ||
.rst-content .toctree-wrapper ul, | ||
.rst-content section ul, | ||
.wy-plain-list-disc, | ||
article ul { | ||
list-style: none; | ||
line-height: 16px; | ||
margin-bottom: 16px; | ||
} | ||
|
||
.rst-content .section ul li, | ||
.rst-content .toctree-wrapper ul li, | ||
.rst-content section ul li, | ||
.wy-plain-list-disc li, | ||
article ul li { | ||
list-style: none; | ||
margin-left: 16px; | ||
} | ||
|
||
|
||
.rst-content .section ul li li, | ||
.rst-content .toctree-wrapper ul li li, | ||
.rst-content section ul li li, | ||
.wy-plain-list-disc li li, | ||
article ul li li { | ||
list-style: none; | ||
} | ||
|
||
/* buttons */ | ||
|
||
.btn { | ||
box-shadow: 0 0 6px 0px var(--scaleout-grey-6); | ||
border-color: var(--scaleout-grey-6); | ||
border-radius: 8px; | ||
} | ||
|
||
.btn-neutral { | ||
background: white !important; | ||
} | ||
|
||
.highlight { | ||
background: var(--scaleout-grey-1) !important; | ||
} | ||
|
||
img { | ||
box-shadow: 0 0 6px 0px var(--scaleout-grey-6); | ||
} | ||
|
||
img.logo { | ||
box-shadow: none; | ||
} |
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,112 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap'); | ||
|
||
:root { | ||
--scaleout-black: #191919; | ||
--scaleout-black-rgb: 25, 25, 25; | ||
--scaleout-red: #E0746D; | ||
--scaleout-red-rgb: 224, 116, 109; | ||
--scaleout-yellow: #EBD886; | ||
--scaleout-yellow-rgb: 235, 216, 134; | ||
--scaleout-green: #81B967; | ||
--scaleout-green-rgb: 129, 185, 103; | ||
--scaleout-white: #FFFFFF; | ||
--scaleout-white-rgb: 255, 255, 255; | ||
--scaleout-grey-1: #F8F8F8; | ||
--scaleout-grey-1-rgb: 248, 248, 248; | ||
--scaleout-grey-2: #F2F5F9; | ||
--scaleout-grey-2-rgb: 242, 245, 249; | ||
--scaleout-grey-3: #F2F6F5; | ||
--scaleout-grey-3-rg: 242, 246, 245; | ||
--scaleout-grey-4: #FEFAE9; | ||
--scaleout-grey-4-rgb: 254, 250, 233; | ||
--scaleout-grey-5: #F6EDE4; | ||
--scaleout-grey-5-rgb: 246, 237, 228; | ||
--scaleout-grey-6: #DDDDDD; | ||
--scaleout-grey-6-rgb: 221, 221, 221; | ||
} | ||
|
||
body { | ||
font-family: "Manrope", sans-serif; | ||
font-optical-sizing: auto; | ||
font-weight: 300; | ||
font-style: normal; | ||
} | ||
|
||
a { | ||
color: var(--scaleout-black); | ||
text-decoration: none; | ||
display: inline-block; | ||
} | ||
|
||
|
||
a::after { | ||
content: ''; | ||
display: block; | ||
width: 0; | ||
height: 1px; | ||
background: #000; | ||
transition: width .4s; | ||
} | ||
|
||
.wy-side-scroll a::after, | ||
a.image-reference::after { | ||
content: none; | ||
transition: none; | ||
} | ||
|
||
a:hover::after, | ||
a:focus::after, | ||
a.active::after { | ||
width: 100%; | ||
} | ||
|
||
a:hover, | ||
a:visited { | ||
color: var(--scaleout-black); | ||
} | ||
|
||
.rst-content .toctree-wrapper>p.caption, | ||
span.caption-text, | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6, | ||
legend { | ||
margin-top: 0; | ||
font-weight: 500; | ||
font-family: Manrope, Roboto Slab, ff-tisa-web-pro, Georgia, Arial, sans-serif; | ||
color: var(--scaleout-black); | ||
} | ||
|
||
.wy-menu-vertical a:hover { | ||
background-color: var(--scaleout-white); | ||
cursor: pointer; | ||
} | ||
|
||
.wy-menu-vertical a { | ||
color: var(--scaleout-black); | ||
display: inline-block; | ||
} | ||
|
||
.rst-content .toctree-wrapper ul li.toctree-l1>a { | ||
font-weight: 500; | ||
} | ||
|
||
.wy-menu-vertical li.current a:hover { | ||
background: var(--scaleout-white); | ||
} | ||
|
||
a.reference.internal { | ||
width: fit-content; | ||
} | ||
|
||
.caption-text { | ||
opacity: 0.5; | ||
font-weight: 900 !important; | ||
} | ||
|
||
.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a { | ||
background: none !important; | ||
} |
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,38 @@ | ||
div.wy-nav-content { | ||
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; | ||
max-width: 80%; | ||
} | ||
|
||
nav.wy-nav-side { | ||
background-color: var(--scaleout-white); | ||
background: var(--scaleout-white); | ||
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; | ||
|
||
} | ||
|
||
div.wy-side-nav-search { | ||
background-color: var(--scaleout-white); | ||
|
||
} | ||
|
||
.wy-menu-vertical li.current { | ||
background: var(--scaleout-white); | ||
} | ||
|
||
.wy-menu-vertical li.toctree-l2.current>a { | ||
background: var(--scaleout-white); | ||
} | ||
|
||
.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a { | ||
background: var(--scaleout-white); | ||
} | ||
|
||
.wy-menu-vertical li.current a { | ||
color: var(--scaleout-black); | ||
border: 0; | ||
padding: 0.4045em 2.427em; | ||
} | ||
|
||
.wy-menu-vertical li.toctree-l1.current>a { | ||
border: 0; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confusing, the APIClient is part of the fedn package, which is installed from pip?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed