forked from IMQS/onboard-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
75 lines (61 loc) · 953 Bytes
/
app.css
File metadata and controls
75 lines (61 loc) · 953 Bytes
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
body {
font-family: 'Segoe UI', sans-serif;
float: none;
margin: 0px;
overflow: hidden;
}
div {
float: none;
}
span {
font-style: italic;
}
table {
table-layout: fixed;
width: 100%;
}
tr, td {
height: 44px;
}
th {
height: 24px;
background-color: rgb(186, 216, 186);
}
table, th, td {
border: 0.5px solid green;
}
button {
height: 40px;
}
tr:hover {
background-color: grey
}
input {
height: 35px;
}
.controlset {
background-color: skyblue;
height: 40px;
margin: 0 auto;
display: table;
}
p {
text-align: center;
}
.loader {
border: 16px solid rgb(186, 216, 186);
border-top: 16px solid green;
border-radius: 100%;
width: 160px;
height: 160px;
animation: spin 2s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}