-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (89 loc) · 1.35 KB
/
styles.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
body {
font-family: helvetica, arial, sans-serif;
background-color: #2D2D2D;
color: white;
font-size: 0.8em;
width:75%;
margin: 0 auto;
}
h1 {
display: flex;
justify-content: center;
margin-bottom:-0.5em;
}
#content {
display: flex;
flex-direction: column;
}
#explanation {
padding: 0;
margin-top: 1em;
padding-left: 8em;
}
#simulation {
display: flex;
flex-direction: column;
align-items: center;
font-size: 0.9em;
}
#graph-group {
position:relative;
}
#graph {
position:absolute;
top:99px;
left:156px;
}
#controls {
position:relative;
left:-65px;
display: flex;
flex-direction: row;
gap:20px;
}
#params1, #params2 {
margin-top: 1em;
line-height: 2;
border: 1px solid grey;
border-radius: 1em;
padding:1em;
padding-bottom:0.8em;
}
#params1 {
width:28em;
}
#params2 {
width:18em;
}
#params1 label,
#params2 label {
position: relative;
bottom: 0.3em;
}
#random-seed + label,
#randomize-seed + label {
bottom: 0.05em;
}
#randomize-seed {
position:relative;
bottom: -0.2em;
}
.nagents-text,
.ninteractions-text,
.fraction-text {
color: yellow;
}
#random-seed {
width:5em;
}
#bgnd {
width:1146px;
height:577px;
margin-bottom:-3.5em;
}
#learn-min,
#learn-max,
#p0-min,
#p0-max {
width:3em;
}