| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- html {
- font-family: 'Exo 2', sans-serif;
- background-color: #f7f7f7;
- }
- .github-corner svg {
- fill: #272822;
- color: #ECF0F1;
- }
- body {
- font-size: 1.2em;
- margin: 0px;
- margin-top: 18px;
- }
- #container {
- text-align: center;
- }
- #content {
- max-width: 90%;
- width: 1000px;
- padding-left: 20px;
- padding-right: 20px;
- margin: 0 auto;
- }
- p.desc {
- margin-top: 0.6em;
- margin-bottom: 1.8em;
- }
- p.links {
- font-size: 0.8em;
- text-align: center;
- }
- p.links a {
- color: #666;
- }
- #terminal {
- border-radius: 4px;
- box-shadow: 0px 3px 8px #1a1a1a;
- }
- /* jQuery Terminal */
- .terminal {
- --color: #f1f1f0;
- --background: #282a36;
- --size: 1.5;
- --font: 'Fira Mono', monospace;
- --link-color: #59f78d;
- font-family: 'Fira Mono', monospace;
- }
- .terminal,
- .terminal .terminal-fill {
- padding: 1.2em;
- margin-bottom: 2em;
- }
- .terminal,
- .terminal-output> :not(.raw) span,
- .terminal-output> :not(.raw) a,
- .terminal-output> :not(.raw) div,
- .cmd,
- .cmd span,
- .cmd div {
- font-family: 'Fira Mono', monospace;
- }
- .terminal-output>div {
- padding-bottom: 1em;
- }
- .terminal-output>div.terminal-command {
- padding-bottom: 0em;
- }
- .prompt {
- font-weight: bold;
- }
- /* syntax highlighting */
- /* snazzy color scheme (https://github.com/sindresorhus/hyper-snazzy) */
- .hl-dimmed {
- color: #888 !important;
- }
- .hl-emphasized {
- font-weight: bold;
- }
- .hl-string {
- color: #59f78d !important;
- }
- .hl-keyword {
- font-weight: 700 !important;
- color: #ff69c0 !important;
- }
- .hl-value {
- color: #f3f99d !important;
- }
- .hl-unit {
- color: #99ecfe !important;
- }
- .hl-identifier {}
- .hl-type-identifier {
- color: #57c7ff !important;
- font-style: italic !important;
- }
- .hl-operator {
- font-weight: 700 !important;
- }
- .hl-decorator {
- color: #59f78d !important;
- }
- .hl-diagnostic-red {
- color: #ff5b56 !important;
- }
- .hl-diagnostic-blue {
- color: #56c7ff !important;
- }
- .hl-diagnostic-bold {
- font-weight: 700 !important;
- }
- /* Github Badge */
- .github-corner:hover .octo-arm {
- animation: octocat-wave 560ms ease-in-out
- }
- @keyframes octocat-wave {
- 0%,
- 100% {
- transform: rotate(0)
- }
- 20%,
- 60% {
- transform: rotate(-25deg)
- }
- 40%,
- 80% {
- transform: rotate(10deg)
- }
- }
- @media (max-width:600px) {
- html {
- height: 100%;
- }
- body {
- margin: 0px;
- height: 100%;
- }
- .github-corner {
- display: none;
- }
- #logo {
- display: none;
- }
- .desc {
- display: none;
- }
- .links {
- display: none;
- }
- #container {
- display: none;
- }
- #content {
- max-width: 100%;
- height: 100%;
- padding-top: 0px;
- padding-left: 0px;
- padding-right: 0px;
- margin: 0 auto;
- }
- .terminal,
- .terminal .terminal-fill {
- padding: 0.2em;
- margin-bottom: 2em;
- }
- .terminal {
- --size: 1.2;
- }
- #terminal {
- height: 100% !important;
- border-radius: 0px;
- box-shadow: none;
- margin: 0px;
- }
- }
- @media (prefers-color-scheme: dark) {
- html {
- background: #121319;
- color: #ECF0F1;
- }
- .github-corner svg {
- fill: #3e4153;
- color: #1A1A1A;
- }
- #terminal {
- box-shadow: 0px 3px 8px #121212;
- }
- }
|