-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move api styles to new file
- Loading branch information
1 parent
ff97ad6
commit a5ff942
Showing
3 changed files
with
56 additions
and
44 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#api-doc *:target { | ||
margin-top: -120px; | ||
padding-top: 120px; | ||
z-index: -1; | ||
} | ||
|
||
#api-doc section { | ||
padding-left: 20px; | ||
} | ||
|
||
@media all and (max-width: 1110px) { | ||
#api-doc section { | ||
padding-left: 0; | ||
} | ||
} | ||
|
||
/* ---- Titles ---- */ | ||
|
||
#api-doc h1 { | ||
font-weight: normal; | ||
} | ||
|
||
#api-doc>h3 { | ||
padding-top: 10px; | ||
padding-bottom: 5px; | ||
font-weight: bold; | ||
font-size: 24px; | ||
color: var(--menu-grey) | ||
} | ||
|
||
#api-doc h2 { | ||
font-weight: bold; | ||
font-size: 29px; | ||
margin: 40px 0 20px; | ||
} | ||
|
||
#api-doc section h3 { | ||
padding-top: 10px; | ||
padding-bottom: 5px; | ||
font-weight: bold; | ||
font-size: 18px; | ||
} | ||
|
||
#api-doc h4 { | ||
font-size: 16px; | ||
font-weight: bold; | ||
} | ||
|
||
#api-doc h5 { | ||
font-size: 14px; | ||
font-weight: bold; | ||
color: var(--menu-grey) | ||
} |