-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #207 from fga-eps-mds/feature/docapi
Documentação da API
- Loading branch information
Showing
11 changed files
with
414 additions
and
103 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,34 +1,137 @@ | ||
body{ | ||
font-family: 'Nunito Sans', sans-serif; | ||
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"; | ||
body { | ||
font-family: "Poppins", sans-serif; | ||
background: #fafafa; | ||
} | ||
.navbar{ | ||
padding: .7em 10% .7em 10%; | ||
background-color: #17c13d; | ||
|
||
.imgql { | ||
width: 1050; | ||
height: 400; | ||
padding-top: 10px; | ||
padding-bottom: 50px; | ||
} | ||
.imgquery { | ||
padding-bottom: 30px; | ||
padding-top: 30px; | ||
} | ||
|
||
p { | ||
font-family: "Poppins", sans-serif; | ||
font-size: 1.1em; | ||
font-weight: 300; | ||
line-height: 1.7em; | ||
color: #999; | ||
} | ||
|
||
a, | ||
a:hover, | ||
a:focus { | ||
color: inherit; | ||
text-decoration: none; | ||
transition: all 0.3s; | ||
} | ||
|
||
.line { | ||
width: 100%; | ||
height: 1px; | ||
border-bottom: 1px dashed #ddd; | ||
margin: 40px 0; | ||
} | ||
|
||
.navbar .nav-item .nav-link { | ||
color: white; | ||
padding-right: 1em; | ||
font-weight: bold; | ||
.wrapper { | ||
display: flex; | ||
width: 100%; | ||
} | ||
.container-doc{ | ||
margin-top: 30px; | ||
|
||
#sidebar { | ||
width: 250px; | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
height: 100vh; | ||
z-index: 999; | ||
background: #04471c; | ||
color: #fff; | ||
transition: all 0.3s; | ||
} | ||
|
||
#sidebar.active { | ||
margin-left: -250px; | ||
} | ||
|
||
#sidebar .sidebar-header { | ||
padding: 20px; | ||
background: #0d2818; | ||
} | ||
#irapi { | ||
border-bottom: 1px solid #0d2818; | ||
} | ||
.imgql{ | ||
width:1050; | ||
height:400; | ||
padding-top:10px; | ||
padding-bottom: 50px; | ||
|
||
#sidebar ul.components { | ||
padding: 20px 0; | ||
background: #04471c; | ||
} | ||
.topics{ | ||
padding-top:10px; | ||
padding-bottom: 10px; | ||
|
||
#sidebar ul p { | ||
color: #fff; | ||
padding: 10px; | ||
} | ||
.imgquery{ | ||
padding-bottom: 30px; | ||
padding-top: 30px; | ||
|
||
#sidebar ul li a { | ||
padding: 10px; | ||
font-size: 1.1em; | ||
display: block; | ||
} | ||
|
||
#sidebar ul li a:hover { | ||
color: #0d2818; | ||
background: #fff; | ||
} | ||
|
||
#sidebar ul li.active > a, | ||
a[aria-expanded="true"] { | ||
color: #fff; | ||
background: #0d2818; | ||
} | ||
|
||
ul ul a { | ||
font-size: 0.9em !important; | ||
padding-left: 30px !important; | ||
background: #0d2818; | ||
} | ||
|
||
#content { | ||
width: calc(100% - 250px); | ||
padding: 40px; | ||
min-height: 100vh; | ||
transition: all 0.3s; | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
text-align: justify; | ||
text-justify: inter-word; | ||
} | ||
|
||
#content.active { | ||
width: 100%; | ||
} | ||
|
||
#content h2, | ||
h4 { | ||
padding-bottom: 20px; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
#sidebar { | ||
margin-left: -250px; | ||
} | ||
#sidebar.active { | ||
margin-left: 0; | ||
} | ||
#content { | ||
width: 100%; | ||
} | ||
#content.active { | ||
width: calc(100% - 250px); | ||
} | ||
} | ||
.content{ | ||
text-align: justify; | ||
text-justify: inter-word; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
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.
File renamed without changes
File renamed without changes
Oops, something went wrong.