Skip to content

Commit 7dc6091

Browse files
committed
Improve accessibility
1 parent 9a2a231 commit 7dc6091

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

index.html

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<title>Ember.JS</title>
55
<meta charset="utf-8">
@@ -29,6 +29,7 @@
2929

3030
/* taken from emberjs.com */
3131
--color-white: #fff;
32+
--color-button-bg: var(--ember-brand);
3233
--color-brand-hc-dark: #CF2d20;
3334
--radius: 0.3125rem;
3435
--spacing-1: 0.5625rem;
@@ -64,18 +65,19 @@
6465
color: var(--ember-white);
6566
margin: 0;
6667
padding: 0;
67-
font-family: Arial, sans-serif;
68+
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
6869
}
6970

7071
a {
7172
display: block;
7273
color: var(--color-button-text);
73-
background: var(--ember-brand);
74+
background: var(--color-button-bg);
7475
text-decoration: none;
76+
font-weight: 600;
7577
font-size: var(--font-size-md);
7678
padding: var(--spacing-1) var(--spacing-3);
7779
border-radius: var(--radius);
78-
line-height: var(--line-height-md);
80+
line-height: var(--line-height-sm);
7981
transition: background-color .2s, color .1s;
8082
}
8183
a:hover {

0 commit comments

Comments
 (0)