diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -2,7 +2,30 @@ <html lang="en"> <head> <meta charset="UTF-8"> - <title>cs1300 AB Testing</title> + <title>CS1300 AB Testing</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <style> + body { + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + background-color: #121212; + color: #fff; + padding: 5px 0 0 15px; + font-size: 120%; + } + button { + background-color: #e7e7e7; + border: none; + color: black; + padding: 10px 20px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + border-radius: 5px; + cursor: pointer; + } + </style> <script src="download-utils.js" defer></script> <script defer> |