Skip to content

Commit

Permalink
Add kbd, cursor and region to the css
Browse files Browse the repository at this point in the history
* html/style.css: amend.
  • Loading branch information
abo-abo committed Jan 19, 2015
1 parent 35b67a6 commit a60ecdd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions html/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -525,3 +525,35 @@ code.elisp samp { font-weight: normal; }
float: right;
margin: 0.5em;
}

region {
color: #ffffff;
background-color: #f9b593;
}

kbd {
padding:0.1em 0.6em;
border:1px solid #ccc;
font-size:13px;
font-weight:bold;
font-family:monospace;
background-color:#f3d3d3;
color:#333;
-moz-box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
-webkit-box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
display:inline-block;
margin:0 0.1em;
text-shadow:0 1px 0 #fff;
line-height:1.4;
white-space:nowrap;
}

cursor {
color: #fff;
background-color: #000;
overflow: hidden;
}

0 comments on commit a60ecdd

Please sign in to comment.