Warning: Can't use blame annotator:
svn blame failed on trunk/webapps/einotebook/notebook.css: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator/trunk/webapps/einotebook/notebook.css @ 401

Revision 401, 2.7 KB checked in by jdalbey, 7 years ago (diff)

Fix #149, #112. Add emphasis to timebox. Partial fix to highlighting problem. Use Scoreboard font in CMS monitor.

  • Property svn:executable set to *
RevLine 
1/*************************
2 *    Simulation Page    *
3 *************************/
4html {
5        padding:0px;   
6}
7body
8{
9   margin:0px;
10   font-family: Verdana, sans-serif;
11   background-color:#FFFFFF;
12   border:0px solid black;
13}
14
15table.notebook 
16{
17        width:100%;
18        height:100%;
19        padding:0px;
20        margin:0px;
21}
22
23/*************************
24 *   Simulation Header   *
25 *************************/
26table.header
27{
28        width:100%; 
29        padding:0px;
30        margin:0px;
31        height: 10px;
32        font-size: 2em;
33}
34
35/*************************
36 *    Update Status Box     *
37 *************************/
38td.updateStatusBox
39{
40        width: 30%;
41}
42
43td.updateStatus
44{
45   font-weight: bold;
46   color: white;
47        font-size: 1.2em;
48}
49
50/*************************
51 *      Status Box       *
52 *************************/
53td.statusBox
54{
55        width: 40%;
56        align: center;
57}
58
59td.statusText
60{
61        font-weight: bold;
62        text-align: center;
63        font-size: 1.2em;
64}
65
66td.simulationStatus
67{
68   font-weight: bold;
69   text-align: center;
70   font-size: 1.2em;
71}
72
73/*************************
74 *       Time Box        *
75 *************************/
76.simulationTime
77{
78   text-align: right;
79   font-weight: bold;
80   font-size: xx-large; /*1.2em; */
81   color: black;
82   background: #FACECE;
83   border-radius: 25px;
84   border: 2px solid #BA2D2D;
85   margin-left: 82%;
86   margin-bottom: 2px;
87   padding-right: 16px;
88   /* Fix #152 attempt
89   resize: both;
90   overflow: auto; */
91   /*width: 30%;*/
92    /* width: 30%;   */
93    /* float:right; */
94}
95
96/*************************
97 *       Tab Menu        *
98 *************************/
99
100td.tabMenu
101{
102    padding-bottom:0px;
103    border-bottom: 1px solid #66CC66;
104}
105
106div.tabMenuWrapper {
107        display:block; 
108        width:70%; /*750px; */
109        margin-left:auto;
110        margin-right:auto;
111}
112
113ul.tabMenu 
114{ 
115   float:left;
116   text-align: center;
117   margin: 1em 0 0em 0;
118   font-weight: bold;
119   font-size:11pt;
120   list-style-type: none;
121   padding: 0px 0px 0px 0px; 
122   cursor: pointer;
123}
124
125ul.tabMenu li 
126{
127   float:left;
128   line-height: 200%;
129   padding: 3px 5px; 
130   margin-right: 5px;
131   margin-left: 5px;
132   text-decoration: none;
133   border: 1px solid #66CC66;
134   border-bottom: none;
135   font-size: 1.07em; 
136}
137
138ul.tabMenu li.notActive
139{
140   background-color: #CCFFCC;
141   color: #666666;
142}
143
144ul.tabMenu a:hover 
145{
146   background: #FFFFFF; /* set desired hover color */
147}
148
149/* SELECTED TAB */
150li.activeTab
151{ 
152   border-bottom: 1px solid #FFFFFF;
153   background-color: #FFFFFF;
154}
155 
156/* SELECTED TAB LINK */
157li.activeTab
158{
159   background-color: #FFFFFF;
160   color: #000000;
161   position: relative;
162   top: 1px;
163   padding-top: 4px;
164}
165
166 
167/*************************
168 *       Tab Page        *
169 *************************/
170 
171td.tabPageContent
172{
173   border: 1px solid #66CC66; 
174   border-top: 0px; 
175   height:100%;
176   padding:0px;
177   margin:0px;
178}
179
180#summaryPageContent
181{
182   background-color: lightyellow;
183}
Note: See TracBrowser for help on using the repository browser.