-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.css
73 lines (63 loc) · 797 Bytes
/
default.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
body
{
width: 1170px;
}
#info
{
font-size: 18px;
line-height: 25px;
}
#board
{
float: left;
}
#board_title
{
font-size: 20px;
}
#board_board
{
border-style: dashed;
background-color: white;
display: block;
margin-left: 10px;
width: 420px;
height: 420px;
}
#buttons
{
display: block;
margin-left: 10px;
margin-top: 10px;
}
#button_input
{
width: 180px;
height: 50px;
margin-left: 10px;
font-size: 25px;
}
#button_clear
{
width: 180px;
height: 50px;
margin-left: 20px;
font-size: 25px;
}
#output
{
margin-left: 20px;
margin-top: 50px;
float: left;
}
#myChart
{
display: block;
width: 700px;
height: 420px;
background-color: rgb(127, 255, 255);
}
#clear
{
clear: both;
}