-
Notifications
You must be signed in to change notification settings - Fork 6
/
default.css
88 lines (76 loc) · 1.2 KB
/
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@charset "UTF-8";
/**
* default.css
* @authors Joe Jiang ([email protected])
* @date 2017-04-07 11:32:35
* @version $Id$
*/
body {
margin: 0;
padding: 0;
background-color: white;
}
#chart, #panel {
position: absolute;
margin: 1rem;
height: calc(100vh - 2rem);
}
#chart {
/*left: 50%;
top: 50%;
transform: translate(-400px, -300px);
width: 800px;
height: 600px;*/
width: calc(80% - 2rem);
}
#panel {
left: 80%;
width: calc(20% - 2rem);
}
/* STYLESHEET FOR COMPONENTS */
div {
margin-top: .5rem;
margin-bottom: .5rem;
}
input {
border: 1px solid #AAA;
padding: 0;
height: calc(1.5rem - 2px);
/*width: 3rem;*/
}
label {
margin-right: .4rem;
}
select, button {
height: 1.5rem;
background: white;
width: 4.5rem;
cursor: pointer;
}
button {
border: 1px solid #AAA;
transition: .5s;
}
button:hover {
color: white;
background-color: rgba(250,150,100, 1);
transition: .5s;
}
table, th, td {
border: .5px solid gray;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: .3rem .8rem;
}
#copyright {
position: absolute;
bottom: 0;
margin-bottom: -.5rem;
font-size: .8rem;
color: gray;
}
/* STYLESHEET FOR COMPONENTS */