-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsos.css
131 lines (108 loc) · 1.99 KB
/
tsos.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* TSOS.css */
body {
background: #909193 url(distrib/images/linen.png) repeat;
font-family: Helvetica, Verdana, Arial, sans-serif;
font-size: 12pt;
font-weight: normal;
font-style: normal;
}
h1 {
color: black;
font-size: 24pt;
font-weight: normal;
font-style: normal;
border-bottom: 1px solid black;
}
h2 {
color: black;
font-size: 20pt;
font-weight: normal;
font-style: normal;
}
h3 {
font-family: Helvetica, Verdana, Arial, sans-serif;
font-size: 16pt;
font-weight: normal;
font-style: normal;
}
#display {
background-color:black;
border: 2px solid red;
cursor: default;
}
#divBanner {
display: flex;
flex-direction: row;
justify-content: space-around;
background-color: #DFDBC3;
border: 1px solid black;
font-weight: bold;
}
table {
border: 6px solid #948473;
background-color: #FFE3C6;
width: 100%;
text-align: center;
}
table td, table th {
border: 1px solid #948473;
padding: 4px 4px;
}
table tbody td {
font-size: 13px;
}
table thead {
background: #948473;
background: -moz-linear-gradient(top, #afa396 0%, #9e9081 66%, #948473 100%);
background: -webkit-linear-gradient(top, #afa396 0%, #9e9081 66%, #948473 100%);
background: linear-gradient(to bottom, #afa396 0%, #9e9081 66%, #948473 100%);
}
table thead th {
font-size: 17px;
font-weight: bold;
color: #F0F0F0;
text-align: left;
border-left: 2px solid #948473;
}
table thead th:first-child {
border-left: none;
}
#tableMemory {
overflow-y:scroll;
height:160px;
width:320px;
}
#tableCpu {
width: 350px;
}
#tablePcb {
overflow-y: scroll;
width: 550px;
}
#floatDiv {
float: left;
}
#tableHardDrive {
width: 500px;
overflow-y: auto;
height: 320px;
text-align: center;
}
#tableHardDrive th {
text-align: center;
}
.normal_button {
width: 100px;
}
#btnSingleStep {
background-color: red;
}
#btnNextStep {
width: 30px;
}
.footerText {
color: black;
font-family: Arial, Helvetica, sans-serif;
font-size: 8pt;
text-align: center;
}