-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
104 lines (85 loc) · 1.33 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
body {
padding: 0;
margin: 0;
background: #000000;
font-family: 'Roboto', sans-serif;
overflow: hidden;
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none; /* Likely future */
}
p {
margin: 10px 0 5px 0;
font-size: 18px;
border-bottom: 1px solid black;
}
a:visited {
color: blue;
}
#control-panel {
width: 100%;
height: 100px;
}
#control-panel div{
box-sizing: border-box;
border-right: 2px solid black;
text-align: center;
}
#neuronType {
margin-bottom:5px;
}
#activationLevel {
width: 35px;
}
#timerInput {
display: inline;
}
#timesInput {
width: 100px;
}
#noteInput {
width: 55px;
}
#loadExamples {
position: absolute;
top:97%;
right:0%;
font-size: 14px;
}
#sizeSpan {
position: fixed;
left: 0;
top: 97%;
font-size: 14px;
}
#sizeInput {
width: 34px
}
#exampleInput {
padding-top: 1px;
}
#control-panel .active {
background-color: rgb(200, 200, 200);
}
.grey {
background-color: rgb(110, 110, 110);
}
.white {
background-color: white;
}
.column-left{
float: left;
width: 33.33%;
height: 100%;
}
.column-right{
float: right;
width: 33.33%;
height: 100%;
}
.column-center{
display: inline-block;
width: 33.33%;
height: 100%;
}