-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
139 lines (109 loc) · 1.89 KB
/
style.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@font-face {
font-family: "TheSans-Plain";
src: url('res/TheSans-Plain.ttf');
}
html, body {
min-width: 800px;
min-height: 760px;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0px;
font-family: TheSans-Plain;
}
#footer_div {
position: absolute;
bottom: 10px;
color: rgb(100, 80, 70);
font-size: 70%;
}
#container {
margin: 6px;
padding: 6px;
border: 1px solid rgb(204, 204, 204);
height: calc(100% - 26px);
}
#logo_img {
float: left;
padding-left: 3em;
}
#wrapper {
position: absolute;
top: 120px;
bottom: 30px;
left: 12px;
right: 12px;
}
#vis_div {
width: 70%;
margin-left: 15%;
min-width: 300px;
/*max-width: 2000px;*/
height: 80%;
margin-top: 3%;
min-height: 300px;
//max-height: 1000px;
}
.graph_div {
margin-top 5%:
float: left;
width: 10px;
height: 10px;
}
.error_div {
visibility: hidden;
display: none;
margin-top: 20%;
padding-left: 20px;
font-size: 30px;
}
.menu_div {
padding: 2em 2em 2em 2em;
float: right;
}
.tab {
transition: background-color 0.3s ease;
background-color: #ffffff;
padding: .5em .5em .25em .5em;
float: left;
border-radius: 15px 15px 0px 0px;
cursor: pointer;
border-left: 5px solid #25205e;
border-right: 5px solid #25205e;
border-top: 5px solid #25205e;
margin-top: 0px;
padding-bottom: 5px;
/*Do not allow the tab text to be selected*/
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.non_selected_tab:hover {
border: 5px solid #25205e;
background-color: #b2d0e1;
}
.non_selected_tab {
background-color: #7fb0cd;
padding-bottom: 0px !important;
}
.app_container {
border-radius: 0px 15px 15px 15px;
border: 5px solid #25205e;
background-color: #ffffff;
margin-top: -5px;
width: 100%;
height: 100%;
}
.hide_until_init {
visibility: hidden;
}
.clear {
clear: both;
}