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

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

einotebook/notebook.css enhanced to emphasize timer display

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