style.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* Copyright (C) 2016 Jeremiah Orians
  2. * This file is part of stage0.
  3. *
  4. * stage0 is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * stage0 is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with stage0. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. @font-face {
  18. font-family: 'TTY';
  19. src: url("Glass_TTY_VT220.ttf");
  20. font-weight: normal;
  21. }
  22. * {
  23. font-family: TTY, monospace;
  24. }
  25. .Memory {
  26. float: left;
  27. border:solid 1px;
  28. width:100%;
  29. }
  30. .Memory td {
  31. border:solid 1px;
  32. }
  33. .Memory .cellEditing {
  34. padding: 0;
  35. }
  36. .Memory .cellEditing input[type=text]{
  37. width:100%;
  38. border:0;
  39. background-color:rgb(255,253,210);
  40. }
  41. .Registers {
  42. float: left;
  43. border:solid 1px;
  44. width:15%
  45. }
  46. .Registers td {
  47. border:solid 1px;
  48. }
  49. .Registers .cellEditing {
  50. padding: 0;
  51. }
  52. .Registers .cellEditing input[type=text]{
  53. width:100%;
  54. border:0;
  55. background-color:rgb(255,253,210);
  56. }
  57. .Debug {
  58. border:solid 1px;
  59. width:100%;
  60. }
  61. tr:nth-child(even) {
  62. background-color: #D9EAF3;
  63. }
  64. .current td{
  65. border:solid 1px;
  66. background-color: #FFAAAA;
  67. }
  68. .breakpoint td
  69. {
  70. background-color: #FF0000;
  71. }