diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | custom.css | 9 | ||||
| -rw-r--r-- | index.jinja | 13 |
3 files changed, 13 insertions, 11 deletions
@@ -4,4 +4,4 @@ build: python2 build.py deploy: - rsync -r index.html custom.css notes horel.org:public_html/submodularity + rsync -r index.html notes horel.org:public_html/submodularity diff --git a/custom.css b/custom.css deleted file mode 100644 index 7d0c520..0000000 --- a/custom.css +++ /dev/null @@ -1,9 +0,0 @@ -body { font-family: "Source Sans Pro", "Verdana", "Helvetica", sans-serif; color: #333; font-size: 13pt; width: 700px; margin: 0 auto; } -.subtext { font-size: 80%; font-weight: normal; } -a { text-decoration: none; color: #428BCA} -a:hover {text-decoration: underline; color: #2A6496} -h1 { text-align: center } -h2 { border-bottom: 1px solid #EEE; } -ul { padding-left: 0; list-style:none } -ol { padding-left: 1.5em; } -li + li { margin-top: 0.5em} diff --git a/index.jinja b/index.jinja index d20e06e..06e32b8 100644 --- a/index.jinja +++ b/index.jinja @@ -2,8 +2,19 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name=viewport content="width=device-width, initial-scale=1"> <title>Submodularity Reading Group</title> - <link rel="stylesheet" href="custom.css"> + <style> +body { font-family: "Source Sans Pro", "Verdana", "Helvetica", sans-serif; color: #333; font-size: 13pt; max-width: 700px; margin: 0 auto; padding: 0 1em } +.subtext { font-size: 80%; font-weight: normal; } +a { text-decoration: none; color: #428BCA} +a:hover {text-decoration: underline; color: #2A6496} +h1 { text-align: center } +h2 { border-bottom: 1px solid #EEE; } +ul { padding-left: 0; list-style:none } +ol { padding-left: 1.5em; } +li + li { margin-top: 0.5em} + </style> </head> <body> <h1>Submodular Optimization Reading Group<br> |
