blob: 2488fa64dc20cc2dd33616e3dc3853797c583b28 (
plain)
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
|
.content {
position: absolute;
display: block;
width: 100%;
height: 100%;
background-color: #202020;
}
#network {
height: 100%;
width: 100%;
}
.logo-container {
position: absolute;
display: block;
z-index: 1000;
top: 16px;
left: 16px;
height: 60px;
width: 200px;
/*background-color: #fff; */
}
.logo {
margin-top: 8px;
margin-left: 10px;
height: 44px;
width: 180px;
background-image: url(logo.svg);
background-repeat: no-repeat;
background-size: contain;
background-origin: content-box;
background-position: center;
}
|