-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
160 lines (128 loc) · 2.93 KB
/
Copy pathbase.css
File metadata and controls
160 lines (128 loc) · 2.93 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
158
159
160
/* TODO: only apply to axis labels? */
.tab {
display: flex;
background-color: #d3d3d3; /* Matches grey background */
border-bottom: 1px solid #d3d3d3;
}
.tab button {
background-color: #d3d3d3; /* Matches grey background */
border: none;
outline: none;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.3s;
flex-grow: 1; /* Distribute tabs evenly across the screen */
text-align: center; /* Center text inside each tab */
}
.tab button:hover {
background-color: #bbb; /* Slightly darker grey for hover effect */
}
.tab button.active {
background-color: #1a7cd2; /* Active tab color remains unchanged */
}
svg * { font: 12px Arial;
color: white;
line : white;
}
/* font styles */
.text-bold { font-weight: bold; }
/* #69b3a2 : light green */
/* Style the lines by removing the fill and applying a stroke */
.no-fill { fill: none; }
.no-display { display: none; }
.stroke-light { stroke-width: 2; }
.stroke-med { stroke-width: 3; }
.dashed { stroke-dasharray: 4,4; }
.stroke-blue { stroke: #004080; }
.stroke-blue-o { stroke: #008000; }
.stroke-green { stroke: #008040; }
.stroke-green-o { stroke: #66ff00;}
.stroke-red { stroke: #804000; }
.stroke-red-o { stroke: #800000; }
.stroke-gray-0 { stroke: #cccccc; }
.stroke-yellow { stroke: #FFFF00;}
.stroke-orange { stroke: #ffa500;}
/* bounding box */
.domain { display: none; }
.grid line { stroke: #cccccc; }
.width-1 { width: 240px; }
.width-2 { width: 320px; }
.width-4 { width: 640px; }
.width-5 { width: 960px; }
.width-3 {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 480px; /* Full-width */
height: 5px; /* Specified height */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
}
.text-bold {
color: white
}
.text-bold-1 {
font-weight: bold;
}
label {
color: white
}
output {
color: white
}
callback_description {
color: white
}
.callback_description1 {
color: white
}
strategy {
background: #d3d3d3; /* Grey background */
}
.title {
color: white
}
body {
background-color:rgb(72,72,72);
color: white;
}
th {
text-align: left;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
output {
display: inline;
}
.container{
/*display: flex;*/
overflow: hidden
}
.fixed{
float: left ;
width: 400px;
}
.flex-item{
/*flex-grow: 1;*/
float: right;
margin-right:70px;
margin-top:20px
}
textarea {
background-color: #686868;
font-color: white;
border-width: 5px;
}
a {
color: #46BCDB;
}
a:visited {
color: #46BCDB;
}
a:hover {
color: #99D4E4;
}