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
65 lines (65 loc) · 1.17 KB
/
app.css
File metadata and controls
65 lines (65 loc) · 1.17 KB
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
body{
overflow: hidden;
font-family: Verdana, Geneva, sans-serif;
text-align: center;
margin: 4px;
}
table.gridtable{
width: 100%;
font-size:12px;
color:#333333;
border-color: #D7D7D7;
border-collapse: collapse;
}
table.gridtable th {
border-width: 0.5px;
height: 32px;
border-style: solid;
border-color: #D7D7D7;
background-color: #D3EFFF;
}
table.gridtable td {
border-width: 0.5px;
height: 32px;
border-style: solid;
border-color: #D7D7D7;
background-color: #ffffff;
}
table.gridtable td:hover{
background-color: #f1f1f1;
}
.footer{
height: 48px;
left: 50%;
transform: translateX(-50%);
position: absolute;
bottom: 4px;
user-select: none;
}
a{
color: black;
padding: 8px;
text-decoration: none;
transition: background-color .3s;
}
/* Add a grey background color on mouse-over */
a:hover:not(.active) {background-color: #D8E9F2;}
/* search field */
#search{
display: inline-block;
width: 84px;
font-size: 12px;
padding: 8px;
border: 1px solid #ddd;
}
.loader{
position: absolute;
left: 46.5%;
top: 40%;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}