-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (71 loc) · 1.07 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
* {
box-sizing: border-box;
font-family: Baskerville;
}
body {
background-color: #DAEBFF;
}
.nowrap {
white-space: nowrap;
}
#content {
position: relative;
/*margin: 0 auto;*/
padding: 15px;
width: 600px;
background-color: white;
}
p {
width: 100%;
}
h3 > span {
display: inline-block;
font-size: 1em;
font-weight: normal;
}
aside {
display: block;
position: absolute;
width: 30%;
left: 100%;
font-size: 14px;
font-weight: 100;
line-height: 15px;
padding-left: 5px;
border-left: dotted thin #000;
}
span.slider{
display: inline-block;
width: 30px;
}
/* PLAYGROUNDS */
#playground-simplest-ann {
position: relative;
}
#simplest-ann-slider-x {
position: absolute;
top: 245px;
left: 25px;
}
#simplest-ann-slider-wx {
position: absolute;
top: 73px;
left: 185px;
width: 62px;
}
#simplest-ann-input-layer {
position: absolute;
top: 10px;
left: 50px;
font-weight: 900;
}
#simplest-ann-output-layer {
position: absolute;
top: 10px;
left: 290px;
font-weight: 900;
}
svg.neuron {
width: 156px;
height: 167px;
}