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 @ 361

Revision 361, 2.5 KB checked in by jdalbey, 7 years ago (diff)

modify CADClient AssignedIncidents?.java to fix defect #142. Also fix minor typos in full_script_2016.xml

  • 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: purple;
82    /* width: 30%;   */
83    /* float:right; */
84}
85
86/*************************
87 *       Tab Menu        *
88 *************************/
89
90td.tabMenu
91{
92    padding-bottom:0px;
93    border-bottom: 1px solid #66CC66;
94}
95
96div.tabMenuWrapper {
97        display:block; 
98        width:70%; /*750px; */
99        margin-left:auto;
100        margin-right:auto;
101}
102
103ul.tabMenu 
104{ 
105   float:left;
106   text-align: center;
107   margin: 1em 0 0em 0;
108   font-weight: bold;
109   font-size:11pt;
110   list-style-type: none;
111   padding: 0px 0px 0px 0px; 
112   cursor: pointer;
113}
114
115ul.tabMenu li 
116{
117   float:left;
118   line-height: 200%;
119   padding: 3px 5px; 
120   margin-right: 5px;
121   margin-left: 5px;
122   text-decoration: none;
123   border: 1px solid #66CC66;
124   border-bottom: none;
125   font-size: 1.07em; 
126}
127
128ul.tabMenu li.notActive
129{
130   background-color: #CCFFCC;
131   color: #666666;
132}
133
134ul.tabMenu a:hover 
135{
136   background: #FFFFFF; /* set desired hover color */
137}
138
139/* SELECTED TAB */
140li.activeTab
141{ 
142   border-bottom: 1px solid #FFFFFF;
143   background-color: #FFFFFF;
144}
145 
146/* SELECTED TAB LINK */
147li.activeTab
148{
149   background-color: #FFFFFF;
150   color: #000000;
151   position: relative;
152   top: 1px;
153   padding-top: 4px;
154}
155
156 
157/*************************
158 *       Tab Page        *
159 *************************/
160 
161td.tabPageContent
162{
163   border: 1px solid #66CC66; 
164   border-top: 0px; 
165   height:90%;
166   padding:0px;
167   margin:0px;
168}
169
170#summaryPageContent
171{
172   background-color: lightyellow;
173}
Note: See TracBrowser for help on using the repository browser.