-
Notifications
You must be signed in to change notification settings - Fork 45
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 #136 from openxc/next
Next
- Loading branch information
Showing
22 changed files
with
411 additions
and
87 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
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
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
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
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,12 +1,58 @@ | ||
#page-contents { | ||
display: flex; | ||
justify-content: space-evenly; | ||
height: 100%; | ||
margin-top: 3%; | ||
} | ||
|
||
form { | ||
display: table; | ||
} | ||
|
||
.error { | ||
color: red; | ||
display: block; | ||
font-size: 0.85em; | ||
font-style: italic; | ||
} | ||
|
||
form li { | ||
list-style-type: none; | ||
display: table-row; | ||
} | ||
|
||
form label, input { | ||
display: table-cell; | ||
} | ||
|
||
#dashboardSettingsSubmitBtn { | ||
margin-left: 9%; | ||
} | ||
|
||
caption { | ||
font-size: 1.5em; | ||
margin-bottom: 4.5%; | ||
} | ||
|
||
table, th, td { | ||
text-align: left; | ||
border-spacing: 8px 1px; | ||
text-align: left; | ||
border-spacing: 8px 1px; | ||
} | ||
|
||
.metric { | ||
text-align: right; | ||
} | ||
} | ||
|
||
th:hover { | ||
cursor: pointer; | ||
background-color: #AAA; | ||
} | ||
|
||
table, th, td { | ||
border: 1px solid black; | ||
} | ||
|
||
table { | ||
padding-top: 2%; | ||
padding-bottom: 2%; | ||
} |
Oops, something went wrong.