diff options
Diffstat (limited to 'src/code.html')
-rw-r--r-- | src/code.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/code.html b/src/code.html new file mode 100644 index 0000000..1e009d6 --- /dev/null +++ b/src/code.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> + <title>{title}</title> + <style> + html, body \{ + background-color: #002b36; + height: 100%; + } + :hover \{ + color: white !important; + } + .code \{ + color: #93a1a1; + } + .linenumbers \{ + -ms-user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -khtml-user-select: none; + -o-user-select: none; + user-select: none; + } + .linenumbers a \{ + color: #586e75; + text-decoration: none; + } + </style> + </head> + <body> + {code | raw} + </body> +</html> |