diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/default.css | 18 | ||||
| -rw-r--r-- | static/index.html | 30 |
2 files changed, 48 insertions, 0 deletions
diff --git a/static/default.css b/static/default.css new file mode 100644 index 0000000..c1670c3 --- /dev/null +++ b/static/default.css @@ -0,0 +1,18 @@ + +body { + background: rgb(100,180,230); +} + +#container { + width: 800px; + margin: auto; + padding: 20px; + background: rgb(255,255,200); +} + +.problem { + border: 1px solid black; + padding: 0 8px; + margin: 8px; +} + diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..d86f72d --- /dev/null +++ b/static/index.html @@ -0,0 +1,30 @@ +<!doctype html> + +<html> + <head> + <meta charset="utf-8" /> + <title>Code Golf Leaderboard</title> + <link rel="stylesheet" href="default.css"/> + <script type="text/javascript"> + </script> + </head> + + <body> + <div id="layout"> + <div id="container"> + <div id="holes"> + + <h1>C&! Code Golf Leaderboard</h1> + + <p>In golf, the goal is to get a ball into a hole in as few swings as possible. The goal of code golf is similarly to solve a problem in as few bytes (of source code) as possible. The following is a list of programming challenges. Your task is to try and solve them in Python with as little code as possible measured in bytes.</p> + + + <div class="problem"> + <h2>Title</h2> + <p>Description</p> + </div> + </div> + </div> + </div> + </body> +</html> |
