added outline styles for keyboard nav

This commit is contained in:
Danny Coates 2019-02-20 15:58:44 -08:00
parent 060b6835f1
commit b6a703d5de
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
6 changed files with 45 additions and 20 deletions

View file

@ -13,6 +13,10 @@ a {
text-decoration: none;
}
a:focus {
outline: 1px dotted grey;
}
body {
background-image: url('../assets/bg.svg');
background-position: center;
@ -96,10 +100,6 @@ body {
cursor: auto;
}
.delete:hover {
opacity: 0.7;
}
details {
overflow: hidden;
}
@ -278,6 +278,12 @@ select {
}
}
@variants focus {
.outline {
outline: 1px dotted grey;
}
}
.word-break-all {
word-break: break-all;
}