Finished prototype stylesheet for Web assembly IDE

This commit is contained in:
Jeremiah Orians 2016-07-20 20:26:40 -04:00
parent 7d5096b7ff
commit 222b7bcca3
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
2 changed files with 68 additions and 0 deletions

BIN
public/Glass_TTY_VT220.ttf Normal file

Binary file not shown.

68
public/style.css Normal file
View File

@ -0,0 +1,68 @@
@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;
}