Newer
Older
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
html
{
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 100%;
height: 100%;
background:
url(pattern.png),
#3b76ba;
background:
url(pattern.png),
-webkit-gradient(
linear,
left top,
right top,
from(#3b76ba),
to(#7dd2d9)
);
background:
url(pattern.png),
-webkit-linear-gradient(
left,
#3b76ba 0,
#7dd2d9 100%
);
background:
url(pattern.png),
linear-gradient(
to right,
#3b76ba 0,
#7dd2d9 100%
);
}
#root
{
margin: 5%;
}
#bfalogo
{
width: 140px;
height: 100px;
display: block;
margin-left: auto;
margin-right: auto;
}
div.warning
{
border: 1px solid yellow;
background: gray;
padding: 10px;
display: inline-grid;
position: fixed;
top: 30%;
left: 30%;
}
div.status
{
border: 1px dotted grey;
position: fixed;
top: 8px;
right: 8px;
padding: 4px;
text-align: right;
}
.hidden
{
display: none;
visibility: hidden;
}