-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
78 lines (65 loc) · 1.15 KB
/
main.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
body {
padding: 0;
margin: 0;
background: #738c4f; /* #49635e; */
height: 100%;
font-family: "Quicksand";
font-weight: 100;
font-size: 25px;
}
canvas {
border-left: 5px solid #3f6b40; /*#49635e; /*a2d183*/ /*738c4f*/
}
.col-4 {
height: 100%;
overflow: auto;
}
#info_box {
width: inherit;
height: 97vh;
overflow-y: scroll;
}
#slider_div {
justify-content: center;
align-items: center;
margin-bottom: 5%;
}
.container-fluid, .container {
height: 100%;
display: flex;
justify-content: center;
/* align-items: center; */
}
#debug_info {
background: #a2d183;
border: 3px solid #6a8956;
font-size: 15px;
margin-top: 5%;
margin-bottom: 5%;
width: 35%;
}
#top_row {
margin-top: 5%;
margin-bottom: 5%;
}
.debug {
justify-content: center;
align-items: center;
padding: 10px;
}
#org_table {
border: 1px solid black;
height: 100%;
font-size: 17px;
align-self: center;
}
tr, th, td {
padding: 10px;
text-align: center;
border: 2px solid black;
background: #a2d183;
}
th {
background: #3f6b40;
color: white;
}