diff options
author | sotech117 <michael_foiani@brown.edu> | 2024-01-19 17:45:40 -0500 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2024-01-19 17:45:47 -0500 |
commit | ed8278faba0b7a17f802e9688893757f74c7722e (patch) | |
tree | d6f31079a90a83f87c70328ae2d49453fd2e9da6 | |
parent | aba9098f0d58157ee22dac37c29a39640a1239c8 (diff) |
update splash page css
-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> |