forked from karpathy/recurrentjs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (72 loc) · 1.71 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (72 loc) · 1.71 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
canvas {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: pixelated;
-ms-interpolation-mode: nearest-neighbor;
}
#hidden_layer_sizes {
font-family: monospace;
}
.btn-checkbox {
background-color: white !important;
}
.btn-checkbox.active {
background-color: #337ab7 !important;
}
.btn-checkbox span.glyphicon {
margin-top: 2px;
opacity: 0.1;
color: black;
}
.btn-checkbox.active span.glyphicon {
opacity: 1;
color: white;
}
.slider-handle {
background-color: #337ab7;
background-image: none;
border: 1px solid #2e6da4;
}
#js-weights_visualization {
display: flex;
align-items: center;
}
#js-weights_visualization canvas {
margin: 2px;
box-shadow: 2px 2px 2px #888;
opacity: 0.93;
}
.generated_sample {
white-space: nowrap;
overflow: hidden;
}
.generated_sample:hover {
background-color: #f5f5f5;
}
#generation_inspector {
overflow: hidden;
}
#generation_inspector_fade_gradient {
position: absolute;
z-index: 2;
right: 2.5rem;
top: 0;
bottom: 0;
height: 0;
width: 8rem;
margin: auto;
background: none;
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(80%,rgba(255,255,255,1)));
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
}
#training_data {
width: 100%;
height: 80rem;
border: none;
resize: none;
padding: 1rem;
}