stage0/public/style.css

84 lines
1.4 KiB
CSS

/* This file is part of stage0.
*
* stage0 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* stage0 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with stage0. If not, see <http://www.gnu.org/licenses/>.
*/
@font-face {
font-family: 'TTY';
src: url("Glass_TTY_VT220.ttf");
font-weight: normal;
}
* {
font-family: TTY, monospace;
}
.Memory {
float: left;
border:solid 1px;
width:100%;
}
.Memory td {
border:solid 1px;
}
.Memory .cellEditing {
padding: 0;
}
.Memory .cellEditing input[type=text]{
width:100%;
border:0;
background-color:rgb(255,253,210);
}
.Registers {
float: left;
border:solid 1px;
width:15%
}
.Registers td {
border:solid 1px;
}
.Registers .cellEditing {
padding: 0;
}
.Registers .cellEditing input[type=text]{
width:100%;
border:0;
background-color:rgb(255,253,210);
}
.Debug {
border:solid 1px;
width:100%;
}
tr:nth-child(even) {
background-color: #D9EAF3;
}
.current td{
border:solid 1px;
background-color: #FFAAAA;
}
.breakpoint td
{
background-color: #FF0000;
}