mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-03 23:06:09 +00:00
22c47e1d0b
Switched from XHTML to HTML5. Added formatting for menu items and keyboard shortcuts. Made various minor edits to the text.
29 lines
524 B
CSS
29 lines
524 B
CSS
/*
|
|
* Overall look and feel.
|
|
*/
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#content {
|
|
/* top right bottom left */
|
|
margin: 20px 10px 10px 10px;
|
|
/*position: relative;*/
|
|
}
|
|
#footer {
|
|
/* top right bottom left */
|
|
margin: 20px 10px 10px 10px;
|
|
/*position: relative;*/
|
|
}
|
|
|
|
/*
|
|
* Display of keyboard shortcuts in the <kbd> element.
|
|
*/
|
|
kbd.key {
|
|
border-radius: 5px;
|
|
padding: 0px 2px 0;
|
|
border: 1px solid black;
|
|
background-color: #f7f7f7;
|
|
}
|