style(web/homepage): Highlight <kbd> elements like buttons

This commit is contained in:
Vincent Ambo 2020-02-10 00:08:53 +00:00
parent 9ed53f4201
commit b56b3db2f4

View file

@ -167,3 +167,17 @@ img {
color: #a52714; color: #a52714;
background-color: #fbe9e7; background-color: #fbe9e7;
} }
kbd {
background-color: #eee;
border-radius: 3px;
border: 1px solid #b4b4b4;
box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
color: #333;
display: inline-block;
font-size: .85em;
font-weight: 700;
line-height: 1;
padding: 2px 4px;
white-space: nowrap;
}