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

source: tmcsimulator/branches/EInotebook/notebook.css @ 350

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

Add a branch EInotebook for Electronic Instructor Notebook prototype

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