-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (84 loc) · 1.31 KB
/
style.css
File metadata and controls
92 lines (84 loc) · 1.31 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
* {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20px;
color: black;
}
h1 {
font-size: 40px;
text-align: center;
font-weight: bold;
}
body {
max-width: 1100px;
margin: auto;
margin-top: 5%;
padding: 20px;
}
#canvas {
padding: 0;
margin: 0;
}
select {
background: white;
color: black;
border-color: black;
}
#text-exp, #program {
border: 3px solid green;
padding: 20px;
margin-bottom: 20px;
}
.fzBox{
align-self: center;
background-color: gray;
padding: 0.25em;
}
.fzOptions{
background-color: white;
padding: 0.5em;
margin: 0.5em;
}
.plotBoundInput {
width: 8%;
min-width: 50px;
max-width: 150px;
}
table, th, td {
background-color: white;
font-weight: normal;
text-align: center;
}
table {
width: 300px;
max-width: 90%;
margin: auto;
}
.float-container {
display: inline-block;
width: 100%;
}
.float-child {
width: 48%;
float: left;
margin: 1%;
background-color: white;
}
button{
border: 2px solid #707070;
color: black;
background: #ededed;
padding: 0.25rem 0.25rem;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 0.25rem;
cursor: pointer;
}
button:hover {
background-color:#ababab;
}
#rescaleInputPlotButton, #rescaleOutputPlotButton {
width: 50%;
margin: 10px 25%;
}