-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
121 lines (101 loc) · 1.42 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
.class {
key: value;
}
#id {
key: value;
}
*/
html {
height: 100%;
}
body {
width: calc(100% - 0.3em);
margin: 0 auto;
/*border: solid #2F4F7A 0.15em;*/
font-family: helvetica;
font-weight: 600;
font-size: small;
background-color: white;
color: black;
height: calc(100% - 0.25em); /* weird. works on Nexus 5. */
-moz-box-sizing: border-box;
}
.logo {
width: 50%;
margin: 0 auto;
}
.form-group {
width: 100%;
height: 4em;
margin: 0 auto;
overflow: auto;
font-size: x-large;
}
.button-container {
width: 50%;
/*margin: 0 auto;*/
height: 100%;
}
.button {
background-color: #2F4F7A;
color: white;
border: solid gray 0.15em;
height: calc(100% - 0.3em); /* ugly, but such is the way of css. */
vertical-align: middle;
text-align: center;
overflow: hidden;
position: static;
}
.left {
float: left;
}
.right {
float: right;
}
.bottom-left {
display: table-cell;
vertical-align: bottom;
float: left;
}
.top-left {
display: table-cell;
vertical-align: top;
float: left;
}
.top-right {
display: table-cell;
vertical-align: top;
float: right;
}
.bottom-right {
display: table-cell;
vertical-align: bottom;
float: right;
}
.invisible {
display: none;
}
/*
.controller-container {
border: solid black 1px;
}
*/
canvas {
border: solid black 1px;
}
td {
/*border: solid black 1px;*/
}
#data-container {
margin: 1%;
}
.red {
color: red;
}
.green {
color: green;
}
.yellow {
color: yellow;
}