-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs refactor - use template instead of md file * update * py37 * bump version
- Loading branch information
Showing
15 changed files
with
819 additions
and
861 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,139 @@ | ||
#terminal-header { | ||
text-shadow: -4px 4px rgba(128, 128, 128, 0.1); | ||
overflow: hidden; | ||
white-space: nowrap; | ||
margin: 0 auto; | ||
padding: 10px; | ||
display: inline-block; | ||
} | ||
|
||
[data-termynal] { | ||
width: 100%; | ||
padding: 75px 25px 25px; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
height: 100%; | ||
} | ||
|
||
.container .left-column { | ||
flex: 3 0 auto; | ||
align-content: center; | ||
} | ||
|
||
.container .right-column { | ||
flex: 20 7 auto; | ||
padding: 25px 15px; | ||
align-content: center; | ||
display: inline-block; | ||
} | ||
|
||
@media (max-width: 74em) { | ||
.container { | ||
flex-direction: column; | ||
align-items: center; | ||
width: 100%; | ||
} | ||
|
||
.container .left-column, .container .right-column { | ||
flex: 0 0 auto; | ||
padding: 0; | ||
width: 100%; | ||
display: block; | ||
} | ||
|
||
#option-table { | ||
margin: 0; | ||
padding: 0; | ||
width: 100%; | ||
table-layout: fixed; | ||
} | ||
|
||
@media (max-width: 600px) { | ||
#option-table th:first-child, td:first-child { | ||
max-width: 15em; | ||
overflow: hidden; | ||
} | ||
} | ||
|
||
} | ||
|
||
.rc-element.c-black { | ||
color: #000000; | ||
} | ||
.rc-element.c-blue { | ||
color: #0088CC; | ||
} | ||
.rc-element.c-green { | ||
color: #338022; | ||
} | ||
.rc-element.c-yellow { | ||
color: #AA8800; | ||
} | ||
.rc-element.c-cyan { | ||
color: #009090; | ||
} | ||
.rc-element.c-white { | ||
color: #c0c0c0; | ||
} | ||
.rc-element.c-magenta { | ||
color: #9966AA; | ||
} | ||
.rc-element.c-red { | ||
color: #EE5555; | ||
} | ||
.rc-element.s-italic { | ||
font-style: italic; | ||
} | ||
.rc-element.s-bold { | ||
font-weight: bold; | ||
} | ||
.rc-element.s-dim { | ||
opacity: 50%; | ||
} | ||
.color-option[data-color="black"] { | ||
background-color: #000000; | ||
} | ||
.color-option[data-color="blue"] { | ||
background-color: #0088CC; | ||
} | ||
.color-option[data-color="green"] { | ||
background-color: #338022; | ||
} | ||
.color-option[data-color="yellow"] { | ||
background-color: #AA8800; | ||
} | ||
.color-option[data-color="cyan"] { | ||
background-color: #009090; | ||
} | ||
.color-option[data-color="white"] { | ||
background-color: #c0c0c0; | ||
} | ||
.color-option[data-color="magenta"] { | ||
background-color: #9966AA; | ||
} | ||
.color-option[data-color="red"] { | ||
background-color: #EE5555; | ||
} | ||
.color-grid { | ||
display: grid; | ||
grid-template-columns: repeat(4, 1.1em); | ||
grid-gap: 0.2em; | ||
} | ||
.color-option { | ||
width: 1.1em; | ||
height: 1.1em; | ||
cursor: pointer; | ||
opacity: 0.2; | ||
transition: opacity 0.2s ease; | ||
} | ||
.color-option:hover { | ||
opacity: 0.8; | ||
} | ||
.color-option.selected-color { | ||
opacity: 1; | ||
} | ||
.rc-button.button-selected code { | ||
background-color: rgba(127, 127, 127, 0.4); | ||
} |
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.