-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (108 loc) · 1.7 KB
/
style.css
File metadata and controls
126 lines (108 loc) · 1.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#container {
width: 100%;
margin: auto;
text-align: center;
}
body {
background-color: yellow;
}
#eq_input {
width: 30%;
background-color: rgb(206, 224, 40);
border: 1px solid transparent;
padding: 10px;
font-size: 16px;
}
#eq_submit {
background-color: #0af316;
border: none;
color: white;
text-align: center;
padding: 10px;
font-size: 16px;
text-decoration: none;
}
.option_in {
width: 50px;
margin-bottom: 10px;
}
.mathjax {
width: 50%;
overflow-x: auto;
overflow-y: hidden;
margin: auto;
width: 100%;
font-size: 2em;
}
li {
margin-top: 10px;
}
.title {
margin: auto;
width: 30%;
}
.subtitle {
margin: auto;
width: 20%;
font-size: 0.8em;
}
/* lines to the left and right of subtitle */
.subtitle:before,
.subtitle:after,
.title:before,
.title:after {
content: "";
display: inline-block;
width: 50%;
margin: 0 0.5em 0 -55%;
vertical-align: middle;
border-bottom: 1px solid;
}
.subtitle:after,
.title:after {
margin: 0 -55% 0 0.5em;
}
#results {
list-style-type: none; /* hide bullets */
padding: 0; /* remove indent */
}
#graph_view {
display: flex;
justify-content: center;
position: relative;
}
#graph {
display: none;
width: 500px;
height: 500px;
}
#graph_options {
position: absolute;
left: 65%;
list-style-type: none;
padding: 0;
vertical-align: top;
}
#graph,
#graph_options {
justify-content: flex-start;
}
#graph_overlay {
display: none;
position: absolute;
width: 500px;
height: 500px;
background-color: rgba(7, 247, 7, 0.7);
}
#graph_overlay_text {
display: none;
font-size: 1.3em;
vertical-align: middle;
}
.error {
color: #c70039;
font-size: 1.3em;
}
.option_li {
text-align: left;
}