-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (44 loc) · 799 Bytes
/
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
body {
margin:0;
padding: 0;
background: -webkit-gradient(linear, left top, right bottom, from(#141E30), to(#243B55)) fixed;
overflow: hidden;
}
h1 {
font-family: Helvetica, arial, sans-serif;
text-align:center;
color: rgb(255, 183, 134);
}
#field {
padding: 20px;
margin: auto;
display: block;
width: 50%;
height: 30%;
}
#plot {
padding: 0;
margin: auto;
display: block;
width: 80%;
height: 30%;
background: rgba(13, 40, 97, 0);
}
#chart-container {
width: 600px;
height: 300px;
margin: auto;
}
button{
display: inline-block;
margin: 1em;
border-radius: 3px;
background: #434d5a;
border: none;
padding: 1em 0;
color: white;
text-align: center;
text-decoration: none;
width:12em;
font-family: 'Courier New', Courier, monospace;
}