This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
532 additions
and
243 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
body { | ||
margin: 0; | ||
border: 0; | ||
padding: 0; | ||
font: 15px sans-serif; | ||
position: relative; | ||
width: 100vw; | ||
height: 100vh; | ||
overflow: hidden; | ||
} | ||
#dashboard-nav { | ||
margin: 0; | ||
border: 0; | ||
padding: 0; | ||
position: absolute; | ||
top: 0; | ||
width: 100vw; | ||
height: 50px; | ||
z-index: 10; | ||
} | ||
#dashboard-nav-widgets { | ||
margin: 0; | ||
border-bottom: 1px solid #ccc; | ||
padding: 4px 0 0 0; | ||
white-space: nowrap; | ||
background-color: white; | ||
} | ||
#dashboard-nav-widgets span { | ||
padding: 0 0.5em; | ||
font-size: larger; | ||
} | ||
.tabButton { | ||
margin: 0; | ||
border: 1px solid #ccc; | ||
border-top-left-radius: 3px; | ||
border-top-right-radius: 3px; | ||
padding: 4px; | ||
display: inline-block; | ||
position: relative; | ||
top: 1px; | ||
color: black; | ||
background-color: #eee; | ||
font: inherit; | ||
cursor: pointer; | ||
text-decoration: none; | ||
} | ||
.tabButton:focus { | ||
outline: 0; | ||
} | ||
.tabButton:active,.tabButton:visited { | ||
color: inherited; | ||
} | ||
.tabButton.selected { | ||
border-bottom: 1px solid white; | ||
background-color: white; | ||
} | ||
iframe { | ||
margin: 0; | ||
border: 0; | ||
padding: 0; | ||
background-color: transparent; | ||
overflow: auto; | ||
position: absolute; | ||
top: 50px; | ||
width: 100%; | ||
height: calc(100% - 50px); | ||
} |
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,18 @@ | ||
body { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100vh; | ||
justify-content: space-between; | ||
} | ||
p { | ||
margin: 0.5em 0; | ||
} | ||
textarea { | ||
box-sizing: border-box; | ||
flex-grow: 1; | ||
resize: none; | ||
text-align: left; | ||
white-space: pre; | ||
width: 100%; | ||
word-wrap: normal; | ||
} |
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
Oops, something went wrong.