This repository was archived by the owner on Oct 19, 2022. It is now read-only.
forked from RodrigoDLPontes/visualization-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisualizationPageStyle.css
More file actions
157 lines (131 loc) · 3.24 KB
/
visualizationPageStyle.css
File metadata and controls
157 lines (131 loc) · 3.24 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
@charset "utf-8";
body {
font: 100% Helvetica Neue, Helvetica, Arial, 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: #F7C245;
color: #000000;
display: flex;
justify-content: space-between;
align-items: center;
}
.VisualizationMainPage #AlgorithmSpecificControls {
vertical-align: middle;
}
.VisualizationMainPage #examplesButton {
background-image: url('icons/examples.png');
background-repeat: no-repeat;
background-size: 30px;
background-position: center;
background-color: transparent;
border: none;
width: 40px;
height: 40px;
}
.VisualizationMainPage #generalAnimationControlSection {
background: #F7C245;
color: #006600;
}
.VisualizationMainPage #header {
background: #4277BB;
color: #F7C245;
padding: 0 10px 0 20px;
}
.VisualizationMainPage #header A:visited {
text-decoration:none
color: #F7C245
}
.VisualizationMainPage #header h1 {
margin: 0;
padding: 10px 0;
}
.VisualizationMainPage #header A:link {
text-decoration:none;
color: #F7C245
}
.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: #F7C245;
}
.VisualizationMainPage #footer A:link {
text-decoration: none;
color: #F7C245;
}
.VisualizationMainPage #mainContent h1 {
padding: 0 20px;
background: #FFFFFF;
color: #4277BB;
}
.VisualizationMainPage #mainContent h2 {
padding: 0 20px;
background: #FFFFFF;
color:#4277BB;
}
.VisualizationMainPage #mainContent h3 {
padding: 0 20px;
background: #FFFFFF;
color:#4277BB;
}
.VisualizationMainPage #footer {
padding: 0 10px;
background: #4277BB;
color:#F7C245;
}
.VisualizationMainPage #footer p {
margin: 0;
padding: 10px 0;
}
EM {
text-decoration: bold;
}
.VisualizationMainPage .modal {
display: none;
position: absolute;
z-index: 1;
right: 20px;
top: 120px;
width: 350px;
height: 460px;
}
.VisualizationMainPage .modal-content {
background-color: #fefefe;
padding: 0px 30px 0px 0px;
height: 100%;
border-radius: 20px;
background-color: #F7C245;
}
.VisualizationMainPage li {
line-height: 1.4em;
margin: 0px 0px 15px 0px;
}
.VisualizationMainPage .equation {
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
margin: 5px 0px;
}
.VisualizationMainPage .vgroup {
display: flex;
flex-direction: column;
}
.VisualizationMainPage .vgroup {
display: flex;
}