Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
html,
body {
height: 100%;
font-family: 'Caveat', cursive;
font-family: 'Open Sans', sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
}
Expand Down Expand Up @@ -69,7 +69,7 @@ body {
}

.chart-title {
font-family: 'Caveat', cursive;
font-family: 'Open Sans', sans-serif;
font-size: 2.2rem;
font-weight: 700;
background: transparent;
Expand All @@ -96,7 +96,7 @@ body {

/* Buttons */
.btn {
font-family: 'Caveat', cursive;
font-family: 'Open Sans', sans-serif;
padding: 10px 18px;
border: 2px solid currentColor;
border-radius: 4px;
Expand Down Expand Up @@ -178,7 +178,7 @@ body {

/* Hill Labels */
.hill-label {
font-family: 'Caveat', cursive;
font-family: 'Open Sans', sans-serif;
fill: var(--text-secondary);
font-size: 22px;
font-style: italic;
Expand All @@ -203,7 +203,7 @@ body {
}

.scope-label {
font-family: 'Caveat', cursive;
font-family: 'Open Sans', sans-serif;
fill: var(--text-primary);
font-size: 22px;
font-weight: 700;
Expand Down Expand Up @@ -250,14 +250,14 @@ body {
}

.modal h2 {
font-family: 'Caveat', cursive;
font-family: 'Open Sans', sans-serif;
margin-bottom: 16px;
font-size: 1.8rem;
font-weight: 700;
}

.modal input {
font-family: 'Caveat', cursive;
font-family: 'Open Sans', sans-serif;
width: 100%;
padding: 12px 14px;
border: 2px solid var(--border-color);
Expand Down
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<meta name="keywords" content="hill chart, shape up, project management, basecamp, progress tracking">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://jamers99.github.io/hillchart/">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="js/font-data.js"></script>
<link rel="stylesheet" href="css/styles.css">
</head>
Expand Down