-
-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Outsource all inline scripts and styles (#635)
* Outsource all inline scripts and styles. Fixes #531. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1b23cd8
commit 415529c
Showing
71 changed files
with
2,051 additions
and
1,223 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,124 @@ | ||
body { | ||
font-family: FiraSans, "Helvetica Neue", Arial, sans-serif; | ||
background-color: #f3f3f3; | ||
margin: 0; | ||
font-weight: lighter; | ||
} | ||
|
||
pre { | ||
font-family: Fantasque; | ||
background-color: white !important; | ||
padding: 0.5em !important; | ||
margin: 0 !important; | ||
font-size: 14px; | ||
text-align: left; | ||
} | ||
|
||
code { | ||
font-family: Fantasque; | ||
background-color: white !important; | ||
padding: 0 !important; | ||
margin: 0 !important; | ||
font-size: 14px; | ||
|
||
} | ||
|
||
html { | ||
margin: 0; | ||
} | ||
|
||
#header { | ||
height: 50px; | ||
background-color: rgb(51, 51, 68); | ||
width: 100%; | ||
position: relative; | ||
padding: 0; | ||
|
||
|
||
} | ||
|
||
#header div { | ||
display: inline-block; | ||
} | ||
|
||
.menu { | ||
height: 50px; | ||
padding: 0; | ||
margin: 0; | ||
|
||
} | ||
|
||
.menu-item { | ||
height: 50px; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
margin: 0; | ||
margin-right: -4px; | ||
color: white; | ||
|
||
} | ||
|
||
.menu-item a { | ||
color: white !important; | ||
} | ||
|
||
#filter .menu-item { | ||
margin-right: 0px; | ||
} | ||
|
||
.selectable-menu-item { | ||
transition: background-color 0.15s ease, color 0.15s ease; | ||
|
||
} | ||
|
||
.selectable-menu-item:hover { | ||
background-color: #f3f3f3; | ||
cursor: pointer; | ||
color: black !important; | ||
} | ||
|
||
.selectable-menu-item:hover a { | ||
color: black !important; | ||
} | ||
|
||
.menu-item-selected { | ||
background-color: #f3f3f3; | ||
color: black !important; | ||
} | ||
|
||
.menu-item-selected a { | ||
color: black !important; | ||
} | ||
|
||
.menu-item-outer { | ||
display: table !important; | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
.menu-item-inner { | ||
display: table-cell !important; | ||
vertical-align: middle; | ||
width: 100%; | ||
} | ||
|
||
a:visited { | ||
color: black; | ||
} | ||
|
||
a { | ||
color: black; | ||
text-decoration: none; | ||
} | ||
|
||
#filter { | ||
height: 50px; | ||
position: absolute; | ||
right: 0; | ||
} | ||
|
||
.description { | ||
font-style: italic; | ||
font-size: 14px; | ||
margin-bottom: 5px; | ||
} |
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,39 @@ | ||
.wrapper { | ||
width: 100%; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.inner { | ||
margin: auto; | ||
width: 960px; | ||
} | ||
|
||
.cleardb-form .cleardb-form-wrapper{ | ||
margin-bottom: 20px; | ||
} | ||
|
||
.cleardb-form label { | ||
display: block; | ||
margin-bottom: 8px; | ||
} | ||
|
||
.cleardb-form .btn { | ||
background: #333344; | ||
color: #fff; | ||
padding: 10px 20px; | ||
border-radius: 2px; | ||
cursor: pointer; | ||
box-shadow: none; | ||
font-size: 16px; | ||
line-height: 20px; | ||
border: 0; | ||
min-width: 150px; | ||
text-align: center; | ||
} | ||
.cleardb-form label :last-child { | ||
margin-bottom: 0; | ||
} | ||
.msg { | ||
margin-top: 20px; | ||
color: #bac54b; | ||
} |
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 @@ | ||
#query-info-div { | ||
margin-top: 15px; | ||
} | ||
|
||
#query-info-div .timestamp-div { | ||
font-size: 13px; | ||
|
||
} | ||
|
||
#pyprofile-div { | ||
display: block; | ||
margin: auto; | ||
width: 960px; | ||
} | ||
|
||
.pyprofile { | ||
text-align: left; | ||
} | ||
|
||
a { | ||
color: #45ADA8; | ||
} | ||
|
||
a:visited { | ||
color: #45ADA8; | ||
} | ||
|
||
a:hover { | ||
color: #547980; | ||
} | ||
|
||
a:active { | ||
color: #594F4F; | ||
} | ||
|
||
#graph-div { | ||
padding: 25px; | ||
background-color: white; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
margin-top: 25px; | ||
width: 960px; | ||
text-align: center; | ||
} | ||
|
||
#percent { | ||
width: 20px; | ||
} | ||
|
||
svg { | ||
display: block; | ||
} |
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,32 @@ | ||
#traceback { | ||
overflow: visible; | ||
} | ||
|
||
#time-div { | ||
text-align: center; | ||
margin-bottom: 30px; | ||
} | ||
|
||
#query-div { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
} | ||
|
||
#query { | ||
text-align: left; | ||
margin: 0 auto; | ||
display: inline-block; | ||
} | ||
|
||
.line { | ||
width: 100%; | ||
display: inline-block; | ||
} | ||
|
||
.the-line { | ||
background-color: #c3c3c3; | ||
} | ||
|
||
pre { | ||
margin: 0; | ||
} |
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 @@ | ||
#query-info-div { | ||
margin-top: 15px; | ||
} | ||
|
||
#query-info-div .timestamp-div { | ||
font-size: 13px; | ||
|
||
} | ||
|
||
#pyprofile-div { | ||
display: block; | ||
margin: auto; | ||
width: 960px; | ||
} | ||
|
||
.pyprofile { | ||
text-align: left; | ||
} | ||
|
||
a { | ||
color: #45ADA8; | ||
} | ||
|
||
a:visited { | ||
color: #45ADA8; | ||
} | ||
|
||
a:hover { | ||
color: #547980; | ||
} | ||
|
||
a:active { | ||
color: #594F4F; | ||
} | ||
|
||
#graph-div { | ||
padding: 25px; | ||
background-color: white; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
margin-top: 25px; | ||
width: 960px; | ||
text-align: center; | ||
} | ||
|
||
#percent { | ||
width: 20px; | ||
} | ||
|
||
svg { | ||
display: block; | ||
} |
Oops, something went wrong.