-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvisualizationPageStyle.css
121 lines (81 loc) · 2.28 KB
/
visualizationPageStyle.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
@charset "utf-8";
body {
font: 100% Verdana, Arial, Helvetica, sans-serif;
/*background: #666666; */
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
color: #000000;
}
.VisualizationMainPage #mainContent {
/*padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
background: #FFFFFF;
}
.VisualizationMainPage #container {
background: #FFFFFF;
/*margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
text-align: left; /* this overrides the text-align: center on the body element. */
}
.VisualizationMainPage #algoControlSection
{
background: #DDEEDD;
color:#000000;
}
.VisualizationMainPage #generalAnimationControlSection
{
background: #DDEEDD;
color:#006600;
}
.VisualizationMainPage #header {
background: #006633;
color:#ffCC33;
padding: 0 10px 0 20px;
}
.VisualizationMainPage #header A:visited
{ text-decoration:none;
color:#ffCC33;
}
.VisualizationMainPage #header h1 {
margin: 0;
padding: 10px 0;
}
.VisualizationMainPage #header A:link {
text-decoration:none;
color:#ffCC33;
}
.VisualizationMainPage #container {
background: #FFFFFF;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
text-align: left; /* this overrides the text-align: center on the body element. */
}
.VisualizationMainPage #footer A:visited { text-decoration:none;
color:ffcc33;
}
.VisualizationMainPage #footer A:link {
text-decoration:none;
color:#ffCC33;
}
.VisualizationMainPage #mainContent h1{
padding: 0 20px;
background: #FFFFFF;
color:#006633
}
.VisualizationMainPage #mainContent h2{
padding: 0 20px;
background: #FFFFFF;
color:#006633
}
.VisualizationMainPage #mainContent h3{
padding: 0 20px;
background: #FFFFFF;
color:#006633
}
.VisualizationMainPage #footer {
padding: 0 10px;
background: #006633;
color:#ffcc33;
}
.VisualizationMainPage #footer p {
margin: 0; padding: 10px 0;
}
EM {text-decoration: bold;}