Skip to content

Commit

Permalink
doc: add a simple documentation (#91)
Browse files Browse the repository at this point in the history
* added some parts of documentation

* Updatde documentation
  • Loading branch information
elolelo committed Nov 20, 2023
1 parent d434c5a commit 1c92dbe
Show file tree
Hide file tree
Showing 8 changed files with 709 additions and 0 deletions.
570 changes: 570 additions & 0 deletions documentation/index.html

Large diffs are not rendered by default.

139 changes: 139 additions & 0 deletions documentation/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}

body {
display: block;
height: 100%;
width: 100%;
background: #f5f6fa;
}

#navbar {
position: fixed;
top: 0;
left: 0;
padding: 10px;
height: 100%;
min-width: 350px;
color: #ffffff;
border: none;
background-color: #174782;
}

#navbar header {
margin: 10px 0;
font-size: 28px;
font-weight: 500;
letter-spacing: 1px;
word-spacing: 5px;

}

#navbar ul {
height: 88%;
overflow-x: hidden;
overflow-y: auto;
}

#navbar li {
padding: 10px 20px;
list-style-type: none;
}

#navbar a {
font-size: 17px;
text-decoration: none;
color: #bdc3c9;
}

#main-doc {
margin-left: 350px;
padding: 100px 50px;
text-align: justify;
}


#main-doc p {
margin-top: 20px;
}

#main-doc li {
margin: 10px 50px;
}

code {
display: block;
padding: 20px;
line-height: 30px;
font-size: 15px;
font-weight: 500;
letter-spacing: 1px;
word-spacing: 5px;
color: #abb2bf;
border-radius: 12px;
background: #353a40;
}

.comment {
color: #5c6370;
}

.keyword {
color: #c678dd;
}

.string {
color: #98c379;
}

.number {
color: #d19a66;
}

.operator {
color: #56b6c2;
}

@media screen and (width < 800px) {
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

#navbar {
position: relative;
width: 100%;
min-height: 860px;
}

#navbar header {
font-size: 20px;
text-align: center;
border-bottom: 2px solid #ffffff;
padding-bottom: 20px;
}

header{
text-decoration: underline;
color: #c678dd;
font-size:medium
}

#navbar li a {
font-size: 20px;
letter-spacing: 1px;
word-spacing: 2px;
}

#main-doc {
margin-left: 0;
}
}
Binary file added imgs/agentverse
Binary file not shown.
Binary file added imgs/docs/Python-virtual-env.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imgs/docs/environmentKeys.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imgs/docs/prisoner_env.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imgs/docs/simulations.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imgs/docs/ts_env.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1c92dbe

Please sign in to comment.