Skip to content

Commit

Permalink
feat: comecando docs tupa
Browse files Browse the repository at this point in the history
  • Loading branch information
victoriuptec committed Mar 5, 2024
0 parents commit b2e36b4
Show file tree
Hide file tree
Showing 53 changed files with 8,511 additions and 0 deletions.
94 changes: 94 additions & 0 deletions docs/css/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
.md-header{
background-color: #47D8E0;
color: #1848A0;
}

.md-nav {
background: rgba( 71, 216, 224, 0.05 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 6.5px );
-webkit-backdrop-filter: blur( 6.5px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.md-nav--secondary .md-nav__title {
background: rgba( 71, 216, 224, 0.05 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 6.5px );
-webkit-backdrop-filter: blur( 6.5px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}

body {
background-color: #06081E;
color: #e2f2f4;
}

a {
color: #00FFBF;
font-weight: 600;
}

a:hover {
color: #04d9ff;
}

.md-typeset code {
background-color: #003262;
color: #00FFBF;
border-radius: 10px;
}

.md-typeset h1 {
color: #47D8E0;
font-weight: 800;
}

.md-typeset a {
color: #00FFBF;
font-weight: 600;
}

.md-typeset h2 {
color: #e2f2f4;
font-weight: 700;
text-decoration: underline #00FFBF;
text-decoration-thickness: 2px;
text-underline-offset: 3px;
}

.md-nav__item .md-nav__link--active, .md-nav__item .md-nav__link--active code {
color: #47D8E0;
font-weight: 800;
}

.md-nav__link[for]:focus, .md-nav__link[for]:hover, .md-nav__link[href]:focus, .md-nav__link[href]:hover {
color: #47D8E0;
font-weight: 800;
}

.md-nav__link--passed {
color: #00FFBF;
font-weight: 800;

}

.md-nav--primary .md-nav__title {
background-color: transparent !important;
box-shadow: none !important;
}

.md-nav__title {
padding-top: 0.5rem;
color: #e2f2f4;
font-weight: 800;
text-decoration: underline #00FFBF;
text-decoration-thickness: 1.5px;
text-underline-offset: 3px;
padding-bottom: 0.6rem;
}

.md-nav__icon {
}
17 changes: 17 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Bem vindo ao Tupã ⚡️

For full documentation visit [mkdocs.org](https://www.mkdocs.org).

## Commands

* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs -h` - Print help message and exit.

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
21 changes: 21 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
site_name: Tupã Framework
site_url: https://github.com/Iuptec/tupa
nav:
- Home: index.md
- Como começar: getting_started.md
- Instalando: installation.md
- Como usar: usage.md
- Examplos: examples.md
- API: api.md
- Contribua: contributing.md
- Licença: license.md
- Sobre: about.md
theme:
name: "material"

plugins:
- search
- mkdocstrings

extra_css:
- css/extra.css
Loading

0 comments on commit b2e36b4

Please sign in to comment.