diff options
author | tilpner | 2019-05-03 12:19:25 +0200 |
---|---|---|
committer | tilpner | 2019-05-03 12:19:25 +0200 |
commit | 98976de4679b8be1024a69aff9fd304ffc1054d8 (patch) | |
tree | 092332217ac829af77b2e0f5c60d456c3de6134e /src/code.html | |
parent | 35f5424d81e687096c7b7bd60f839deeb5e7f876 (diff) | |
download | rpb-s3-98976de4679b8be1024a69aff9fd304ffc1054d8.tar.gz rpb-s3-98976de4679b8be1024a69aff9fd304ffc1054d8.tar.xz rpb-s3-98976de4679b8be1024a69aff9fd304ffc1054d8.zip |
Add rest of project
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> |