mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Fix Firefox key borders
This commit is contained in:
parent
eeca9c99a7
commit
7f9ad9b9a1
@ -415,14 +415,22 @@ button:focus {
|
|||||||
color: white;
|
color: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
border: 5px outset #66594E;
|
border-left: 5px solid #65594D;
|
||||||
|
border-top: 5px solid #65594D;
|
||||||
|
border-right: 5px solid #110E0D;
|
||||||
|
border-bottom: 5px solid #110E0D;
|
||||||
|
/* border: 5px outset #66594E; */
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#keyboard .pressed {
|
#keyboard .pressed {
|
||||||
background-color: #22150A;
|
background-color: #22150A;
|
||||||
border: 5px outset #44372C;
|
border-left: 5px solid #44372C;
|
||||||
|
border-top: 5px solid #44372C;
|
||||||
|
border-right: 5px solid #000000;
|
||||||
|
border-bottom: 5px solid #000000;
|
||||||
|
/* border: 5px outset #44372C; */
|
||||||
}
|
}
|
||||||
|
|
||||||
#keyboard .key div {
|
#keyboard .key div {
|
||||||
@ -570,7 +578,11 @@ button:focus {
|
|||||||
|
|
||||||
#reset {
|
#reset {
|
||||||
background: #44372C;
|
background: #44372C;
|
||||||
border: 3px outset #66594E;
|
border-left: 3px solid #65594D;
|
||||||
|
border-top: 3px solid #65594D;
|
||||||
|
border-right: 3px solid #110E0D;
|
||||||
|
border-bottom: 3px solid #110E0D;
|
||||||
|
/* border: 5px outset #66594E; */
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
color: white;
|
color: white;
|
||||||
font: 9px Helvetica;
|
font: 9px Helvetica;
|
||||||
|
Loading…
Reference in New Issue
Block a user