normalize fonts in index

This commit is contained in:
Colin Megill
2017-10-09 22:17:03 -07:00
parent 0ec396cb4a
commit 88cb4ef4ac
3 changed files with 11 additions and 4 deletions

View File

@@ -1,10 +1,15 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#db5945">
<title>Cellx</title>
<style>
html, body, p, h1, h2, h3, h4, h5, h6, span, button, input {
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
font-size: 16px;
}
</style>
</head>
<body>
<noscript>If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript>

View File

@@ -30,3 +30,6 @@ export const API = {
prefix: "http://api.clustering.czi.technology/api/",
version: "v0.1/",
}
export const accentFont = "Georgia,Times,Times New Roman,serif";
export const maxParagraphWidth = 600;

View File

@@ -1,9 +1,8 @@
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
* {
box-sizing: border-box;
}
}