-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (107 loc) · 1.74 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
105
106
107
108
109
110
html, body {
font-family: Trebuchet MS;
background-color: #eff2f7;
text-align:center;
}
#header {
text-transform: uppercase;
color: #2d2e30;
font-size: 46px;
}
#container{
position: relative;
align-self: center;
margin-left: 50px;
margin-right: 50px;
margin-top: 10px;
min-width: 400px;
height: 90%;
}
#eq{
text-align: center;
font-size: 18px;
}
#form{
color: #2d2e30;
text-align: center;
margin-top: 10px;
}
.material-icons{
color: #848484;
}
.material-icons:hover{
color: black;
}
#animation_options{
display: flex;
justify-content: space-around;
align-items: center;
background-color: white;
width: 550px;
margin: auto;
margin-top: 8px;
border-radius: 10px;
border-style: solid;
border-color: #848484;
border-width: 1px;
}
#animation_label{
display: inline-block;
font-weight: bold;
}
#errors{
display: none;
height: 25px;
color: red;
margin-top: -8px;
}
#logmap_container{
height: 470px;
width: 500px;
padding-top: 10px;
text-align: left;
margin: auto;
display: grid;
grid-template-columns: 30px 40px 370px;
grid-template-rows: 30px 400px 15px 30px;
background-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#y_label{
grid-area: 2 / 1 / 4 / 2;
margin-left: 10px;
line-height: 400px;
vertical-align: middle;
}
#x_label{
grid-area: 4 / 3 / 4 / 5;
text-align: center;
width: 400px;
align-self: left;
}
#cobweb_label{
grid-area: 1 / 2 / 2 / 5;
text-align: center;
}
#y_axis{
grid-area: 2 / 2 / 4 / 3;
margin-top: -8px;
margin-right: 3px;
}
#y_axis div{
text-align: right;
}
#x_axis{
grid-area: 3 / 2 / 4 / 5;
margin: auto;
margin-top: -2px;
margin-left:
display: table;
}
#x_axis span {
text-align: center;
display: table-cell;
}
#plot{
grid-area: 2 / 3 / 3 / 5;
}